liteagents 2.4.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/CHANGELOG.md +441 -0
- package/LICENSE +21 -0
- package/README.md +179 -0
- package/cli.js +230 -0
- package/docs/.gitkeep +1 -0
- package/docs/CONTRIBUTING.md +739 -0
- package/docs/DUAL_PUBLISH_SUMMARY.md +177 -0
- package/docs/ERROR_HANDLING_IMPLEMENTATION.md +327 -0
- package/docs/GITHUB_PACKAGES.md +181 -0
- package/docs/GITHUB_SETUP.md +158 -0
- package/docs/INSTALLATION_DEMO.md +691 -0
- package/docs/INSTALLATION_LOCATIONS.md +299 -0
- package/docs/INSTALLER_GUIDE.md +1586 -0
- package/docs/INTEGRATION_ISSUES_9.1.md +341 -0
- package/docs/KNOWLEDGE_BASE.md +727 -0
- package/docs/MIGRATION.md +384 -0
- package/docs/PACKAGE_BASELINE.md +557 -0
- package/docs/PACKAGE_VALIDATION_REPORT.md +427 -0
- package/docs/PASS_INTEGRATION.md +307 -0
- package/docs/PASS_QUICK_START.md +150 -0
- package/docs/PRIVACY.md +203 -0
- package/docs/PUBLISHING.md +494 -0
- package/docs/QUICK-START.md +318 -0
- package/docs/RELEASE_NOTES_1.2.0.md +323 -0
- package/docs/SECURITY.md +317 -0
- package/docs/SILENT_MODE_GUIDE.md +526 -0
- package/docs/SKILLS_CONVERSION.md +154 -0
- package/docs/TESTING.md +582 -0
- package/docs/TEST_COVERAGE.md +347 -0
- package/docs/TROUBLESHOOTING.md +788 -0
- package/docs/UPDATED_VARIANT_CONFIGURATION.md +274 -0
- package/docs/VARIANT_CONFIGURATION.md +440 -0
- package/installer/cli.js +761 -0
- package/installer/installation-engine.js +1536 -0
- package/installer/package-manager.js +640 -0
- package/installer/path-manager.js +427 -0
- package/installer/report-template.js +298 -0
- package/installer/verification-system.js +274 -0
- package/package.json +83 -0
- package/packages/ampcode/AGENT.md +58 -0
- package/packages/ampcode/README.md +17 -0
- package/packages/ampcode/agents/1-create-prd.md +175 -0
- package/packages/ampcode/agents/2-generate-tasks.md +190 -0
- package/packages/ampcode/agents/3-process-task-list.md +225 -0
- package/packages/ampcode/agents/code-developer.md +198 -0
- package/packages/ampcode/agents/context-builder.md +142 -0
- package/packages/ampcode/agents/feature-planner.md +199 -0
- package/packages/ampcode/agents/market-researcher.md +89 -0
- package/packages/ampcode/agents/orchestrator.md +116 -0
- package/packages/ampcode/agents/quality-assurance.md +115 -0
- package/packages/ampcode/agents/system-architect.md +135 -0
- package/packages/ampcode/agents/ui-designer.md +184 -0
- package/packages/ampcode/commands/brainstorming.md +56 -0
- package/packages/ampcode/commands/code-review.md +107 -0
- package/packages/ampcode/commands/condition-based-waiting/example.ts +158 -0
- package/packages/ampcode/commands/condition-based-waiting.md +122 -0
- package/packages/ampcode/commands/debug.md +20 -0
- package/packages/ampcode/commands/docs-builder/templates.md +572 -0
- package/packages/ampcode/commands/docs-builder.md +106 -0
- package/packages/ampcode/commands/explain.md +18 -0
- package/packages/ampcode/commands/git-commit.md +14 -0
- package/packages/ampcode/commands/optimize.md +20 -0
- package/packages/ampcode/commands/refactor.md +21 -0
- package/packages/ampcode/commands/review.md +18 -0
- package/packages/ampcode/commands/root-cause-tracing/find-polluter.sh +63 -0
- package/packages/ampcode/commands/root-cause-tracing.md +176 -0
- package/packages/ampcode/commands/security.md +21 -0
- package/packages/ampcode/commands/ship.md +18 -0
- package/packages/ampcode/commands/skill-creator/scripts/init_skill.py +303 -0
- package/packages/ampcode/commands/skill-creator/scripts/package_skill.py +110 -0
- package/packages/ampcode/commands/skill-creator/scripts/quick_validate.py +65 -0
- package/packages/ampcode/commands/skill-creator.md +211 -0
- package/packages/ampcode/commands/stash.md +45 -0
- package/packages/ampcode/commands/systematic-debugging.md +297 -0
- package/packages/ampcode/commands/test-driven-development.md +390 -0
- package/packages/ampcode/commands/test-generate.md +18 -0
- package/packages/ampcode/commands/testing-anti-patterns.md +304 -0
- package/packages/ampcode/commands/verification-before-completion.md +152 -0
- package/packages/ampcode/settings.json +13 -0
- package/packages/ampcode/variants.json +8 -0
- package/packages/claude/CLAUDE.md +58 -0
- package/packages/claude/README.md +23 -0
- package/packages/claude/agents/1-create-prd.md +175 -0
- package/packages/claude/agents/2-generate-tasks.md +190 -0
- package/packages/claude/agents/3-process-task-list.md +225 -0
- package/packages/claude/agents/code-developer.md +198 -0
- package/packages/claude/agents/context-builder.md +142 -0
- package/packages/claude/agents/feature-planner.md +199 -0
- package/packages/claude/agents/market-researcher.md +89 -0
- package/packages/claude/agents/orchestrator.md +117 -0
- package/packages/claude/agents/quality-assurance.md +115 -0
- package/packages/claude/agents/system-architect.md +135 -0
- package/packages/claude/agents/ui-designer.md +184 -0
- package/packages/claude/commands/debug.md +20 -0
- package/packages/claude/commands/explain.md +18 -0
- package/packages/claude/commands/git-commit.md +14 -0
- package/packages/claude/commands/optimize.md +20 -0
- package/packages/claude/commands/refactor.md +21 -0
- package/packages/claude/commands/review.md +18 -0
- package/packages/claude/commands/security.md +21 -0
- package/packages/claude/commands/ship.md +18 -0
- package/packages/claude/commands/stash.md +45 -0
- package/packages/claude/commands/test-generate.md +18 -0
- package/packages/claude/skills/brainstorming/SKILL.md +56 -0
- package/packages/claude/skills/code-review/SKILL.md +107 -0
- package/packages/claude/skills/code-review/code-reviewer.md +146 -0
- package/packages/claude/skills/condition-based-waiting/SKILL.md +122 -0
- package/packages/claude/skills/condition-based-waiting/example.ts +158 -0
- package/packages/claude/skills/docs-builder/SKILL.md +106 -0
- package/packages/claude/skills/docs-builder/references/templates.md +572 -0
- package/packages/claude/skills/root-cause-tracing/SKILL.md +176 -0
- package/packages/claude/skills/root-cause-tracing/find-polluter.sh +63 -0
- package/packages/claude/skills/skill-creator/LICENSE.txt +202 -0
- package/packages/claude/skills/skill-creator/SKILL.md +211 -0
- package/packages/claude/skills/skill-creator/scripts/init_skill.py +303 -0
- package/packages/claude/skills/skill-creator/scripts/package_skill.py +110 -0
- package/packages/claude/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/packages/claude/skills/systematic-debugging/CREATION-LOG.md +119 -0
- package/packages/claude/skills/systematic-debugging/SKILL.md +296 -0
- package/packages/claude/skills/systematic-debugging/test-academic.md +14 -0
- package/packages/claude/skills/systematic-debugging/test-pressure-1.md +58 -0
- package/packages/claude/skills/systematic-debugging/test-pressure-2.md +68 -0
- package/packages/claude/skills/systematic-debugging/test-pressure-3.md +69 -0
- package/packages/claude/skills/test-driven-development/SKILL.md +392 -0
- package/packages/claude/skills/testing-anti-patterns/SKILL.md +304 -0
- package/packages/claude/skills/verification-before-completion/SKILL.md +152 -0
- package/packages/claude/variants.json +9 -0
- package/packages/droid/AGENTS.md +52 -0
- package/packages/droid/README.md +17 -0
- package/packages/droid/change_settings.json +61 -0
- package/packages/droid/commands/brainstorming.md +56 -0
- package/packages/droid/commands/code-review.md +107 -0
- package/packages/droid/commands/condition-based-waiting/example.ts +158 -0
- package/packages/droid/commands/condition-based-waiting.md +122 -0
- package/packages/droid/commands/debug.md +20 -0
- package/packages/droid/commands/docs-builder/templates.md +572 -0
- package/packages/droid/commands/docs-builder.md +106 -0
- package/packages/droid/commands/explain.md +18 -0
- package/packages/droid/commands/git-commit.md +14 -0
- package/packages/droid/commands/optimize.md +20 -0
- package/packages/droid/commands/refactor.md +21 -0
- package/packages/droid/commands/review.md +18 -0
- package/packages/droid/commands/root-cause-tracing/find-polluter.sh +63 -0
- package/packages/droid/commands/root-cause-tracing.md +176 -0
- package/packages/droid/commands/security.md +21 -0
- package/packages/droid/commands/ship.md +18 -0
- package/packages/droid/commands/skill-creator/scripts/init_skill.py +303 -0
- package/packages/droid/commands/skill-creator/scripts/package_skill.py +110 -0
- package/packages/droid/commands/skill-creator/scripts/quick_validate.py +65 -0
- package/packages/droid/commands/skill-creator.md +211 -0
- package/packages/droid/commands/stash.md +45 -0
- package/packages/droid/commands/systematic-debugging.md +297 -0
- package/packages/droid/commands/test-driven-development.md +390 -0
- package/packages/droid/commands/test-generate.md +18 -0
- package/packages/droid/commands/testing-anti-patterns.md +304 -0
- package/packages/droid/commands/verification-before-completion.md +152 -0
- package/packages/droid/droids/1-create-prd.md +170 -0
- package/packages/droid/droids/2-generate-tasks.md +190 -0
- package/packages/droid/droids/3-process-task-list.md +225 -0
- package/packages/droid/droids/code-developer.md +198 -0
- package/packages/droid/droids/context-builder.md +142 -0
- package/packages/droid/droids/feature-planner.md +199 -0
- package/packages/droid/droids/market-researcher.md +89 -0
- package/packages/droid/droids/orchestrator.md +116 -0
- package/packages/droid/droids/quality-assurance.md +115 -0
- package/packages/droid/droids/system-architect.md +135 -0
- package/packages/droid/droids/ui-designer.md +184 -0
- package/packages/droid/variants.json +8 -0
- package/packages/opencode/AGENTS.md +52 -0
- package/packages/opencode/README.md +17 -0
- package/packages/opencode/agent/1-create-prd.md +179 -0
- package/packages/opencode/agent/2-generate-tasks.md +194 -0
- package/packages/opencode/agent/3-process-task-list.md +229 -0
- package/packages/opencode/agent/code-developer.md +202 -0
- package/packages/opencode/agent/context-builder.md +146 -0
- package/packages/opencode/agent/feature-planner.md +203 -0
- package/packages/opencode/agent/market-researcher.md +93 -0
- package/packages/opencode/agent/orchestrator.md +120 -0
- package/packages/opencode/agent/quality-assurance.md +119 -0
- package/packages/opencode/agent/system-architect.md +139 -0
- package/packages/opencode/agent/ui-designer.md +188 -0
- package/packages/opencode/command/brainstorming.md +56 -0
- package/packages/opencode/command/code-review.md +107 -0
- package/packages/opencode/command/condition-based-waiting/example.ts +158 -0
- package/packages/opencode/command/condition-based-waiting.md +122 -0
- package/packages/opencode/command/debug.md +20 -0
- package/packages/opencode/command/docs-builder/templates.md +572 -0
- package/packages/opencode/command/docs-builder.md +106 -0
- package/packages/opencode/command/explain.md +18 -0
- package/packages/opencode/command/git-commit.md +14 -0
- package/packages/opencode/command/optimize.md +20 -0
- package/packages/opencode/command/refactor.md +21 -0
- package/packages/opencode/command/review.md +18 -0
- package/packages/opencode/command/root-cause-tracing/find-polluter.sh +63 -0
- package/packages/opencode/command/root-cause-tracing.md +176 -0
- package/packages/opencode/command/security.md +21 -0
- package/packages/opencode/command/ship.md +18 -0
- package/packages/opencode/command/skill-creator/scripts/init_skill.py +303 -0
- package/packages/opencode/command/skill-creator/scripts/package_skill.py +110 -0
- package/packages/opencode/command/skill-creator/scripts/quick_validate.py +65 -0
- package/packages/opencode/command/skill-creator.md +211 -0
- package/packages/opencode/command/stash.md +45 -0
- package/packages/opencode/command/systematic-debugging.md +297 -0
- package/packages/opencode/command/test-driven-development.md +390 -0
- package/packages/opencode/command/test-generate.md +18 -0
- package/packages/opencode/command/testing-anti-patterns.md +304 -0
- package/packages/opencode/command/verification-before-completion.md +152 -0
- package/packages/opencode/opencode.jsonc +201 -0
- package/packages/opencode/variants.json +8 -0
- package/packages/subagentic-manual.md +349 -0
- package/postinstall.js +21 -0
- package/tools/ampcode/manifest-template.json +14 -0
- package/tools/claude/manifest-template.json +14 -0
- package/tools/droid/manifest-template.json +14 -0
- package/tools/opencode/manifest-template.json +14 -0
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
# Subagentic Manual
|
|
2
|
+
|
|
3
|
+
Production-ready AI agent framework providing specialized subagents, workflow commands, and development skills for **Claude Code**, **OpenCode**, **Ampcode**, and **Droid**. Deploy expert AI personas instantly with zero configuration.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Why Subagentic?
|
|
8
|
+
|
|
9
|
+
**The Challenge**: Generic AI assistants lack specialized expertise and systematic workflows, leading to inconsistent results and context overload.
|
|
10
|
+
|
|
11
|
+
**The Solution**: Subagentic provides:
|
|
12
|
+
- **Role-Specialized Agents** - Expert personas (architect, QA, product manager) with domain-specific knowledge
|
|
13
|
+
- **Systematic Workflows** - Proven development patterns (PRD → Tasks → Implementation)
|
|
14
|
+
- **Orchestrator-First Routing** - Automatic workflow matching based on user intent
|
|
15
|
+
- **Frontmatter-Based Discovery** - All resources self-describe via YAML frontmatter
|
|
16
|
+
- **Platform Agnostic** - Works across Claude Code, OpenCode, Ampcode, and Droid
|
|
17
|
+
|
|
18
|
+
**The Result**: Predictable, high-quality outputs from specialized agents following best practices, without manually switching contexts or crafting complex prompts.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
Clone the toolkit:
|
|
25
|
+
```bash
|
|
26
|
+
git clone https://github.com/amrhas82/agentic-toolkit
|
|
27
|
+
cd agentic-toolkit/ai/subagentic
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Install for your platform:
|
|
31
|
+
|
|
32
|
+
| Platform | Installation | What's Included |
|
|
33
|
+
|----------|--------------|-----------------|
|
|
34
|
+
| **Claude Code** | `cp -r claude/* ~/.claude/` | 11 subagents + 10 skills + 10 commands |
|
|
35
|
+
| **Droid** | `cp -r droid/* ~/.factory/` | 20 commands (subagent references) |
|
|
36
|
+
| **Ampcode** | `cp -r ampcode/* ~/.config/amp/` | 11 subagents + 10 skills + 10 commands |
|
|
37
|
+
| **OpenCode** | `cp -r opencode/* ~/.config/opencode/` | 20 commands (subagent references) |
|
|
38
|
+
|
|
39
|
+
**Key Difference**:
|
|
40
|
+
- **Claude Code / Ampcode** implement full subagent system with orchestrator
|
|
41
|
+
- **Droid/OpenCode** provide commands only + reference documentation for subagents
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## What's Included
|
|
46
|
+
|
|
47
|
+
### Claude Code / Ampcode (Full System)
|
|
48
|
+
|
|
49
|
+
**11 Subagents** - Expert personas with specialized knowledge
|
|
50
|
+
- 3 Workflow Agents (PRD, Tasks, Implementation)
|
|
51
|
+
- 8 Specialist Agents (UX, QA, Architecture, Product, Development, etc.)
|
|
52
|
+
|
|
53
|
+
**10 Skills** - Auto-triggering workflow components
|
|
54
|
+
- test-driven-development, testing-anti-patterns, verification-before-completion (auto-trigger)
|
|
55
|
+
- brainstorming, code-review, systematic-debugging, docs-builder, etc.
|
|
56
|
+
|
|
57
|
+
**10 Commands** - Simple workflow helpers
|
|
58
|
+
- debug, explain, git-commit, optimize, refactor, review, security, ship, stash, test-generate
|
|
59
|
+
|
|
60
|
+
**Orchestration System**
|
|
61
|
+
- Automatic intent matching to 9 workflow patterns
|
|
62
|
+
- Conditional decision points with user approval gates
|
|
63
|
+
- Selective context injection
|
|
64
|
+
|
|
65
|
+
### Droid/OpenCode (Commands Only)
|
|
66
|
+
|
|
67
|
+
**20 Commands** - All workflow capabilities in command form
|
|
68
|
+
- Combines skills + commands into unified command set
|
|
69
|
+
- Same functionality, different invocation model (no auto-triggering)
|
|
70
|
+
- Includes reference documentation for subagents
|
|
71
|
+
|
|
72
|
+
**No Orchestrator** - Direct command invocation only
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Subagents
|
|
77
|
+
|
|
78
|
+
### Workflow Agents (3)
|
|
79
|
+
|
|
80
|
+
| Agent | Purpose |
|
|
81
|
+
|-------|---------|
|
|
82
|
+
| **1-create-prd** | Define scope with structured Product Requirement Documents |
|
|
83
|
+
| **2-generate-tasks** | Break PRDs into granular, actionable task lists |
|
|
84
|
+
| **3-process-task-list** | Execute tasks iteratively with progress tracking and review checkpoints |
|
|
85
|
+
|
|
86
|
+
**Pattern**: PRD → Tasks → Iterative Implementation → Review → Complete
|
|
87
|
+
|
|
88
|
+
### Specialist Agents (8)
|
|
89
|
+
|
|
90
|
+
| Agent | Purpose |
|
|
91
|
+
|-------|---------|
|
|
92
|
+
| **orchestrator** | Analyze intent, coordinate workflows, route to optimal agent sequences |
|
|
93
|
+
| **ui-designer** | UI/UX design, wireframes, prototypes, accessibility, design systems |
|
|
94
|
+
| **code-developer** | Implementation, debugging, refactoring, code best practices |
|
|
95
|
+
| **quality-assurance** | Test architecture, quality gates, requirements traceability, risk assessment |
|
|
96
|
+
| **system-architect** | System design, technology selection, API design, scalability planning |
|
|
97
|
+
| **feature-planner** | Epics, user stories, prioritization, backlog management, retrospectives |
|
|
98
|
+
| **market-researcher** | Market analysis, competitive research, project discovery, brainstorming |
|
|
99
|
+
| **context-builder** | Initialize project context, discover documentation, create knowledge bases |
|
|
100
|
+
|
|
101
|
+
---
|
|
102
|
+
|
|
103
|
+
## Commands Reference
|
|
104
|
+
|
|
105
|
+
### Claude Code / Ampcode: 20 Total (10 Skills + 10 Commands)
|
|
106
|
+
|
|
107
|
+
**Auto-Triggering Skills (3)**
|
|
108
|
+
- `test-driven-development` - Write test first, watch fail, minimal passing code
|
|
109
|
+
- `testing-anti-patterns` - Prevent mocking anti-patterns and test pollution
|
|
110
|
+
- `verification-before-completion` - Run verification before claiming done
|
|
111
|
+
|
|
112
|
+
**Manual Skills (7)**
|
|
113
|
+
- `brainstorming` - Refine rough ideas through collaborative questioning
|
|
114
|
+
- `code-review` - Review implementation against requirements
|
|
115
|
+
- `condition-based-waiting` - Replace timeouts with condition polling
|
|
116
|
+
- `docs-builder` - Create structured /docs hierarchy
|
|
117
|
+
- `root-cause-tracing` - Trace bugs backward through call stack
|
|
118
|
+
- `skill-creator` - Guide for creating new skills
|
|
119
|
+
- `systematic-debugging` - Four-phase debugging framework
|
|
120
|
+
|
|
121
|
+
**Simple Commands (10)**
|
|
122
|
+
- `debug` - Systematic investigation techniques
|
|
123
|
+
- `explain` - Explain code for newcomers
|
|
124
|
+
- `git-commit` - Intelligent commit creation
|
|
125
|
+
- `optimize` - Performance analysis
|
|
126
|
+
- `refactor` - Maintain behavior while improving code
|
|
127
|
+
- `review` - Comprehensive code review
|
|
128
|
+
- `security` - Vulnerability scanning
|
|
129
|
+
- `ship` - Pre-deployment checklist
|
|
130
|
+
- `stash` - Save session context for compaction recovery or handoffs
|
|
131
|
+
- `test-generate` - Test suite generation
|
|
132
|
+
|
|
133
|
+
### Droid/OpenCode: 20 Commands
|
|
134
|
+
|
|
135
|
+
Same functionality as skills+commands, but:
|
|
136
|
+
- All invoked as commands (no auto-triggering)
|
|
137
|
+
- Unified command set
|
|
138
|
+
- No orchestrator integration
|
|
139
|
+
|
|
140
|
+
**Command Categories**:
|
|
141
|
+
- **Development & Testing (9)**: test-driven-development, testing-anti-patterns, test-generate, code-review, systematic-debugging, root-cause-tracing, debug, condition-based-waiting, verification-before-completion
|
|
142
|
+
- **Code Operations (6)**: refactor, optimize, explain, review, security, ship
|
|
143
|
+
- **Session & Planning (5)**: brainstorming, skill-creator, docs-builder, git-commit, stash
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## Usage Patterns
|
|
148
|
+
|
|
149
|
+
### Claude Code / Ampcode: Orchestrator-First (Recommended)
|
|
150
|
+
|
|
151
|
+
The orchestrator analyzes your request and routes to optimal workflows automatically.
|
|
152
|
+
|
|
153
|
+
**How it works**:
|
|
154
|
+
1. Make natural requests: "Add login feature", "Review this PR", "Plan next sprint"
|
|
155
|
+
2. Orchestrator matches intent to workflow patterns
|
|
156
|
+
3. Conditional gates ask for approval before each phase
|
|
157
|
+
4. Specialists execute with domain expertise
|
|
158
|
+
|
|
159
|
+
**Example Flow - Feature Development**:
|
|
160
|
+
```
|
|
161
|
+
User: "Add authentication feature"
|
|
162
|
+
↓
|
|
163
|
+
Orchestrator: "Research competitive approaches first?" [Yes/No]
|
|
164
|
+
↓ Yes
|
|
165
|
+
Market Researcher: [Gathers auth patterns, OAuth vs JWT tradeoffs]
|
|
166
|
+
↓
|
|
167
|
+
Orchestrator: "Create formal PRD?" [Yes/No]
|
|
168
|
+
↓ Yes
|
|
169
|
+
1-Create-PRD: [Structured requirements document]
|
|
170
|
+
↓
|
|
171
|
+
Orchestrator: "Generate implementation tasks?" [Yes/No]
|
|
172
|
+
↓ Yes
|
|
173
|
+
2-Generate-Tasks: [20 granular tasks with acceptance criteria]
|
|
174
|
+
↓
|
|
175
|
+
Orchestrator: "Start systematic implementation?" [Yes/No]
|
|
176
|
+
↓ Yes
|
|
177
|
+
3-Process-Task-List: [Iterative implementation with review gates]
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
**Bypass Options**:
|
|
181
|
+
- Direct agent: `@quality-assurance review this code`
|
|
182
|
+
- Role syntax: `As system-architect, design the API layer`
|
|
183
|
+
- Skills: `/test-driven-development login-feature`
|
|
184
|
+
|
|
185
|
+
### 9 Pre-Defined Workflow Patterns
|
|
186
|
+
|
|
187
|
+
1. **Feature Discovery Flow** - Research → PRD → Tasks → Implementation
|
|
188
|
+
2. **Product Definition Flow** - Strategy → Epics/Stories → Technical Assessment
|
|
189
|
+
3. **Story Implementation Flow** - Validate → Implement → QA Gate
|
|
190
|
+
4. **Architecture Decision Flow** - Constraints → Analysis → Alignment
|
|
191
|
+
5. **UI Development Flow** - Design → PRD (optional) → Implement → Validate
|
|
192
|
+
6. **Bug Triage Flow** - Investigate → Severity Assessment → Fix/Backlog
|
|
193
|
+
7. **Brownfield Discovery Flow** - Context Building → Documentation → Assessment
|
|
194
|
+
8. **Quality Validation Flow** - Review → Pass/Concerns/Fail → Remediation
|
|
195
|
+
9. **Sprint Planning Flow** - Prioritize → Stories → Criteria → Tasks
|
|
196
|
+
|
|
197
|
+
Each pattern includes conditional decision points requiring user approval.
|
|
198
|
+
|
|
199
|
+
### Droid/OpenCode: Direct Command Invocation
|
|
200
|
+
|
|
201
|
+
No orchestrator - invoke commands directly:
|
|
202
|
+
- `/debug <issue>`
|
|
203
|
+
- `/refactor <code-section>`
|
|
204
|
+
- `/test-driven-development <feature>`
|
|
205
|
+
|
|
206
|
+
Subagent workflows require manual coordination.
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## Value Proposition
|
|
211
|
+
|
|
212
|
+
### For Individual Developers
|
|
213
|
+
- **Instant Expertise** - Access 11 specialist agents without hiring
|
|
214
|
+
- **Consistent Quality** - Best practices built into every agent
|
|
215
|
+
- **Faster Iteration** - Systematic workflows reduce trial-and-error
|
|
216
|
+
- **Learning Tool** - Observe expert patterns and decision-making
|
|
217
|
+
|
|
218
|
+
### For Teams
|
|
219
|
+
- **Standardized Processes** - Shared agent definitions ensure consistency
|
|
220
|
+
- **Onboarding Acceleration** - New members learn patterns through agent interactions
|
|
221
|
+
- **Documentation Culture** - context-builder and docs-builder promote knowledge capture
|
|
222
|
+
- **Cross-Functional Collaboration** - Product, design, and engineering agents work together
|
|
223
|
+
|
|
224
|
+
### For Technical Leaders
|
|
225
|
+
- **Scalable Expertise** - Multiply senior-level guidance across projects
|
|
226
|
+
- **Quality Gates** - Built-in review and validation checkpoints
|
|
227
|
+
- **Architectural Consistency** - system-architect ensures coherent design decisions
|
|
228
|
+
- **Reduced Context Switching** - Specialists handle domain-specific work
|
|
229
|
+
|
|
230
|
+
---
|
|
231
|
+
|
|
232
|
+
## Platform Architecture
|
|
233
|
+
|
|
234
|
+
### Claude Code
|
|
235
|
+
```
|
|
236
|
+
~/.claude/
|
|
237
|
+
├── CLAUDE.md # Registry + orchestrator workflows
|
|
238
|
+
├── agents/ # 11 subagent implementations (*.md)
|
|
239
|
+
├── skills/ # 11 skills (subdirectories with SKILL.md)
|
|
240
|
+
└── commands/ # 10 commands (*.md)
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
**Features**:
|
|
244
|
+
- Full subagent system with orchestrator
|
|
245
|
+
- Auto-triggering skills
|
|
246
|
+
- Workflow pattern matching
|
|
247
|
+
- Progressive agent loading
|
|
248
|
+
|
|
249
|
+
### Ampcode
|
|
250
|
+
```
|
|
251
|
+
~/.config/amp/
|
|
252
|
+
├── AGENT.md # Reference doc (subagents + commands)
|
|
253
|
+
├── agents/ # 11 subagent implementations (*.md)
|
|
254
|
+
├── skills/ # 11 skills (subdirectories with SKILL.md)
|
|
255
|
+
└── commands/ # 10 commands (*.md)
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
**Features**:
|
|
259
|
+
- Full subagent system with orchestrator
|
|
260
|
+
- Auto-triggering skills
|
|
261
|
+
- Workflow pattern matching
|
|
262
|
+
|
|
263
|
+
### Droid
|
|
264
|
+
```
|
|
265
|
+
~/.factory/
|
|
266
|
+
├── AGENTS.md # Reference doc (subagents + commands)
|
|
267
|
+
└── commands/ # 20 commands (*.md)
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
**Features**:
|
|
271
|
+
- Commands only (no subagent implementations)
|
|
272
|
+
- Reference table for subagents
|
|
273
|
+
- Direct command invocation
|
|
274
|
+
|
|
275
|
+
### OpenCode
|
|
276
|
+
```
|
|
277
|
+
~/.config/opencode/
|
|
278
|
+
├── AGENTS.md # Reference doc (subagents + commands)
|
|
279
|
+
└── command/ # 20 commands (*.md)
|
|
280
|
+
```
|
|
281
|
+
|
|
282
|
+
**Features**:
|
|
283
|
+
- Commands only (no subagent implementations)
|
|
284
|
+
- Reference table for subagents
|
|
285
|
+
- Direct command invocation
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
|
|
289
|
+
## Frontmatter Architecture
|
|
290
|
+
|
|
291
|
+
All resources are self-describing via YAML frontmatter for auto-discovery:
|
|
292
|
+
|
|
293
|
+
**Subagents** (`agents/*.md`):
|
|
294
|
+
```yaml
|
|
295
|
+
---
|
|
296
|
+
id: code-developer
|
|
297
|
+
title: Full Stack Developer
|
|
298
|
+
description: Implement code, debug, refactor
|
|
299
|
+
when_to_use: Use for code implementation, debugging, refactoring, and development best practices
|
|
300
|
+
model: inherit
|
|
301
|
+
color: purple
|
|
302
|
+
---
|
|
303
|
+
```
|
|
304
|
+
|
|
305
|
+
**Skills** (`skills/*/SKILL.md`):
|
|
306
|
+
```yaml
|
|
307
|
+
---
|
|
308
|
+
id: test-driven-development
|
|
309
|
+
name: test-driven-development
|
|
310
|
+
description: Write test first, watch it fail, write minimal code to pass
|
|
311
|
+
usage: /test-driven-development <feature-or-behavior-to-test>
|
|
312
|
+
auto_trigger: true
|
|
313
|
+
---
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
**Commands** (`commands/*.md`):
|
|
317
|
+
```yaml
|
|
318
|
+
---
|
|
319
|
+
id: debug
|
|
320
|
+
name: debug
|
|
321
|
+
description: Debug an issue systematically using structured investigation techniques
|
|
322
|
+
usage: /debug <issue-description>
|
|
323
|
+
argument-hint: [description of the problem]
|
|
324
|
+
---
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
This enables:
|
|
328
|
+
- Dynamic registry building by CLIs
|
|
329
|
+
- Single source of truth (no manual registries)
|
|
330
|
+
- Consistent metadata across platforms
|
|
331
|
+
- Easy extensibility
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
## Contributing
|
|
336
|
+
|
|
337
|
+
Contributions welcome for:
|
|
338
|
+
- New specialist agents for additional domains
|
|
339
|
+
- Additional workflow patterns
|
|
340
|
+
- Platform-specific optimizations
|
|
341
|
+
- Documentation improvements
|
|
342
|
+
|
|
343
|
+
See repository for contribution guidelines.
|
|
344
|
+
|
|
345
|
+
---
|
|
346
|
+
|
|
347
|
+
**License**: [Specify license]
|
|
348
|
+
**Repository**: https://github.com/amrhas82/agentic-toolkit
|
|
349
|
+
**Issues**: https://github.com/amrhas82/agentic-toolkit/issues
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const colors = {
|
|
4
|
+
bright: '\x1b[1m',
|
|
5
|
+
cyan: '\x1b[36m',
|
|
6
|
+
green: '\x1b[32m',
|
|
7
|
+
yellow: '\x1b[33m',
|
|
8
|
+
reset: '\x1b[0m'
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
console.log('');
|
|
12
|
+
console.log(`${colors.green}==========================================`);
|
|
13
|
+
console.log(` Agentic Kit Installation Complete`);
|
|
14
|
+
console.log(`==========================================${colors.reset}`);
|
|
15
|
+
console.log('');
|
|
16
|
+
console.log(`${colors.bright}${colors.yellow}Next step: Run the installer${colors.reset}`);
|
|
17
|
+
console.log('');
|
|
18
|
+
console.log(` ${colors.cyan}$ agentic-kit${colors.reset}`);
|
|
19
|
+
console.log('');
|
|
20
|
+
console.log(`${colors.green}==========================================${colors.reset}`);
|
|
21
|
+
console.log('');
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "ampcode",
|
|
3
|
+
"name": "Ampcode",
|
|
4
|
+
"description": "Amplified AI codegen workflows",
|
|
5
|
+
"default_path": "~/.amp",
|
|
6
|
+
"optimization": "amplified-codegen",
|
|
7
|
+
"integration_type": "cli",
|
|
8
|
+
"manifest_format": "ampcode-config",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "amplified-optimized",
|
|
11
|
+
"skill_compatibility": "ampcode-native",
|
|
12
|
+
"resource_format": "enhanced",
|
|
13
|
+
"hook_integration": "ampcode-hooks"
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "claude",
|
|
3
|
+
"name": "Claude Code",
|
|
4
|
+
"description": "Conversational AI development assistant",
|
|
5
|
+
"default_path": "~/.claude",
|
|
6
|
+
"optimization": "conversational-ai",
|
|
7
|
+
"integration_type": "plugin",
|
|
8
|
+
"manifest_format": "claude-plugin",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "claude-conversational",
|
|
11
|
+
"skill_compatibility": "claude-native",
|
|
12
|
+
"resource_format": "markdown",
|
|
13
|
+
"hook_integration": "claude-plugin"
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "droid",
|
|
3
|
+
"name": "Droid",
|
|
4
|
+
"description": "Mobile-focused AI codegen tool",
|
|
5
|
+
"default_path": "~/.factory",
|
|
6
|
+
"optimization": "mobile-codegen",
|
|
7
|
+
"integration_type": "cli",
|
|
8
|
+
"manifest_format": "droid-config",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "mobile-optimized",
|
|
11
|
+
"skill_compatibility": "droid-native",
|
|
12
|
+
"resource_format": "mobile-focused",
|
|
13
|
+
"hook_integration": "droid-hooks"
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"tool": "opencode",
|
|
3
|
+
"name": "Opencode",
|
|
4
|
+
"description": "CLI-based AI codegen tool",
|
|
5
|
+
"default_path": "~/.config/opencode",
|
|
6
|
+
"optimization": "cli-codegen",
|
|
7
|
+
"integration_type": "cli",
|
|
8
|
+
"manifest_format": "opencode-config",
|
|
9
|
+
"supported_variants": ["lite", "standard", "pro"],
|
|
10
|
+
"agent_format": "cli-optimized",
|
|
11
|
+
"skill_compatibility": "cli-native",
|
|
12
|
+
"resource_format": "terminal",
|
|
13
|
+
"hook_integration": "cli-hooks"
|
|
14
|
+
}
|