├── .github └── workflows │ └── mdbook.yml ├── .gitignore ├── .gitmodules ├── AGENT.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── README.md ├── book.toml ├── custom.css ├── mermaid-init.js ├── mermaid.min.js └── src ├── README.md ├── SUMMARY.md ├── arming-introduction.md ├── claude-code-vs-anon-kode.md ├── command-system-deep-dive.md ├── comments.md ├── core-architecture.md ├── execution-flow-in-detail.md ├── feature-flag-integration.md ├── initialization-process.md ├── ink-yoga-reactive-ui.md ├── introduction.md ├── lessons-learned-and-implementation-challenges.md ├── overview-and-philosophy.md ├── parallel-tool-execution.md ├── real-world-examples.md ├── second-edition ├── README.md ├── SUMMARY.md ├── appendices │ ├── appendix-a-api-reference.md │ ├── appendix-b-deployment-guide.md │ └── appendix-c-performance-tuning.md ├── part-i-foundations │ ├── chapter-1-from-local-to-collaborative.md │ ├── chapter-2-amp-architecture-overview.md │ └── chapter-3-authentication-and-identity.md ├── part-ii-core-systems │ ├── chapter-4-thread-management-at-scale.md │ ├── chapter-5-real-time-synchronization.md │ └── chapter-6-tool-system-evolution.md ├── part-iii-collaboration │ ├── chapter-7-sharing-and-permissions.md │ ├── chapter-8-team-workflows.md │ └── chapter-9-enterprise-integration.md ├── part-iv-advanced-patterns │ ├── chapter-10-multi-agent-orchestration.md │ ├── chapter-11-performance-at-scale.md │ └── chapter-12-observability-and-monitoring.md ├── part-v-implementation │ ├── chapter-13-building-your-own-amp.md │ ├── chapter-14-migration-strategies.md │ └── chapter-15-case-studies.md └── part-vi-future │ ├── chapter-16-emerging-patterns.md │ └── chapter-17-collaborative-ai-ecosystem.md ├── system-architecture-diagram.md ├── system-prompts-and-model-settings.md ├── the-permission-system.md └── tool-system-deep-dive.md /.github/workflows/mdbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/.github/workflows/mdbook.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | .mcp.json 3 | anon-kode -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/.gitmodules -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/AGENT.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/README.md -------------------------------------------------------------------------------- /book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/book.toml -------------------------------------------------------------------------------- /custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/custom.css -------------------------------------------------------------------------------- /mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/mermaid-init.js -------------------------------------------------------------------------------- /mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/mermaid.min.js -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/README.md -------------------------------------------------------------------------------- /src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/SUMMARY.md -------------------------------------------------------------------------------- /src/arming-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/arming-introduction.md -------------------------------------------------------------------------------- /src/claude-code-vs-anon-kode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/claude-code-vs-anon-kode.md -------------------------------------------------------------------------------- /src/command-system-deep-dive.md: -------------------------------------------------------------------------------- 1 | # Command System Overview 2 | -------------------------------------------------------------------------------- /src/comments.md: -------------------------------------------------------------------------------- 1 | # Comments 2 | -------------------------------------------------------------------------------- /src/core-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/core-architecture.md -------------------------------------------------------------------------------- /src/execution-flow-in-detail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/execution-flow-in-detail.md -------------------------------------------------------------------------------- /src/feature-flag-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/feature-flag-integration.md -------------------------------------------------------------------------------- /src/initialization-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/initialization-process.md -------------------------------------------------------------------------------- /src/ink-yoga-reactive-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/ink-yoga-reactive-ui.md -------------------------------------------------------------------------------- /src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/introduction.md -------------------------------------------------------------------------------- /src/lessons-learned-and-implementation-challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/lessons-learned-and-implementation-challenges.md -------------------------------------------------------------------------------- /src/overview-and-philosophy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/overview-and-philosophy.md -------------------------------------------------------------------------------- /src/parallel-tool-execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/parallel-tool-execution.md -------------------------------------------------------------------------------- /src/real-world-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/real-world-examples.md -------------------------------------------------------------------------------- /src/second-edition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/README.md -------------------------------------------------------------------------------- /src/second-edition/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/SUMMARY.md -------------------------------------------------------------------------------- /src/second-edition/appendices/appendix-a-api-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/appendices/appendix-a-api-reference.md -------------------------------------------------------------------------------- /src/second-edition/appendices/appendix-b-deployment-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/appendices/appendix-b-deployment-guide.md -------------------------------------------------------------------------------- /src/second-edition/appendices/appendix-c-performance-tuning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/appendices/appendix-c-performance-tuning.md -------------------------------------------------------------------------------- /src/second-edition/part-i-foundations/chapter-1-from-local-to-collaborative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-i-foundations/chapter-1-from-local-to-collaborative.md -------------------------------------------------------------------------------- /src/second-edition/part-i-foundations/chapter-2-amp-architecture-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-i-foundations/chapter-2-amp-architecture-overview.md -------------------------------------------------------------------------------- /src/second-edition/part-i-foundations/chapter-3-authentication-and-identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-i-foundations/chapter-3-authentication-and-identity.md -------------------------------------------------------------------------------- /src/second-edition/part-ii-core-systems/chapter-4-thread-management-at-scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-ii-core-systems/chapter-4-thread-management-at-scale.md -------------------------------------------------------------------------------- /src/second-edition/part-ii-core-systems/chapter-5-real-time-synchronization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-ii-core-systems/chapter-5-real-time-synchronization.md -------------------------------------------------------------------------------- /src/second-edition/part-ii-core-systems/chapter-6-tool-system-evolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-ii-core-systems/chapter-6-tool-system-evolution.md -------------------------------------------------------------------------------- /src/second-edition/part-iii-collaboration/chapter-7-sharing-and-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-iii-collaboration/chapter-7-sharing-and-permissions.md -------------------------------------------------------------------------------- /src/second-edition/part-iii-collaboration/chapter-8-team-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-iii-collaboration/chapter-8-team-workflows.md -------------------------------------------------------------------------------- /src/second-edition/part-iii-collaboration/chapter-9-enterprise-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-iii-collaboration/chapter-9-enterprise-integration.md -------------------------------------------------------------------------------- /src/second-edition/part-iv-advanced-patterns/chapter-10-multi-agent-orchestration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-iv-advanced-patterns/chapter-10-multi-agent-orchestration.md -------------------------------------------------------------------------------- /src/second-edition/part-iv-advanced-patterns/chapter-11-performance-at-scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-iv-advanced-patterns/chapter-11-performance-at-scale.md -------------------------------------------------------------------------------- /src/second-edition/part-iv-advanced-patterns/chapter-12-observability-and-monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-iv-advanced-patterns/chapter-12-observability-and-monitoring.md -------------------------------------------------------------------------------- /src/second-edition/part-v-implementation/chapter-13-building-your-own-amp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-v-implementation/chapter-13-building-your-own-amp.md -------------------------------------------------------------------------------- /src/second-edition/part-v-implementation/chapter-14-migration-strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-v-implementation/chapter-14-migration-strategies.md -------------------------------------------------------------------------------- /src/second-edition/part-v-implementation/chapter-15-case-studies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-v-implementation/chapter-15-case-studies.md -------------------------------------------------------------------------------- /src/second-edition/part-vi-future/chapter-16-emerging-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-vi-future/chapter-16-emerging-patterns.md -------------------------------------------------------------------------------- /src/second-edition/part-vi-future/chapter-17-collaborative-ai-ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/second-edition/part-vi-future/chapter-17-collaborative-ai-ecosystem.md -------------------------------------------------------------------------------- /src/system-architecture-diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/system-architecture-diagram.md -------------------------------------------------------------------------------- /src/system-prompts-and-model-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/system-prompts-and-model-settings.md -------------------------------------------------------------------------------- /src/the-permission-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gerred/building-an-agentic-system/HEAD/src/the-permission-system.md -------------------------------------------------------------------------------- /src/tool-system-deep-dive.md: -------------------------------------------------------------------------------- 1 | # Tool System Overview 2 | --------------------------------------------------------------------------------