Not just theory - includes installable Skills for knowledge workers. 不只是理論——包含為知識工作者設計的可安裝 Skills。
Agentic Substrate is the missing architecture between "chat with AI" and "AI agents that actually run work."
Agentic Substrate 是「和 AI 聊天」到「讓 AI Agent 真正執行工作」之間缺少的架構圖。
It describes the next software paradigm:
Agentic Substrate 是一套描述下一代軟體典範的框架:
LLMs compute. Tools act. Skills encode workflows. Agents orchestrate.
LLM 負責運算。工具負責行動。Skill 編碼工作流程。Agent 負責調度。
This repo gives you:
這個 repo 提供:
- A five-layer model for understanding LLM-native software
- A practical learning path from chat to agents
- Installable Skills you can try immediately
- A bridge for non-engineers to turn domain expertise into AI workflows
If you have ever thought, "AI is useful, but I keep explaining the same work process again and again," this repo is for you.
如果你曾經覺得「AI 很有用,但我一直在重複解釋同一套工作流程」,這個 repo 就是為你準備的。
| If you want to... | Start here |
|---|---|
| Understand the big idea | Start Here |
| Explore the three-session course | Interactive Course |
| Open the detailed Day 1 course | Day 1 Interactive Page |
| Open the detailed Day 2 course | Day 2 Interactive Page |
| Open the detailed Day 3 course | Day 3 Interactive Page |
| Try your first Skill | Quick Start |
| See the architecture | Five-Layer Model |
| Learn why Skills matter | Skill Anatomy |
| Help an AI agent understand itself | Agent Education Layer |
| Help an AI agent read this repo | llms.txt / AGENTS.md |
| 如果你想要... | 從這裡開始 |
|---|---|
| 理解核心概念 | Start Here |
| 查看三堂課互動講義 | Interactive Course |
| 查看 Day 1 詳細互動頁 | Day 1 Interactive Page |
| 查看 Day 2 詳細互動頁 | Day 2 Interactive Page |
| 查看 Day 3 詳細互動頁 | Day 3 Interactive Page |
| 立刻試第一個 Skill | Quick Start |
| 看完整架構 | Five-Layer Model |
| 理解為什麼 Skill 重要 | Skill Anatomy |
| 讓 AI agent 理解自己的架構位置 | Agent Education Layer |
| 讓 AI agent 更容易讀懂本 repo | llms.txt / AGENTS.md |
1. Understand the shift
Chatbot -> Tool user -> Skill executor -> Persistent agent
2. Try the pattern
Install a Skill and watch AI follow a real workflow
3. Build your own
Turn your professional process into a reusable AI Skill
1. 理解轉變
聊天機器人 -> 工具使用者 -> Skill 執行者 -> 持續性 Agent
2. 直接體驗
安裝一個 Skill,觀察 AI 如何遵循真實工作流程
3. 建立自己的 Skill
把你的專業流程變成可重用的 AI Skill
Concrete example: How a weekly status workflow becomes a Skill
具體範例:一個週報流程如何變成 Skill
Agentic Substrate is a conceptual framework + practical toolkit that describes the foundational architecture of a new software paradigm - one where LLMs serve as the universal computation layer, Skills replace traditional apps, and Agents orchestrate everything.
Agentic Substrate 是一套概念框架 + 實用工具包,描述一種新軟體典範的底層架構——在這個典範中,LLM 是通用運算層、Skills 取代傳統 App、Agent 負責統籌調度一切。
Unlike frameworks built only for engineers, this is designed for everyone who works with AI - from developers to project managers, marketers, accountants, and administrators.
與只為工程師建構的框架不同,這是為所有使用 AI 工作的人設計的——從開發者到專案經理、行銷人員、會計和行政人員。
Agentic Substrate is designed to be read in two ways:
Agentic Substrate 被設計成可以用兩種方式閱讀:
-
Human-readable path: concepts, examples, courses, and Skills that help people understand the shift from apps to agents.
-
Agent-readable path: operational protocols that help AI agents locate themselves in the stack, decide when to use tools, create Skills, validate results, and preserve reusable workflows.
-
給人讀的路徑:用概念、案例、課程與 Skills,幫助人理解從 App 到 Agent 的轉變。
-
給 Agent 讀的路徑:用操作協議,幫助 AI Agent 判斷自己在哪一層、何時使用工具、如何建立 Skill、如何驗證結果,以及什麼流程值得被保存。
Start the agent-readable path here: Agent Education Layer
Agent 可讀路徑從這裡開始:Agent Education Layer
We're living through a paradigm shift:
我們正在經歷一次典範轉移:
| Era 時代 | Logic 邏輯層 | Interface 介面 | Unit of Software 軟體單元 |
|---|---|---|---|
| Desktop 桌面時代 | Compiled code 編譯程式碼 | GUI windows 圖形視窗 | Application 應用程式 |
| Mobile 行動時代 | Runtime code 執行環境 | Touch screens 觸控螢幕 | App 應用程式 |
| Cloud/SaaS 雲端時代 | APIs + microservices | Browser 瀏覽器 | Service 服務 |
| Agentic 代理時代 | LLM inference 推理 | Conversation 對話 | Skill 技能模組 |
Traditional software is deterministic - every path is pre-coded. Agentic software is probabilistic - the LLM understands intent and dynamically decides the execution path.
傳統軟體是確定性的——每條路徑都預先寫好。代理型軟體是概率性的——LLM 理解意圖,動態決定執行路徑。
This repo provides the architectural principles behind this shift, a structured learning path, and ready-to-use Skills that let you experience it immediately.
本 repo 提供這個轉變背後的架構原則、結構化的學習路徑,以及即用 Skills 讓你立即體驗。
Agentic-Substrate/
|
|-- README.md <-- You are here 你在這裡
|-- llms.txt [published] AI-readable project map
|-- AGENTS.md [published] Guidance for coding agents
|-- agent-education/ [published] Agent-facing operational protocols
| |-- README.md [published] Agent-readable entry point
| |-- self-model/ [published] Five-layer self-location protocol
| |-- skill-system/ [published] Skill creation protocol
| `-- tool-use/ [published] Tool result validation protocol
|-- course.html [published] Three-session interactive course
|-- course-day1.html [published] Detailed Day 1 interactive course
|-- course-day2.html [published] Detailed Day 2 interactive course
|-- course-day3.html [published] Detailed Day 3 interactive course
|-- QUICK-START.md [published] 5-min guide to your first Skill
|-- install.sh [published] One-command installer 一鍵安裝
|-- ROADMAP.md <-- Development phases 發展路線圖
|-- CONTRIBUTING.md <-- How to contribute 貢獻指南
|-- CHANGELOG.md <-- Version history 版本紀錄
|-- LICENSE <-- CC BY-SA 4.0 + MIT
|-- .claude-plugin/ [published] Claude Code / Cowork plugin config
|
|-- docs/
| |-- START-HERE.md [published] First reading path for humans and agents
| |-- course-planning-notes.md [published] Planning notes for the three-session course
| |-- examples/ [published] Concrete workflow-to-Skill examples
| |-- 01-foundations/ <-- Core Concepts 核心概念
| | |-- agentic-substrate.md [published] The Core Architecture 核心架構文件
| | |-- skill-anatomy.md [published] Anatomy of a Skill 技能模組解剖學
| | |-- markdown-as-medium.md [published] Markdown as Native Medium 原生媒介
| | `-- five-layer-model.md [published] The Five-Layer Stack 五層架構模型
| |
| |-- 02-architecture/ <-- Design Patterns 設計模式
| | |-- landscape.md [published] Ecosystem comparison 生態比較
| | |-- agentic-design-patterns.md [published] Routing, Parallelization, Orchestration
| | |-- skill-composition.md [published] The "a235bc1e" composition pattern
| | `-- memory-and-state.md [published] How Agents remember and persist
| |
| |-- 03-claude-case-study/ <-- Claude as a Living Example
| | `-- claude-architecture.md [published] Claude Code / Cowork / Agent SDK design
| |
| `-- 04-curriculum/ <-- Learning Path 學習課綱
| |-- you-already-know.md [published] "You Already Know" - for non-engineers
| |-- learning-path.md [published] Structured curriculum overview
| |-- level-1-conversation.md [published] Level 1: Getting value from chat
| |-- level-2-tools.md [published] Level 2: From thinking to doing
| |-- level-3-skills.md [published] Level 3: Your expertise, reusable
| `-- level-4-agents.md [published] Level 4: AI as a colleague
|
|-- skills/ <-- Installable Skills 可安裝技能
| |-- skill-self-discovery/ [published] Interactive: discover your existing skills
| |-- conversation-to-skill/ [published] Turn chat chaos into structured Skills
| |-- skill-builder/ [published] Guided Skill creation for any role
| `-- examples/ [published] Ready-to-use Skills for knowledge work
| |-- meeting-notes-to-actions/ [published] Transform: notes -> action items
| |-- document-reviewer/ [published] Process: multi-pass document review
| |-- research-and-summarize/ [published] Process: structured research
| |-- project-status-tracker/ [published] Orchestration: unified status view
| |-- accounting-reconciler/ [published] Transform: financial reconciliation
| `-- content-pipeline/ [published] Process: idea -> published content
|
`-- index.html [published] Interactive Architecture Visualization
[published] = Ready public entry point
The future of software is not "AI features added to existing apps." It's a new computational substrate where LLMs are the logic layer, Skills are the functional units, and Agents are the orchestrators.
軟體的未來不是「在現有 App 上加 AI 功能」。 而是一種新的運算基底——LLM 是邏輯層、Skill 是功能單元、Agent 是調度者。
Just want to try it? -> Quick Start - 5 Minutes to Your First Skill
Interactive visualization -> Explore the Five-Layer Model (deploy to GitHub Pages for the best experience)
Three-session course -> Interactive Course
New to this? Start with -> The Agentic Substrate: Core Architecture
Want to understand Skills? Read -> Anatomy of a Skill
Why Markdown? Read -> Markdown as the Native Medium
Not technical? Start here -> You Already Know How to Build a Skill
How does this compare to other frameworks? See -> Landscape Analysis
What's the development plan? Check -> Roadmap
This framework emerged from hands-on experience building AI-native workflows for proposal writing, project management, and team coordination - using Claude Code, Cowork, and custom Skills. It represents the accumulated insight from building 40+ real-world projects where AI agents didn't just assist, but operated as collaborative team members.
這個框架源自於實際動手建構 AI 原生工作流程的經驗——為提案撰寫、專案管理、團隊協作而建,使用 Claude Code、Cowork 和自定義 Skills。它代表了在 40 多個真實專案中累積的洞見,在這些專案中,AI Agent 不只是輔助工具,而是作為協作團隊成員運作。
- Ahn Chen - Framework architect, practitioner with 40+ AI-native projects 框架架構師
- Claude (Opus 4.6) - Co-author, research synthesis, and writing 共同作者、研究整合與撰寫
Built by practitioners, for practitioners. 由實踐者為實踐者而建。
Content is licensed under CC BY-SA 4.0. Code is licensed under MIT.
內容以 CC BY-SA 4.0 授權。程式碼以 MIT 授權。