NODE 01 2026-03-03

AGN: Design, Construction, From First to Last

AGN, a.k.a Agentic Network, is the platform and protocol I designed, all in one purpose: to make collaboration between agents possible, with me being an integral part of the network as well.

March 3, 2026
OPEN ENTRY ->
NODE 02 2026-03-01

OhMyZsh: Customizing the Terminal

Basically, this post is here to share the upgrades I’ve made to my Terminal after an hour of exploration today. The core of it involves using OhMyZsh to customize certain features and make the Terminal experience more user-friendly. While the default Zsh in macOS is powerful, its out-of-the-box configuration is extremely minimal. Oh My Zsh is not just a framework; it’s a vast ecosystem of plugins and themes. Auto-completion For my terminal usage, I installed the zsh-autosuggestions plugin, which provides “gray ghost” predictions based on my command history.

March 1, 2026
OPEN ENTRY ->
NODE 03 2026-02-10

Learning SwiftUI from Landmarks Demo Project

This article is about learning SwiftUI using Apple’s official demo project Landmarks as an example. I’ll share what I learned along the way as well as explaining some exciting designs in Landmarks that may be good practice for you to use in your own designs.

February 10, 2026
OPEN ENTRY ->
NODE 09 2026-01-14

AI Behavior Principles V1.0.0

Because multiple language models I use often produce meaningless filler, user-pleasing but misleading phrasing, and sometimes even distorted facts, I designed a behavior protocol. I use this protocol in two situations: Before each conversation. Mid-conversation when the model shows the above issues. Over about a week of testing with Gemini, I continuously improved the protocol’s completeness, rigor, and practical effectiveness, including self-check and self-judgment logic.

January 14, 2026
OPEN ENTRY ->
NODE 10 2026-01-14

Inserable Product Design Document v1.0 Alpha

1. Product Overview Product Name: Inserable Target Platform: macOS Tech Stack: Swift + SwiftUI Core Function: Manage image assets for Hugo blogs, auto-rename images, and generate Markdown image-reference text. Problem It Solves: Chaotic image organization, inconsistent naming, and tedious manual image reference writing in Hugo blogs. 2. Core Concepts 2.1 Hierarchy Inserable ├── Root Folder 1 │ ├── Session A (Folder A) │ │ ├── formatA_001.png │ │ ├── formatA_002.png │ │ └── ... │ ├── Session B (Folder B) │ │ └── ... │ └── ... └── Root Folder 2 ├── Session X (Folder X) │ └── ... └── ... 2.2 Core Relationships Concept Description Root Folder User’s Hugo image storage path, e.g. /Users/alex/myblog/static/images/. Up to 2 supported. Session 1:1 bound to one folder under a root folder. Session name = folder name. Image Image file inside a Session folder, named under unified rules. 2.3 Naming Rules Image naming format: <formatting_1>_<###>.<ext>

January 14, 2026
OPEN ENTRY ->