From 77b61a0e8a7e455ffc003943e32e08f1fd36d32d Mon Sep 17 00:00:00 2001 From: Shayan Rais Date: Wed, 28 Jan 2026 23:12:08 +0500 Subject: [PATCH] [] added arch --- README.md | 18 ++++++++++ assets/command-skill-agent-flow.svg | 53 +++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 assets/command-skill-agent-flow.svg diff --git a/README.md b/README.md index d3af6c4..cc29ea8 100644 --- a/README.md +++ b/README.md @@ -94,3 +94,21 @@ practice makes claude perfect - [Claude Code Tasks - inspired by beats](https://www.reddit.com/r/ClaudeAI/comments/1qkjznp/anthropic_replaced_claude_codes_old_todos_with/) [Inspiration](https://github.com/steveyegge/beads) - [Ralph Plugin](https://x.com/GeoffreyHuntley/status/2015031262692753449) + +## COMMAND + SKILL + SUBAGENT ARCHITECTURE + +

+ Command Skill Agent Architecture Flow +

+ +| Component | Role | Example | +|-----------|------|---------| +| **Command** | Entry point, user interaction | `/weather-orchestrator` | +| **Agent** | Orchestrates workflow with preloaded skills | `weather` agent | +| **Skills** | Domain knowledge injected at startup | `weather-fetcher`, `weather-transformer` | + +**When to use:** Multi-step workflows • Domain-specific knowledge injection • Sequential tasks • Reusable components + +**Why it works:** Progressive disclosure • Single execution context • Clean separation • Reusability + +See [docs/weather-flow-architecture.md](docs/weather-flow-architecture.md) for implementation details. diff --git a/assets/command-skill-agent-flow.svg b/assets/command-skill-agent-flow.svg new file mode 100644 index 0000000..6eaba0a --- /dev/null +++ b/assets/command-skill-agent-flow.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + User + + + + + + + Command + /orchestrator + + + + Task + + + + Agent + + + + skills: + • fetcher • transformer + (preloaded knowledge) + + + + + + + Output + output.md + + + + + + + Command → Agent (with preloaded Skills) → Output + +