@amrhas82/agentic-kit 1.5.0 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/ampcode/{AGENTS.md → AGENT.md} +143 -10
- package/packages/ampcode/agents/context-initializer.md +234 -415
- package/packages/ampcode/agents/orchestrator.md +123 -85
- package/packages/ampcode/subagentic-manual.md +71 -56
- package/packages/claude/{AGENTS.md → CLAUDE.md} +133 -1
- package/packages/claude/agents/context-initializer.md +234 -415
- package/packages/claude/agents/orchestrator.md +124 -85
- package/packages/claude/hooks/session-start.js +7 -0
- package/packages/claude/subagentic-manual.md +71 -56
- package/packages/droid/AGENTS.md +135 -2
- package/packages/droid/droids/context-initializer.md +234 -415
- package/packages/droid/droids/orchestrator.md +123 -85
- package/packages/droid/subagentic-manual.md +71 -56
- package/packages/opencode/AGENTS.md +137 -4
- package/packages/opencode/agent/context-initializer.md +235 -416
- package/packages/opencode/agent/orchestrator.md +123 -86
- package/packages/opencode/subagentic-manual.md +71 -56
- package/packages/subagentic-manual.md +71 -56
- package/packages/droid/commands/README.md +0 -76
- /package/packages/droid/commands/{algorithmic-art.md → algorithmic-art/algorithmic-art.md} +0 -0
- /package/packages/droid/commands/{artifacts-builder.md → artifacts-builder/artifacts-builder.md} +0 -0
- /package/packages/droid/commands/{canvas-design.md → canvas-design/canvas-design.md} +0 -0
- /package/packages/droid/commands/{condition-based-waiting.md → condition-based-waiting/condition-based-waiting.md} +0 -0
- /package/packages/droid/commands/{docx.md → docx/docx.md} +0 -0
- /package/packages/droid/commands/{internal-comms.md → internal-comms/internal-comms.md} +0 -0
- /package/packages/droid/commands/{mcp-builder.md → mcp-builder/mcp-builder.md} +0 -0
- /package/packages/droid/commands/{pdf.md → pdf/pdf.md} +0 -0
- /package/packages/droid/commands/{pptx.md → pptx/pptx.md} +0 -0
- /package/packages/droid/commands/{root-cause-tracing.md → root-cause-tracing/root-cause-tracing.md} +0 -0
- /package/packages/droid/commands/{skill-creator.md → skill-creator/skill-creator.md} +0 -0
- /package/packages/droid/commands/{slack-gif-creator.md → slack-gif-creator/slack-gif-creator.md} +0 -0
- /package/packages/droid/commands/{theme-factory.md → theme-factory/theme-factory.md} +0 -0
- /package/packages/droid/commands/{webapp-testing.md → webapp-testing/webapp-testing.md} +0 -0
- /package/packages/droid/commands/{xlsx.md → xlsx/xlsx.md} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: orchestrator
|
|
3
|
-
description:
|
|
3
|
+
description: Workflow coordinator - analyzes intent, matches to patterns, invokes agents with minimal context. Asks before each step.
|
|
4
4
|
mode: primary
|
|
5
5
|
temperature: 0.5
|
|
6
6
|
tools:
|
|
@@ -9,97 +9,134 @@ tools:
|
|
|
9
9
|
bash: true
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
-
You
|
|
12
|
+
You coordinate multi-agent workflows. Analyze user intent → match to pattern → ask approval → invoke agents with selective context only.
|
|
13
|
+
|
|
14
|
+
# Core Rules
|
|
15
|
+
|
|
16
|
+
1. **Read ~/.config/opencode/AGENTS.md first** - Get agent registry + 9 workflow patterns
|
|
17
|
+
2. **Match intent to pattern** - 85% confidence or ask clarifying questions
|
|
18
|
+
3. **Ask before each step** - Get approval, don't auto-advance
|
|
19
|
+
4. **Selective context only** - Pass minimal necessary info to agents
|
|
20
|
+
5. **Track state** - Current step, outputs, next decision point
|
|
21
|
+
|
|
22
|
+
# Workflow Patterns (from ~/.config/opencode/AGENTS.md)
|
|
23
|
+
|
|
24
|
+
1. Feature Discovery: "add feature" → research? → PRD? → tasks? → implement
|
|
25
|
+
2. Product Definition: "new product" → product-manager → product-owner → architect
|
|
26
|
+
3. Story Implementation: "implement story" → validate? → full-stack-dev → qa
|
|
27
|
+
4. Architecture Decision: "use tech X?" → business-analyst → architect → product-manager
|
|
28
|
+
5. UI Development: "build UI" → ux-expert → PRD? → dev → qa
|
|
29
|
+
6. Bug Triage: "bug X" → full-stack-dev → severity? → fix/story
|
|
30
|
+
7. Brownfield Discovery: "understand code" → context-initializer → analyst → architect?
|
|
31
|
+
8. Quality Validation: "review PR" → qa-test-architect → PASS/FAIL → dev?
|
|
32
|
+
9. Sprint Planning: "plan sprint" → product-manager → scrum-master → tasks
|
|
33
|
+
|
|
34
|
+
# Intent → Agent Mapping
|
|
35
|
+
|
|
36
|
+
| Intent Keywords | Invoke |
|
|
37
|
+
|---|---|
|
|
38
|
+
| research, competitive, discovery | business-analyst |
|
|
39
|
+
| PRD, requirements, scope | 1-create-prd |
|
|
40
|
+
| tasks, breakdown, backlog | 2-generate-tasks |
|
|
41
|
+
| implement, build, code | full-stack-dev |
|
|
42
|
+
| review, quality, test | qa-test-architect |
|
|
43
|
+
| design, UI, wireframe | ux-expert |
|
|
44
|
+
| story, acceptance criteria | product-owner |
|
|
45
|
+
| strategy, features, roadmap | product-manager |
|
|
46
|
+
| epic, sprint, agile | scrum-master |
|
|
47
|
+
| architecture, design, tech | holistic-architect |
|
|
48
|
+
| understand, document, brownfield | context-initializer, business-analyst |
|
|
49
|
+
| systematic implementation | 3-process-task-list |
|
|
50
|
+
|
|
51
|
+
# Context Injection Rules
|
|
52
|
+
|
|
53
|
+
When invoking agents, pass ONLY:
|
|
54
|
+
|
|
55
|
+
**business-analyst**: Feature description, user needs
|
|
56
|
+
**1-create-prd**: Research output (if any), requirements
|
|
57
|
+
**2-generate-tasks**: PRD only
|
|
58
|
+
**full-stack-dev**: Specs, relevant files (not full history)
|
|
59
|
+
**qa-test-architect**: Code diff, acceptance criteria, test requirements
|
|
60
|
+
**ux-expert**: Feature description, design requirements
|
|
61
|
+
**product-owner**: Feature idea, user story drafts
|
|
62
|
+
**holistic-architect**: Requirements, constraints, tech context
|
|
63
|
+
|
|
64
|
+
❌ **NEVER pass**: Full conversation, unrelated outputs, tangential discussions
|
|
65
|
+
|
|
66
|
+
# Execution Flow
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
1. Read ~/.config/opencode/AGENTS.md (agent registry + patterns)
|
|
70
|
+
2. Analyze user intent (keywords, artifacts, complexity)
|
|
71
|
+
3. Match to workflow pattern (85% threshold)
|
|
72
|
+
4. Present workflow: "I matched this to [pattern]. Steps: [list]. Proceed?"
|
|
73
|
+
5. Execute with conditional asks at each step
|
|
74
|
+
6. Between steps: summarize output, ask approval, inject selective context
|
|
75
|
+
7. Track: current agent, outputs, next decision point
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
# Conditional Execution Example
|
|
79
|
+
|
|
80
|
+
User: "Add user authentication"
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
Match: Feature Discovery Flow
|
|
84
|
+
|
|
85
|
+
Ask: "Research auth approaches first?"
|
|
86
|
+
├─ Yes → Invoke: business-analyst with "research auth approaches for [project]"
|
|
87
|
+
│ Wait for output → Ask: "Create formal PRD?"
|
|
88
|
+
│ ├─ Yes → Invoke: 1-create-prd with research output only
|
|
89
|
+
│ └─ No → Done (return research)
|
|
90
|
+
└─ No → Skip to PRD step
|
|
91
|
+
```
|
|
13
92
|
|
|
14
|
-
#
|
|
93
|
+
# Commands
|
|
15
94
|
|
|
16
|
-
|
|
17
|
-
- Dynamically transforms into any specialized agent on demand
|
|
18
|
-
- Loads resources only when explicitly needed (never pre-load)
|
|
19
|
-
- Assesses user needs and recommends the best approach, agent, or workflow
|
|
20
|
-
- Tracks current state and guides users to logical next steps
|
|
21
|
-
- Makes your active persona and current task explicit at all times
|
|
22
|
-
- Uses numbered lists for all choice presentations
|
|
23
|
-
- Processes commands starting with * (asterisk) immediately
|
|
24
|
-
- Always reminds users that commands require the * prefix
|
|
95
|
+
User commands start with *:
|
|
25
96
|
|
|
26
|
-
|
|
97
|
+
Core: *help, *status, *exit
|
|
98
|
+
Agent: *agent [name] (transform into agent)
|
|
99
|
+
Workflow: *workflow [name], *plan, *yolo (skip confirmations)
|
|
27
100
|
|
|
28
|
-
|
|
29
|
-
- **Templates/Tasks/Checklists**: Load ONLY when executing them
|
|
30
|
-
- **Workflows**: Discover and load at runtime when needed
|
|
31
|
-
- Always indicate when you're loading resources
|
|
32
|
-
- Never dump entire knowledge base contents immediately
|
|
101
|
+
If user forgets *, remind them.
|
|
33
102
|
|
|
34
|
-
#
|
|
103
|
+
# Transformation
|
|
35
104
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
# Transformation Protocol
|
|
43
|
-
|
|
44
|
-
When users request agents, tasks, or workflows:
|
|
45
|
-
1. Use 85% confidence threshold for fuzzy matching
|
|
46
|
-
2. If below threshold, present numbered list of options
|
|
47
|
-
3. When transforming:
|
|
48
|
-
- Announce transformation clearly
|
|
49
|
-
- Adopt complete persona, style, and principles
|
|
50
|
-
- Operate as that agent until *exit invoked
|
|
51
|
-
- Specialized persona's principles take precedence while embodied
|
|
52
|
-
|
|
53
|
-
# Workflow Guidance
|
|
54
|
-
|
|
55
|
-
When providing workflow guidance:
|
|
56
|
-
1. Discover available workflows at runtime (never assume)
|
|
57
|
-
2. Understand purpose, options, and decision points
|
|
58
|
-
3. Ask clarifying questions based on workflow structure
|
|
59
|
-
4. Guide users through selection when multiple options exist
|
|
60
|
-
5. Suggest creating detailed plan before starting when appropriate
|
|
61
|
-
6. Help choose right path for workflows with divergent paths
|
|
62
|
-
7. Adapt questions to specific domain
|
|
63
|
-
8. Only recommend workflows that exist in current bundle
|
|
64
|
-
9. Start interactive session and list workflows with descriptions
|
|
65
|
-
10. When *kb-mode is invoked, use kb-mode-interaction task; don't dump all KB content immediately, present topic areas and wait for user selection, provide focused contextual responses
|
|
66
|
-
|
|
67
|
-
# Interaction Style
|
|
68
|
-
|
|
69
|
-
- Be encouraging and supportive while technically precise
|
|
70
|
-
- Make recommendations proactively when seeing opportunities
|
|
71
|
-
- Ask clarifying questions before assumptions
|
|
72
|
-
- Explain reasoning when suggesting agents or workflows
|
|
73
|
-
- Track conversation context and reference when relevant
|
|
74
|
-
- Be explicit about actions ("I'm now loading...", "Transforming into...")
|
|
75
|
-
- Always provide numbered lists for easy selection
|
|
76
|
-
|
|
77
|
-
# Dependencies
|
|
78
|
-
|
|
79
|
-
Load only when needed:
|
|
80
|
-
- **Agents** (../AGENTS.md): Load ONLY when transforming into that specific agent
|
|
81
|
-
- **Data** (../resources/data.md): elicitation-methods, knowledge-base
|
|
82
|
-
- **Tasks** (../resources/task-briefs.md): advanced-elicitation, create-doc
|
|
83
|
-
- **Workflows** (../resources/workflows.yaml): greenfield-fullstack, greenfield-service, greenfield-ui, brownfield-fullstack, brownfield-service, brownfield-ui
|
|
105
|
+
When *agent [name]:
|
|
106
|
+
1. Fuzzy match (85% threshold)
|
|
107
|
+
2. If ambiguous, show numbered options
|
|
108
|
+
3. Announce: "Transforming into [agent]"
|
|
109
|
+
4. Load agent file, adopt full persona
|
|
110
|
+
5. Operate as that agent until *exit
|
|
84
111
|
|
|
85
112
|
# Status Tracking
|
|
86
113
|
|
|
87
|
-
When *status
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
#
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
2
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
114
|
+
When *status:
|
|
115
|
+
- Current agent (if transformed)
|
|
116
|
+
- Workflow step (if in progress)
|
|
117
|
+
- Completed steps
|
|
118
|
+
- Next decision point
|
|
119
|
+
- Suggested action
|
|
120
|
+
|
|
121
|
+
# Agent Registry
|
|
122
|
+
|
|
123
|
+
14 agents available (see ~/.config/opencode/AGENTS.md):
|
|
124
|
+
orchestrator, 1-create-prd, 2-generate-tasks, 3-process-task-list, business-analyst, context-initializer, full-stack-dev, holistic-architect, master, product-manager, product-owner, qa-test-architect, scrum-master, ux-expert
|
|
125
|
+
|
|
126
|
+
16 skills available (see ~/.config/opencode/AGENTS.md)
|
|
127
|
+
|
|
128
|
+
# Resource Loading
|
|
129
|
+
|
|
130
|
+
❌ **DON'T** pre-load agent definitions, workflows, tasks
|
|
131
|
+
✅ **DO** load on-demand when explicitly needed
|
|
132
|
+
✅ **DO** announce: "Loading [resource]..."
|
|
133
|
+
|
|
134
|
+
# Key Principles
|
|
135
|
+
|
|
136
|
+
- **Lazy loading**: Read files only when needed
|
|
137
|
+
- **Minimal context**: Pass only what's essential
|
|
138
|
+
- **Ask, don't assume**: Get approval before advancing
|
|
139
|
+
- **Track state**: Always know where you are in workflow
|
|
140
|
+
- **Be explicit**: Announce transformations, loading, decisions
|
|
141
|
+
|
|
142
|
+
Your job: Route intelligently, ask before acting, inject context selectively, track state clearly.
|
|
@@ -16,10 +16,10 @@ Install and invoke for your platform:
|
|
|
16
16
|
|
|
17
17
|
| Platform | Installation | Invocation |
|
|
18
18
|
|----------|--------------|-----------|
|
|
19
|
-
| **Claude Code** | `cp -rv ai/
|
|
20
|
-
| **OpenCode** | `cp -rv ai/
|
|
21
|
-
| **Amp** | `cp -rv ai/
|
|
22
|
-
| **Droid** | `cp -rv ai/
|
|
19
|
+
| **Claude Code** | `cp -rv ai/subagentic/claude/* ~/.claude/` | Automatic via orchestrator (or `@agent-name`, `As agent-name, ...`) |
|
|
20
|
+
| **OpenCode** | `cp -rv ai/subagentic/opencode/* ~/.config/opencode/` | Automatic via orchestrator (or `@agent-name` or `As agent-name, ...` )|
|
|
21
|
+
| **Amp** | `cp -rv ai/subagentic/ampcode/* ~/.config/amp/` | Automatic via orchestrator (or `As agent-name, ...` )|
|
|
22
|
+
| **Droid** | `cp -rv ai/subagentic/droid/* ~/.factory/` + enable in `~/.factory/settings.json` | Automatic via orchestrator (or `invoke droid agent_name`) |
|
|
23
23
|
|
|
24
24
|
---
|
|
25
25
|
|
|
@@ -36,74 +36,78 @@ Install and invoke for your platform:
|
|
|
36
36
|
## 🤖 14 Subagents
|
|
37
37
|
|
|
38
38
|
### Workflow Phase Agents (3)
|
|
39
|
-
| Agent | Purpose |
|
|
40
|
-
|
|
41
|
-
| **1-create-prd** | Create Product Requirement Documents with structured scope and requirements |
|
|
42
|
-
| **2-generate-tasks** | Break PRDs into granular, actionable task lists |
|
|
43
|
-
| **3-process-task-list** | Execute tasks iteratively with built-in review and progress tracking |
|
|
39
|
+
| Agent | Purpose | Token Load* |
|
|
40
|
+
|-------|---------|------------|
|
|
41
|
+
| **1-create-prd** | Create Product Requirement Documents with structured scope and requirements | ~889 tokens |
|
|
42
|
+
| **2-generate-tasks** | Break PRDs into granular, actionable task lists | ~1,029 tokens |
|
|
43
|
+
| **3-process-task-list** | Execute tasks iteratively with built-in review and progress tracking | ~1,004 tokens |
|
|
44
44
|
|
|
45
45
|
**Recommended Workflow:** PRD → Tasks → Process → Complete
|
|
46
46
|
|
|
47
47
|
### Specialist Agents (11)
|
|
48
|
-
| Agent | Purpose |
|
|
49
|
-
|
|
50
|
-
| **ux-expert** | UI/UX design, wireframes, prototypes, front-end specifications |
|
|
51
|
-
| **scrum-master** | User stories, epic management, agile process guidance |
|
|
52
|
-
| **qa-test-architect** | Test architecture, quality gates, code review feedback |
|
|
53
|
-
| **product-owner** | Backlog management, story refinement, acceptance criteria |
|
|
54
|
-
| **product-manager** | PRDs, product strategy, feature prioritization, roadmaps |
|
|
55
|
-
| **full-stack-dev** | Code implementation, debugging, refactoring |
|
|
56
|
-
| **holistic-architect** | System design, architecture docs, API design, scalability |
|
|
57
|
-
| **business-analyst** | Market research, competitive analysis, project discovery |
|
|
58
|
-
| **orchestrator** | Workflow coordination, multi-agent task management |
|
|
59
|
-
| **master** | Comprehensive expertise across all domains, universal executor |
|
|
60
|
-
| **context-initializer** | Project context setup, documentation discovery
|
|
48
|
+
| Agent | Purpose | Token Load* |
|
|
49
|
+
|-------|---------|----------------|
|
|
50
|
+
| **ux-expert** | UI/UX design, wireframes, prototypes, front-end specifications | ~1,113 tokens |
|
|
51
|
+
| **scrum-master** | User stories, epic management, agile process guidance | ~927 tokens |
|
|
52
|
+
| **qa-test-architect** | Test architecture, quality gates, code review feedback | ~1,351 tokens |
|
|
53
|
+
| **product-owner** | Backlog management, story refinement, acceptance criteria | ~1,299 tokens |
|
|
54
|
+
| **product-manager** | PRDs, product strategy, feature prioritization, roadmaps | ~1,243 tokens |
|
|
55
|
+
| **full-stack-dev** | Code implementation, debugging, refactoring | ~1,025 tokens |
|
|
56
|
+
| **holistic-architect** | System design, architecture docs, API design, scalability | ~1,427 tokens |
|
|
57
|
+
| **business-analyst** | Market research, competitive analysis, project discovery | ~1,295 tokens |
|
|
58
|
+
| **orchestrator** | Workflow coordination, multi-agent task management, automatic routing | ~902 tokens |
|
|
59
|
+
| **master** | Comprehensive expertise across all domains, universal executor | ~1,073 tokens |
|
|
60
|
+
| **context-initializer** | Project context setup, documentation discovery, creates CLAUDE.md with agent system | ~1,614 tokens |
|
|
61
|
+
|
|
62
|
+
**\*Progressive Disclosure:** Token loads shown are **full agent sizes when invoked**. Your base conversation only loads lightweight stubs (~50-90 tokens each, ~967 tokens total for all 14 agents). Full agent content loads only when you invoke that specific agent via `Task` tool. Check with `/context` command to see actual current usage.
|
|
61
63
|
|
|
62
64
|
---
|
|
63
65
|
|
|
64
66
|
## 🛠 22 Reusable Skills
|
|
65
67
|
|
|
66
68
|
### Development & Testing (7)
|
|
67
|
-
| Skill | Purpose |
|
|
68
|
-
|
|
69
|
-
| **test-driven-development** | Write tests first, red-green-refactor cycle ensures tests verify behavior |
|
|
70
|
-
| **testing-anti-patterns** | Avoid mock testing, test-only code, and mindless mocking |
|
|
71
|
-
| **code-review** | Structured code review workflow before merging |
|
|
72
|
-
| **systematic-debugging** | Four-phase debugging: investigate → analyze → hypothesize → implement |
|
|
73
|
-
| **root-cause-tracing** | Trace bugs backward through call stack to find original trigger |
|
|
74
|
-
| **condition-based-waiting** | Replace timeouts with polling to eliminate flaky tests |
|
|
75
|
-
| **verification-before-completion** | Verify claims with evidence before marking tasks complete |
|
|
69
|
+
| Skill | Purpose | Token Load* |
|
|
70
|
+
|-------|---------|------------|
|
|
71
|
+
| **test-driven-development** | Write tests first, red-green-refactor cycle ensures tests verify behavior | ~2,434 tokens |
|
|
72
|
+
| **testing-anti-patterns** | Avoid mock testing, test-only code, and mindless mocking | ~2,101 tokens |
|
|
73
|
+
| **code-review** | Structured code review workflow before merging | ~846 tokens |
|
|
74
|
+
| **systematic-debugging** | Four-phase debugging: investigate → analyze → hypothesize → implement | ~163 tokens |
|
|
75
|
+
| **root-cause-tracing** | Trace bugs backward through call stack to find original trigger | ~1,400 tokens |
|
|
76
|
+
| **condition-based-waiting** | Replace timeouts with polling to eliminate flaky tests | ~937 tokens |
|
|
77
|
+
| **verification-before-completion** | Verify claims with evidence before marking tasks complete | ~1,050 tokens |
|
|
76
78
|
|
|
77
79
|
### Design & Creativity (5)
|
|
78
|
-
| Skill | Purpose |
|
|
79
|
-
|
|
80
|
-
| **algorithmic-art** | Create generative art using p5.js with seeded randomness |
|
|
81
|
-
| **canvas-design** | Create visual art in PNG/PDF with design philosophy |
|
|
82
|
-
| **artifacts-builder** | Build React/TypeScript/Tailwind/shadcn artifacts with Parcel bundling |
|
|
83
|
-
| **theme-factory** | Apply 10 curated professional themes with color/font pairings |
|
|
84
|
-
| **slack-gif-creator** | Create optimized animated GIFs for Slack |
|
|
80
|
+
| Skill | Purpose | Token Load* |
|
|
81
|
+
|-------|---------|------------|
|
|
82
|
+
| **algorithmic-art** | Create generative art using p5.js with seeded randomness | ~4,942 tokens |
|
|
83
|
+
| **canvas-design** | Create visual art in PNG/PDF with design philosophy | ~2,984 tokens |
|
|
84
|
+
| **artifacts-builder** | Build React/TypeScript/Tailwind/shadcn artifacts with Parcel bundling | ~769 tokens |
|
|
85
|
+
| **theme-factory** | Apply 10 curated professional themes with color/font pairings | ~781 tokens |
|
|
86
|
+
| **slack-gif-creator** | Create optimized animated GIFs for Slack | ~4,285 tokens |
|
|
85
87
|
|
|
86
88
|
### Office & Document Processing (4)
|
|
87
|
-
| Skill | Purpose |
|
|
88
|
-
|
|
89
|
-
| **pdf** | Extract/create PDFs, merge/split, handle forms and tables |
|
|
90
|
-
| **docx** | Create/edit Word documents with tracked changes and comments |
|
|
91
|
-
| **pptx** | Create/edit PowerPoint with design-first approach and HTML conversion |
|
|
92
|
-
| **xlsx** | Create/edit spreadsheets with formulas, formatting, and data analysis |
|
|
89
|
+
| Skill | Purpose | Token Load* |
|
|
90
|
+
|-------|---------|------------|
|
|
91
|
+
| **pdf** | Extract/create PDFs, merge/split, handle forms and tables | ~2,359 tokens |
|
|
92
|
+
| **docx** | Create/edit Word documents with tracked changes and comments | ~2,537 tokens |
|
|
93
|
+
| **pptx** | Create/edit PowerPoint with design-first approach and HTML conversion | ~6,387 tokens |
|
|
94
|
+
| **xlsx** | Create/edit spreadsheets with formulas, formatting, and data analysis | ~2,658 tokens |
|
|
93
95
|
|
|
94
96
|
### Strategy & Communication (4)
|
|
95
|
-
| Skill | Purpose |
|
|
96
|
-
|
|
97
|
-
| **brainstorming** | Collaborative design through questioning and exploration |
|
|
98
|
-
| **internal-comms** | Write internal communications with company-approved formats |
|
|
99
|
-
| **brand-guidelines** | Apply Anthropic's official brand colors and typography |
|
|
100
|
-
| **mcp-builder** | Create MCP servers for LLM-service integration |
|
|
97
|
+
| Skill | Purpose | Token Load* |
|
|
98
|
+
|-------|---------|------------|
|
|
99
|
+
| **brainstorming** | Collaborative design through questioning and exploration | ~640 tokens |
|
|
100
|
+
| **internal-comms** | Write internal communications with company-approved formats | ~377 tokens |
|
|
101
|
+
| **brand-guidelines** | Apply Anthropic's official brand colors and typography | ~558 tokens |
|
|
102
|
+
| **mcp-builder** | Create MCP servers for LLM-service integration | ~3,388 tokens |
|
|
101
103
|
|
|
102
104
|
### Specialized (2)
|
|
103
|
-
| Skill | Purpose |
|
|
104
|
-
|
|
105
|
-
| **webapp-testing** | Test local web apps with Playwright – verify, debug, screenshot |
|
|
106
|
-
| **skill-creator** | Create custom skills extending Claude's capabilities |
|
|
105
|
+
| Skill | Purpose | Token Load* |
|
|
106
|
+
|-------|---------|------------|
|
|
107
|
+
| **webapp-testing** | Test local web apps with Playwright – verify, debug, screenshot | ~978 tokens |
|
|
108
|
+
| **skill-creator** | Create custom skills extending Claude's capabilities | ~2,886 tokens |
|
|
109
|
+
|
|
110
|
+
**\*Progressive Disclosure:** Token loads shown are **full skill sizes when activated**. Skills load on-demand via the `Skill` tool when you invoke them (e.g., `/pdf`, `/brainstorming`). Until activated, skills consume minimal tokens as slash command metadata (~3.1k tokens total for all 22 skills). Use `/context` to monitor actual usage.
|
|
107
111
|
|
|
108
112
|
---
|
|
109
113
|
|
|
@@ -146,10 +150,21 @@ Pre-built workflows for common development patterns (available in all kits):
|
|
|
146
150
|
|
|
147
151
|
## 🎯 How to Use This Package
|
|
148
152
|
|
|
153
|
+
### Claude Code (Orchestrator-First Pattern)
|
|
154
|
+
1. **Install** – `cp -rv ai/subagentic/claude/* ~/.claude/`
|
|
155
|
+
2. **Make requests naturally** – "Add authentication feature", "Review this code", "Plan next sprint"
|
|
156
|
+
3. **Orchestrator routes automatically** – Matches intent to optimal workflow, asks conditional questions
|
|
157
|
+
4. **Bypass when needed** – `@agent-name` or `As agent-name, ...` for direct agent access
|
|
158
|
+
5. **9 workflow patterns** – Pre-defined sequences in CLAUDE.md (Feature Discovery, Architecture Decision, etc.)
|
|
159
|
+
|
|
160
|
+
**Key files:**
|
|
161
|
+
- `~/.claude/CLAUDE.md` – Agent system with orchestrator-first routing and 9 workflows
|
|
162
|
+
- `~/.claude/agents/` – 14 specialist agents (orchestrator, 1-create-prd, full-stack-dev, qa, etc.)
|
|
163
|
+
- Project `CLAUDE.md` – Auto-created by context-initializer with agent system reminder
|
|
164
|
+
|
|
165
|
+
### Other Platforms
|
|
149
166
|
1. **Clone and Install** – Copy files to your CLI's config directory
|
|
150
167
|
2. **Start with Workflow** – Use 1-create-prd → 2-generate-tasks → 3-process-task-list
|
|
151
168
|
3. **Add Specialists** – Invoke agents by name for specific domain expertise
|
|
152
169
|
4. **Leverage Skills** – Use skills within agents for specialized capabilities
|
|
153
170
|
5. **Reuse Tasks** – Apply pre-built task templates for common patterns
|
|
154
|
-
|
|
155
|
-
**Across all four platforms:** Claude Code, OpenCode, Amp, Droid
|
|
@@ -16,10 +16,10 @@ Install and invoke for your platform:
|
|
|
16
16
|
|
|
17
17
|
| Platform | Installation | Invocation |
|
|
18
18
|
|----------|--------------|-----------|
|
|
19
|
-
| **Claude Code** | `cp -rv ai/
|
|
20
|
-
| **OpenCode** | `cp -rv ai/
|
|
21
|
-
| **Amp** | `cp -rv ai/
|
|
22
|
-
| **Droid** | `cp -rv ai/
|
|
19
|
+
| **Claude Code** | `cp -rv ai/subagentic/claude/* ~/.claude/` | Automatic via orchestrator (or `@agent-name`, `As agent-name, ...`) |
|
|
20
|
+
| **OpenCode** | `cp -rv ai/subagentic/opencode/* ~/.config/opencode/` | Automatic via orchestrator (or `@agent-name` or `As agent-name, ...` )|
|
|
21
|
+
| **Amp** | `cp -rv ai/subagentic/ampcode/* ~/.config/amp/` | Automatic via orchestrator (or `As agent-name, ...` )|
|
|
22
|
+
| **Droid** | `cp -rv ai/subagentic/droid/* ~/.factory/` + enable in `~/.factory/settings.json` | Automatic via orchestrator (or `invoke droid agent_name`) |
|
|
23
23
|
|
|
24
24
|
---
|
|
25
25
|
|
|
@@ -36,74 +36,78 @@ Install and invoke for your platform:
|
|
|
36
36
|
## 🤖 14 Subagents
|
|
37
37
|
|
|
38
38
|
### Workflow Phase Agents (3)
|
|
39
|
-
| Agent | Purpose |
|
|
40
|
-
|
|
41
|
-
| **1-create-prd** | Create Product Requirement Documents with structured scope and requirements |
|
|
42
|
-
| **2-generate-tasks** | Break PRDs into granular, actionable task lists |
|
|
43
|
-
| **3-process-task-list** | Execute tasks iteratively with built-in review and progress tracking |
|
|
39
|
+
| Agent | Purpose | Token Load* |
|
|
40
|
+
|-------|---------|------------|
|
|
41
|
+
| **1-create-prd** | Create Product Requirement Documents with structured scope and requirements | ~889 tokens |
|
|
42
|
+
| **2-generate-tasks** | Break PRDs into granular, actionable task lists | ~1,029 tokens |
|
|
43
|
+
| **3-process-task-list** | Execute tasks iteratively with built-in review and progress tracking | ~1,004 tokens |
|
|
44
44
|
|
|
45
45
|
**Recommended Workflow:** PRD → Tasks → Process → Complete
|
|
46
46
|
|
|
47
47
|
### Specialist Agents (11)
|
|
48
|
-
| Agent | Purpose |
|
|
49
|
-
|
|
50
|
-
| **ux-expert** | UI/UX design, wireframes, prototypes, front-end specifications |
|
|
51
|
-
| **scrum-master** | User stories, epic management, agile process guidance |
|
|
52
|
-
| **qa-test-architect** | Test architecture, quality gates, code review feedback |
|
|
53
|
-
| **product-owner** | Backlog management, story refinement, acceptance criteria |
|
|
54
|
-
| **product-manager** | PRDs, product strategy, feature prioritization, roadmaps |
|
|
55
|
-
| **full-stack-dev** | Code implementation, debugging, refactoring |
|
|
56
|
-
| **holistic-architect** | System design, architecture docs, API design, scalability |
|
|
57
|
-
| **business-analyst** | Market research, competitive analysis, project discovery |
|
|
58
|
-
| **orchestrator** | Workflow coordination, multi-agent task management |
|
|
59
|
-
| **master** | Comprehensive expertise across all domains, universal executor |
|
|
60
|
-
| **context-initializer** | Project context setup, documentation discovery
|
|
48
|
+
| Agent | Purpose | Token Load* |
|
|
49
|
+
|-------|---------|----------------|
|
|
50
|
+
| **ux-expert** | UI/UX design, wireframes, prototypes, front-end specifications | ~1,113 tokens |
|
|
51
|
+
| **scrum-master** | User stories, epic management, agile process guidance | ~927 tokens |
|
|
52
|
+
| **qa-test-architect** | Test architecture, quality gates, code review feedback | ~1,351 tokens |
|
|
53
|
+
| **product-owner** | Backlog management, story refinement, acceptance criteria | ~1,299 tokens |
|
|
54
|
+
| **product-manager** | PRDs, product strategy, feature prioritization, roadmaps | ~1,243 tokens |
|
|
55
|
+
| **full-stack-dev** | Code implementation, debugging, refactoring | ~1,025 tokens |
|
|
56
|
+
| **holistic-architect** | System design, architecture docs, API design, scalability | ~1,427 tokens |
|
|
57
|
+
| **business-analyst** | Market research, competitive analysis, project discovery | ~1,295 tokens |
|
|
58
|
+
| **orchestrator** | Workflow coordination, multi-agent task management, automatic routing | ~902 tokens |
|
|
59
|
+
| **master** | Comprehensive expertise across all domains, universal executor | ~1,073 tokens |
|
|
60
|
+
| **context-initializer** | Project context setup, documentation discovery, creates CLAUDE.md with agent system | ~1,614 tokens |
|
|
61
|
+
|
|
62
|
+
**\*Progressive Disclosure:** Token loads shown are **full agent sizes when invoked**. Your base conversation only loads lightweight stubs (~50-90 tokens each, ~967 tokens total for all 14 agents). Full agent content loads only when you invoke that specific agent via `Task` tool. Check with `/context` command to see actual current usage.
|
|
61
63
|
|
|
62
64
|
---
|
|
63
65
|
|
|
64
66
|
## 🛠 22 Reusable Skills
|
|
65
67
|
|
|
66
68
|
### Development & Testing (7)
|
|
67
|
-
| Skill | Purpose |
|
|
68
|
-
|
|
69
|
-
| **test-driven-development** | Write tests first, red-green-refactor cycle ensures tests verify behavior |
|
|
70
|
-
| **testing-anti-patterns** | Avoid mock testing, test-only code, and mindless mocking |
|
|
71
|
-
| **code-review** | Structured code review workflow before merging |
|
|
72
|
-
| **systematic-debugging** | Four-phase debugging: investigate → analyze → hypothesize → implement |
|
|
73
|
-
| **root-cause-tracing** | Trace bugs backward through call stack to find original trigger |
|
|
74
|
-
| **condition-based-waiting** | Replace timeouts with polling to eliminate flaky tests |
|
|
75
|
-
| **verification-before-completion** | Verify claims with evidence before marking tasks complete |
|
|
69
|
+
| Skill | Purpose | Token Load* |
|
|
70
|
+
|-------|---------|------------|
|
|
71
|
+
| **test-driven-development** | Write tests first, red-green-refactor cycle ensures tests verify behavior | ~2,434 tokens |
|
|
72
|
+
| **testing-anti-patterns** | Avoid mock testing, test-only code, and mindless mocking | ~2,101 tokens |
|
|
73
|
+
| **code-review** | Structured code review workflow before merging | ~846 tokens |
|
|
74
|
+
| **systematic-debugging** | Four-phase debugging: investigate → analyze → hypothesize → implement | ~163 tokens |
|
|
75
|
+
| **root-cause-tracing** | Trace bugs backward through call stack to find original trigger | ~1,400 tokens |
|
|
76
|
+
| **condition-based-waiting** | Replace timeouts with polling to eliminate flaky tests | ~937 tokens |
|
|
77
|
+
| **verification-before-completion** | Verify claims with evidence before marking tasks complete | ~1,050 tokens |
|
|
76
78
|
|
|
77
79
|
### Design & Creativity (5)
|
|
78
|
-
| Skill | Purpose |
|
|
79
|
-
|
|
80
|
-
| **algorithmic-art** | Create generative art using p5.js with seeded randomness |
|
|
81
|
-
| **canvas-design** | Create visual art in PNG/PDF with design philosophy |
|
|
82
|
-
| **artifacts-builder** | Build React/TypeScript/Tailwind/shadcn artifacts with Parcel bundling |
|
|
83
|
-
| **theme-factory** | Apply 10 curated professional themes with color/font pairings |
|
|
84
|
-
| **slack-gif-creator** | Create optimized animated GIFs for Slack |
|
|
80
|
+
| Skill | Purpose | Token Load* |
|
|
81
|
+
|-------|---------|------------|
|
|
82
|
+
| **algorithmic-art** | Create generative art using p5.js with seeded randomness | ~4,942 tokens |
|
|
83
|
+
| **canvas-design** | Create visual art in PNG/PDF with design philosophy | ~2,984 tokens |
|
|
84
|
+
| **artifacts-builder** | Build React/TypeScript/Tailwind/shadcn artifacts with Parcel bundling | ~769 tokens |
|
|
85
|
+
| **theme-factory** | Apply 10 curated professional themes with color/font pairings | ~781 tokens |
|
|
86
|
+
| **slack-gif-creator** | Create optimized animated GIFs for Slack | ~4,285 tokens |
|
|
85
87
|
|
|
86
88
|
### Office & Document Processing (4)
|
|
87
|
-
| Skill | Purpose |
|
|
88
|
-
|
|
89
|
-
| **pdf** | Extract/create PDFs, merge/split, handle forms and tables |
|
|
90
|
-
| **docx** | Create/edit Word documents with tracked changes and comments |
|
|
91
|
-
| **pptx** | Create/edit PowerPoint with design-first approach and HTML conversion |
|
|
92
|
-
| **xlsx** | Create/edit spreadsheets with formulas, formatting, and data analysis |
|
|
89
|
+
| Skill | Purpose | Token Load* |
|
|
90
|
+
|-------|---------|------------|
|
|
91
|
+
| **pdf** | Extract/create PDFs, merge/split, handle forms and tables | ~2,359 tokens |
|
|
92
|
+
| **docx** | Create/edit Word documents with tracked changes and comments | ~2,537 tokens |
|
|
93
|
+
| **pptx** | Create/edit PowerPoint with design-first approach and HTML conversion | ~6,387 tokens |
|
|
94
|
+
| **xlsx** | Create/edit spreadsheets with formulas, formatting, and data analysis | ~2,658 tokens |
|
|
93
95
|
|
|
94
96
|
### Strategy & Communication (4)
|
|
95
|
-
| Skill | Purpose |
|
|
96
|
-
|
|
97
|
-
| **brainstorming** | Collaborative design through questioning and exploration |
|
|
98
|
-
| **internal-comms** | Write internal communications with company-approved formats |
|
|
99
|
-
| **brand-guidelines** | Apply Anthropic's official brand colors and typography |
|
|
100
|
-
| **mcp-builder** | Create MCP servers for LLM-service integration |
|
|
97
|
+
| Skill | Purpose | Token Load* |
|
|
98
|
+
|-------|---------|------------|
|
|
99
|
+
| **brainstorming** | Collaborative design through questioning and exploration | ~640 tokens |
|
|
100
|
+
| **internal-comms** | Write internal communications with company-approved formats | ~377 tokens |
|
|
101
|
+
| **brand-guidelines** | Apply Anthropic's official brand colors and typography | ~558 tokens |
|
|
102
|
+
| **mcp-builder** | Create MCP servers for LLM-service integration | ~3,388 tokens |
|
|
101
103
|
|
|
102
104
|
### Specialized (2)
|
|
103
|
-
| Skill | Purpose |
|
|
104
|
-
|
|
105
|
-
| **webapp-testing** | Test local web apps with Playwright – verify, debug, screenshot |
|
|
106
|
-
| **skill-creator** | Create custom skills extending Claude's capabilities |
|
|
105
|
+
| Skill | Purpose | Token Load* |
|
|
106
|
+
|-------|---------|------------|
|
|
107
|
+
| **webapp-testing** | Test local web apps with Playwright – verify, debug, screenshot | ~978 tokens |
|
|
108
|
+
| **skill-creator** | Create custom skills extending Claude's capabilities | ~2,886 tokens |
|
|
109
|
+
|
|
110
|
+
**\*Progressive Disclosure:** Token loads shown are **full skill sizes when activated**. Skills load on-demand via the `Skill` tool when you invoke them (e.g., `/pdf`, `/brainstorming`). Until activated, skills consume minimal tokens as slash command metadata (~3.1k tokens total for all 22 skills). Use `/context` to monitor actual usage.
|
|
107
111
|
|
|
108
112
|
---
|
|
109
113
|
|
|
@@ -146,10 +150,21 @@ Pre-built workflows for common development patterns (available in all kits):
|
|
|
146
150
|
|
|
147
151
|
## 🎯 How to Use This Package
|
|
148
152
|
|
|
153
|
+
### Claude Code (Orchestrator-First Pattern)
|
|
154
|
+
1. **Install** – `cp -rv ai/subagentic/claude/* ~/.claude/`
|
|
155
|
+
2. **Make requests naturally** – "Add authentication feature", "Review this code", "Plan next sprint"
|
|
156
|
+
3. **Orchestrator routes automatically** – Matches intent to optimal workflow, asks conditional questions
|
|
157
|
+
4. **Bypass when needed** – `@agent-name` or `As agent-name, ...` for direct agent access
|
|
158
|
+
5. **9 workflow patterns** – Pre-defined sequences in CLAUDE.md (Feature Discovery, Architecture Decision, etc.)
|
|
159
|
+
|
|
160
|
+
**Key files:**
|
|
161
|
+
- `~/.claude/CLAUDE.md` – Agent system with orchestrator-first routing and 9 workflows
|
|
162
|
+
- `~/.claude/agents/` – 14 specialist agents (orchestrator, 1-create-prd, full-stack-dev, qa, etc.)
|
|
163
|
+
- Project `CLAUDE.md` – Auto-created by context-initializer with agent system reminder
|
|
164
|
+
|
|
165
|
+
### Other Platforms
|
|
149
166
|
1. **Clone and Install** – Copy files to your CLI's config directory
|
|
150
167
|
2. **Start with Workflow** – Use 1-create-prd → 2-generate-tasks → 3-process-task-list
|
|
151
168
|
3. **Add Specialists** – Invoke agents by name for specific domain expertise
|
|
152
169
|
4. **Leverage Skills** – Use skills within agents for specialized capabilities
|
|
153
170
|
5. **Reuse Tasks** – Apply pre-built task templates for common patterns
|
|
154
|
-
|
|
155
|
-
**Across all four platforms:** Claude Code, OpenCode, Amp, Droid
|