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,727 @@
|
|
|
1
|
+
# Agentic Kit - Knowledge Base
|
|
2
|
+
|
|
3
|
+
> **Complete reference documentation for the Agentic Kit plugin system**
|
|
4
|
+
|
|
5
|
+
Last Updated: November 2025 | Version: 1.1.0
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Table of Contents
|
|
10
|
+
|
|
11
|
+
1. [Overview](#overview)
|
|
12
|
+
2. [Architecture](#architecture)
|
|
13
|
+
3. [Agents Reference](#agents-reference)
|
|
14
|
+
4. [Skills Reference](#skills-reference)
|
|
15
|
+
5. [Variants Comparison](#variants-comparison)
|
|
16
|
+
6. [Installation & Configuration](#installation--configuration)
|
|
17
|
+
7. [Advanced Usage](#advanced-usage)
|
|
18
|
+
8. [Development Guide](#development-guide)
|
|
19
|
+
9. [Troubleshooting](#troubleshooting)
|
|
20
|
+
10. [FAQ](#faq)
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Overview
|
|
25
|
+
|
|
26
|
+
### What is Agentic Kit?
|
|
27
|
+
|
|
28
|
+
Agentic Kit is a comprehensive plugin for Claude Code that provides:
|
|
29
|
+
|
|
30
|
+
- **13 Specialized AI Agents** for different development roles
|
|
31
|
+
- **14 Powerful Skills** for document generation, design, and automation
|
|
32
|
+
- **3 Variants** (Lite, Standard, Pro) for different use cases
|
|
33
|
+
- **Persistent Session State** - Skills and agents load automatically
|
|
34
|
+
- **Auto-Discovery** - Agents register and become available instantly
|
|
35
|
+
|
|
36
|
+
### Core Concepts
|
|
37
|
+
|
|
38
|
+
**Agents** are specialized AI assistants with specific roles and expertise:
|
|
39
|
+
- Invoked using `@AgentName: [your request]`
|
|
40
|
+
- Each agent has defined capabilities and workflows
|
|
41
|
+
- Agents can collaborate and hand off tasks
|
|
42
|
+
|
|
43
|
+
**Skills** are executable capabilities that agents can use:
|
|
44
|
+
- Document generation (PDF, DOCX, XLSX, PPTX)
|
|
45
|
+
- Design and branding tools
|
|
46
|
+
- Development utilities
|
|
47
|
+
- Testing frameworks
|
|
48
|
+
|
|
49
|
+
**Variants** control which agents and skills are available:
|
|
50
|
+
- **Lite**: Minimal footprint (3 agents, 0 skills)
|
|
51
|
+
- **Standard**: Balanced (13 agents, 8 skills) - Recommended
|
|
52
|
+
- **Pro**: Full feature set (13 agents, 14 skills)
|
|
53
|
+
|
|
54
|
+
---
|
|
55
|
+
|
|
56
|
+
## Architecture
|
|
57
|
+
|
|
58
|
+
### System Design
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
Agentic Kit
|
|
62
|
+
├── .claude-plugin/
|
|
63
|
+
│ ├── plugin.json # Main manifest
|
|
64
|
+
│ ├── plugin-lite.json # Lite variant manifest
|
|
65
|
+
│ ├── plugin-standard.json # Standard variant manifest
|
|
66
|
+
│ ├── plugin-pro.json # Pro variant manifest
|
|
67
|
+
│ └── marketplace.json # Marketplace catalog
|
|
68
|
+
├── agents/ # 13 agent definitions
|
|
69
|
+
├── skills/ # 14 skill implementations
|
|
70
|
+
├── hooks/
|
|
71
|
+
│ ├── register-agents.js # Plugin-load hook
|
|
72
|
+
│ └── session-start.js # Session-start hook (NEW!)
|
|
73
|
+
└── resources/ # Templates, data, workflows
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Plugin Lifecycle
|
|
77
|
+
|
|
78
|
+
1. **Installation**: User installs via Claude Code or npm
|
|
79
|
+
2. **Plugin Load**: `register-agents.js` runs, registers all agents
|
|
80
|
+
3. **Session Start**: `session-start.js` runs every time Claude Code starts
|
|
81
|
+
- Loads variant-specific skills
|
|
82
|
+
- Initializes agents
|
|
83
|
+
- Displays startup banner
|
|
84
|
+
4. **Runtime**: Agents and skills available for use
|
|
85
|
+
5. **Session End**: State persists for next session
|
|
86
|
+
|
|
87
|
+
### Session-Start Hook (New in v1.0.0)
|
|
88
|
+
|
|
89
|
+
Inspired by [obra/superpowers](https://github.com/obra/superpowers), we now auto-load skills on every session start:
|
|
90
|
+
|
|
91
|
+
**Benefits:**
|
|
92
|
+
- ✅ Skills always available (no manual activation)
|
|
93
|
+
- ✅ Consistent experience across sessions
|
|
94
|
+
- ✅ Variant-specific features load automatically
|
|
95
|
+
- ✅ Startup feedback shows what's loaded
|
|
96
|
+
|
|
97
|
+
**How it works:**
|
|
98
|
+
```javascript
|
|
99
|
+
// hooks/session-start.js
|
|
100
|
+
- Loads all skills defined in active variant manifest
|
|
101
|
+
- Registers agents for auto-invocation
|
|
102
|
+
- Displays banner showing agent/skill counts
|
|
103
|
+
- Returns session context
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
## Agents Reference
|
|
109
|
+
|
|
110
|
+
### Core Orchestration Agents
|
|
111
|
+
|
|
112
|
+
#### 1. Master
|
|
113
|
+
**File:** `agents/master.md`
|
|
114
|
+
**ID:** `master`
|
|
115
|
+
**Variants:** All
|
|
116
|
+
|
|
117
|
+
**Purpose:** Central coordination and workflow orchestration
|
|
118
|
+
|
|
119
|
+
**Capabilities:**
|
|
120
|
+
- Route requests to appropriate specialized agents
|
|
121
|
+
- Coordinate multi-agent workflows
|
|
122
|
+
- Provide high-level guidance and help
|
|
123
|
+
- Manage complex multi-step tasks
|
|
124
|
+
|
|
125
|
+
**Example Usage:**
|
|
126
|
+
```
|
|
127
|
+
@Master: help
|
|
128
|
+
@Master: Create a product requirements document for a mobile app
|
|
129
|
+
@Master: Show me available agents
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
#### 2. Orchestrator
|
|
133
|
+
**File:** `agents/orchestrator.md`
|
|
134
|
+
**ID:** `orchestrator`
|
|
135
|
+
**Variants:** All
|
|
136
|
+
|
|
137
|
+
**Purpose:** Workflow management and multi-agent task coordination
|
|
138
|
+
|
|
139
|
+
**Capabilities:**
|
|
140
|
+
- Design multi-agent workflows
|
|
141
|
+
- Sequence complex operations
|
|
142
|
+
- Handle dependencies between tasks
|
|
143
|
+
- Monitor workflow progress
|
|
144
|
+
|
|
145
|
+
**Example Usage:**
|
|
146
|
+
```
|
|
147
|
+
@Orchestrator: Plan a workflow for building a new feature
|
|
148
|
+
@Orchestrator: Coordinate backend and frontend development
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
#### 3. Scrum Master
|
|
152
|
+
**File:** `agents/story-writer.md`
|
|
153
|
+
**ID:** `story-writer`
|
|
154
|
+
**Variants:** All
|
|
155
|
+
|
|
156
|
+
**Purpose:** Agile project management and team coordination
|
|
157
|
+
|
|
158
|
+
**Capabilities:**
|
|
159
|
+
- Create and manage user stories
|
|
160
|
+
- Plan sprints and iterations
|
|
161
|
+
- Facilitate retrospectives
|
|
162
|
+
- Track progress and blockers
|
|
163
|
+
|
|
164
|
+
**Example Usage:**
|
|
165
|
+
```
|
|
166
|
+
@ScrumMaster: Create user stories for the authentication feature
|
|
167
|
+
@ScrumMaster: Plan our next sprint
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
### Product & Requirements Agents
|
|
171
|
+
|
|
172
|
+
#### 4. Product Manager
|
|
173
|
+
**File:** `agents/feature-planner.md`
|
|
174
|
+
**ID:** `feature-planner`
|
|
175
|
+
**Variants:** Standard, Pro
|
|
176
|
+
|
|
177
|
+
**Purpose:** Product strategy, vision, and roadmap planning
|
|
178
|
+
|
|
179
|
+
**Capabilities:**
|
|
180
|
+
- Create Product Requirements Documents (PRDs)
|
|
181
|
+
- Define product vision and strategy
|
|
182
|
+
- Prioritize features and epics
|
|
183
|
+
- Conduct market analysis
|
|
184
|
+
|
|
185
|
+
**Example Usage:**
|
|
186
|
+
```
|
|
187
|
+
@ProductManager: Create a PRD for a task management app
|
|
188
|
+
@ProductManager: Help me prioritize our backlog
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
#### 5. Product Owner
|
|
192
|
+
**File:** `agents/backlog-manager.md`
|
|
193
|
+
**ID:** `backlog-manager`
|
|
194
|
+
**Variants:** Standard, Pro
|
|
195
|
+
|
|
196
|
+
**Purpose:** Backlog management and requirement refinement
|
|
197
|
+
|
|
198
|
+
**Capabilities:**
|
|
199
|
+
- Refine user stories
|
|
200
|
+
- Define acceptance criteria
|
|
201
|
+
- Manage product backlog
|
|
202
|
+
- Validate story completeness
|
|
203
|
+
|
|
204
|
+
**Example Usage:**
|
|
205
|
+
```
|
|
206
|
+
@ProductOwner: Refine this user story with acceptance criteria
|
|
207
|
+
@ProductOwner: Review our backlog for completeness
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
#### 6. Business Analyst
|
|
211
|
+
**File:** `agents/market-researcher.md`
|
|
212
|
+
**ID:** `market-researcher`
|
|
213
|
+
**Variants:** Standard, Pro
|
|
214
|
+
|
|
215
|
+
**Purpose:** Business requirements analysis and strategic insights
|
|
216
|
+
|
|
217
|
+
**Capabilities:**
|
|
218
|
+
- Analyze business requirements
|
|
219
|
+
- Conduct competitive research
|
|
220
|
+
- Document business processes
|
|
221
|
+
- Facilitate stakeholder interviews
|
|
222
|
+
|
|
223
|
+
**Example Usage:**
|
|
224
|
+
```
|
|
225
|
+
@BusinessAnalyst: Analyze the market for expense tracking apps
|
|
226
|
+
@BusinessAnalyst: Document our customer onboarding process
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
### Development Agents
|
|
230
|
+
|
|
231
|
+
#### 7. Full-Stack Developer
|
|
232
|
+
**File:** `agents/code-developer.md`
|
|
233
|
+
**ID:** `code-developer`
|
|
234
|
+
**Variants:** Standard, Pro
|
|
235
|
+
|
|
236
|
+
**Purpose:** Full-stack implementation and code development
|
|
237
|
+
|
|
238
|
+
**Capabilities:**
|
|
239
|
+
- Implement features (frontend + backend)
|
|
240
|
+
- Write tests and debug code
|
|
241
|
+
- Refactor and optimize
|
|
242
|
+
- Follow development best practices
|
|
243
|
+
|
|
244
|
+
**Example Usage:**
|
|
245
|
+
```
|
|
246
|
+
@FullStackDev: Implement the login API endpoint
|
|
247
|
+
@FullStackDev: Write tests for the authentication flow
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
#### 8. Holistic Architect
|
|
251
|
+
**File:** `agents/system-architect.md`
|
|
252
|
+
**ID:** `system-architect`
|
|
253
|
+
**Variants:** Standard, Pro
|
|
254
|
+
|
|
255
|
+
**Purpose:** System architecture and technical design
|
|
256
|
+
|
|
257
|
+
**Capabilities:**
|
|
258
|
+
- Design system architecture
|
|
259
|
+
- Plan microservices
|
|
260
|
+
- Document technical decisions
|
|
261
|
+
- Evaluate technology stacks
|
|
262
|
+
|
|
263
|
+
**Example Usage:**
|
|
264
|
+
```
|
|
265
|
+
@HolisticArchitect: Design a scalable architecture for our platform
|
|
266
|
+
@HolisticArchitect: Recommend a tech stack for our API
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
#### 9. UX Expert
|
|
270
|
+
**File:** `agents/ui-designer.md`
|
|
271
|
+
**ID:** `ui-designer`
|
|
272
|
+
**Variants:** Standard, Pro
|
|
273
|
+
|
|
274
|
+
**Purpose:** User experience and interface design
|
|
275
|
+
|
|
276
|
+
**Capabilities:**
|
|
277
|
+
- Create wireframes and prototypes
|
|
278
|
+
- Design user flows
|
|
279
|
+
- Conduct usability analysis
|
|
280
|
+
- Define interaction patterns
|
|
281
|
+
|
|
282
|
+
**Example Usage:**
|
|
283
|
+
```
|
|
284
|
+
@UXExpert: Create wireframes for the dashboard
|
|
285
|
+
@UXExpert: Design the user onboarding flow
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
#### 10. QA Test Architect
|
|
289
|
+
**File:** `agents/quality-assurance.md`
|
|
290
|
+
**ID:** `quality-assurance`
|
|
291
|
+
**Variants:** Standard, Pro
|
|
292
|
+
|
|
293
|
+
**Purpose:** Quality assurance and testing strategy
|
|
294
|
+
|
|
295
|
+
**Capabilities:**
|
|
296
|
+
- Design test strategies
|
|
297
|
+
- Define test cases
|
|
298
|
+
- Review code quality
|
|
299
|
+
- Assess production readiness
|
|
300
|
+
|
|
301
|
+
**Example Usage:**
|
|
302
|
+
```
|
|
303
|
+
@QATestArchitect: Create a test plan for the payment feature
|
|
304
|
+
@QATestArchitect: Review this code for quality issues
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
### Specialized Workflow Agents
|
|
308
|
+
|
|
309
|
+
#### 11. Create PRD
|
|
310
|
+
**File:** `agents/1-create-prd.md`
|
|
311
|
+
**ID:** `1-create-prd`
|
|
312
|
+
**Variants:** Standard, Pro
|
|
313
|
+
|
|
314
|
+
**Purpose:** Generate Product Requirements Documents
|
|
315
|
+
|
|
316
|
+
**Capabilities:**
|
|
317
|
+
- Structured PRD creation
|
|
318
|
+
- Requirements discovery
|
|
319
|
+
- Feature documentation
|
|
320
|
+
- Stakeholder alignment
|
|
321
|
+
|
|
322
|
+
**Example Usage:**
|
|
323
|
+
```
|
|
324
|
+
@CreatePRD: Generate a PRD for a mobile expense tracker
|
|
325
|
+
```
|
|
326
|
+
|
|
327
|
+
#### 12. Generate Tasks
|
|
328
|
+
**File:** `agents/2-generate-tasks.md`
|
|
329
|
+
**ID:** `2-generate-tasks`
|
|
330
|
+
**Variants:** Standard, Pro
|
|
331
|
+
|
|
332
|
+
**Purpose:** Break down features into implementation tasks
|
|
333
|
+
|
|
334
|
+
**Capabilities:**
|
|
335
|
+
- Convert PRDs to task lists
|
|
336
|
+
- Decompose epics into stories
|
|
337
|
+
- Estimate effort
|
|
338
|
+
- Sequence dependencies
|
|
339
|
+
|
|
340
|
+
**Example Usage:**
|
|
341
|
+
```
|
|
342
|
+
@GenerateTasks: Create tasks from this PRD
|
|
343
|
+
@GenerateTasks: Break down the authentication epic
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
#### 13. Process Task List
|
|
347
|
+
**File:** `agents/3-process-task-list.md`
|
|
348
|
+
**ID:** `3-process-task-list`
|
|
349
|
+
**Variants:** Standard, Pro
|
|
350
|
+
|
|
351
|
+
**Purpose:** Execute and track task lists systematically
|
|
352
|
+
|
|
353
|
+
**Capabilities:**
|
|
354
|
+
- Sequential task execution
|
|
355
|
+
- Progress tracking
|
|
356
|
+
- Commit management
|
|
357
|
+
- Test-first workflow
|
|
358
|
+
|
|
359
|
+
**Example Usage:**
|
|
360
|
+
```
|
|
361
|
+
@ProcessTaskList: Execute this task list
|
|
362
|
+
@ProcessTaskList: Continue from where we left off
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## Skills Reference
|
|
368
|
+
|
|
369
|
+
### Document Generation Skills (Standard & Pro)
|
|
370
|
+
|
|
371
|
+
#### PDF
|
|
372
|
+
**Path:** `skills/pdf/`
|
|
373
|
+
**Variants:** Standard, Pro
|
|
374
|
+
|
|
375
|
+
**Capabilities:**
|
|
376
|
+
- Generate PDF documents
|
|
377
|
+
- Manipulate existing PDFs
|
|
378
|
+
- Extract text and data
|
|
379
|
+
- Merge and split PDFs
|
|
380
|
+
|
|
381
|
+
#### DOCX
|
|
382
|
+
**Path:** `skills/docx/`
|
|
383
|
+
**Variants:** Standard, Pro
|
|
384
|
+
|
|
385
|
+
**Capabilities:**
|
|
386
|
+
- Create Word documents
|
|
387
|
+
- Apply formatting and styles
|
|
388
|
+
- Insert tables and images
|
|
389
|
+
- Generate templates
|
|
390
|
+
|
|
391
|
+
#### XLSX
|
|
392
|
+
**Path:** `skills/xlsx/`
|
|
393
|
+
**Variants:** Standard, Pro
|
|
394
|
+
|
|
395
|
+
**Capabilities:**
|
|
396
|
+
- Create spreadsheets
|
|
397
|
+
- Analyze data
|
|
398
|
+
- Generate charts
|
|
399
|
+
- Apply formulas
|
|
400
|
+
|
|
401
|
+
#### PPTX
|
|
402
|
+
**Path:** `skills/pptx/`
|
|
403
|
+
**Variants:** Standard, Pro
|
|
404
|
+
|
|
405
|
+
**Capabilities:**
|
|
406
|
+
- Create presentations
|
|
407
|
+
- Design slides
|
|
408
|
+
- Insert media
|
|
409
|
+
- Apply themes
|
|
410
|
+
|
|
411
|
+
### Design & Branding Skills (Standard & Pro)
|
|
412
|
+
|
|
413
|
+
#### Canvas Design
|
|
414
|
+
**Path:** `skills/canvas-design/`
|
|
415
|
+
**Variants:** Standard, Pro
|
|
416
|
+
|
|
417
|
+
**Capabilities:**
|
|
418
|
+
- Create visual designs
|
|
419
|
+
- Generate artwork
|
|
420
|
+
- Apply typography
|
|
421
|
+
- Export in multiple formats
|
|
422
|
+
|
|
423
|
+
#### Theme Factory
|
|
424
|
+
**Path:** `skills/theme-factory/`
|
|
425
|
+
**Variants:** Standard, Pro
|
|
426
|
+
|
|
427
|
+
**Capabilities:**
|
|
428
|
+
- Create design themes
|
|
429
|
+
- Apply styling systems
|
|
430
|
+
- Generate color palettes
|
|
431
|
+
- Define component styles
|
|
432
|
+
|
|
433
|
+
#### Brand Guidelines
|
|
434
|
+
**Path:** `skills/brand-guidelines/`
|
|
435
|
+
**Variants:** Standard, Pro
|
|
436
|
+
|
|
437
|
+
**Capabilities:**
|
|
438
|
+
- Define brand identity
|
|
439
|
+
- Apply brand compliance
|
|
440
|
+
- Create style guides
|
|
441
|
+
- Maintain consistency
|
|
442
|
+
|
|
443
|
+
#### Internal Communications
|
|
444
|
+
**Path:** `skills/internal-comms/`
|
|
445
|
+
**Variants:** Standard, Pro
|
|
446
|
+
|
|
447
|
+
**Capabilities:**
|
|
448
|
+
- Create internal documents
|
|
449
|
+
- Generate communication templates
|
|
450
|
+
- Format company materials
|
|
451
|
+
- Apply company branding
|
|
452
|
+
|
|
453
|
+
### Advanced Skills (Pro Only)
|
|
454
|
+
|
|
455
|
+
#### Algorithmic Art
|
|
456
|
+
**Path:** `skills/algorithmic-art/`
|
|
457
|
+
**Variants:** Pro
|
|
458
|
+
|
|
459
|
+
**Capabilities:**
|
|
460
|
+
- Generate generative art
|
|
461
|
+
- Create algorithmic designs
|
|
462
|
+
- Produce procedural graphics
|
|
463
|
+
- Export artwork
|
|
464
|
+
|
|
465
|
+
#### Artifacts Builder
|
|
466
|
+
**Path:** `skills/artifacts-builder/`
|
|
467
|
+
**Variants:** Pro
|
|
468
|
+
|
|
469
|
+
**Capabilities:**
|
|
470
|
+
- Build complex HTML artifacts
|
|
471
|
+
- Create interactive components
|
|
472
|
+
- Generate ShadCN components
|
|
473
|
+
- Bundle for deployment
|
|
474
|
+
|
|
475
|
+
#### MCP Builder
|
|
476
|
+
**Path:** `skills/mcp-builder/`
|
|
477
|
+
**Variants:** Pro
|
|
478
|
+
|
|
479
|
+
**Capabilities:**
|
|
480
|
+
- Create Model Context Protocol servers
|
|
481
|
+
- Define MCP tools and resources
|
|
482
|
+
- Build custom integrations
|
|
483
|
+
- Package MCP servers
|
|
484
|
+
|
|
485
|
+
#### Skill Creator
|
|
486
|
+
**Path:** `skills/skill-creator/`
|
|
487
|
+
**Variants:** Pro
|
|
488
|
+
|
|
489
|
+
**Capabilities:**
|
|
490
|
+
- Create custom skills
|
|
491
|
+
- Define skill interfaces
|
|
492
|
+
- Document skill usage
|
|
493
|
+
- Package for distribution
|
|
494
|
+
|
|
495
|
+
#### WebApp Testing
|
|
496
|
+
**Path:** `skills/webapp-testing/`
|
|
497
|
+
**Variants:** Pro
|
|
498
|
+
|
|
499
|
+
**Capabilities:**
|
|
500
|
+
- Test web applications
|
|
501
|
+
- Run automated tests
|
|
502
|
+
- Validate functionality
|
|
503
|
+
- Generate test reports
|
|
504
|
+
|
|
505
|
+
#### Slack GIF Creator
|
|
506
|
+
**Path:** `skills/slack-gif-creator/`
|
|
507
|
+
**Variants:** Pro
|
|
508
|
+
|
|
509
|
+
**Capabilities:**
|
|
510
|
+
- Create animated GIFs
|
|
511
|
+
- Optimize for Slack
|
|
512
|
+
- Apply branding
|
|
513
|
+
- Export in optimal format
|
|
514
|
+
|
|
515
|
+
---
|
|
516
|
+
|
|
517
|
+
## Variants Comparison
|
|
518
|
+
|
|
519
|
+
### Feature Matrix
|
|
520
|
+
|
|
521
|
+
| Feature | Lite | Standard | Pro |
|
|
522
|
+
|---------|------|----------|-----|
|
|
523
|
+
| **Agents** | 3 | 13 | 13 |
|
|
524
|
+
| **Skills** | 0 | 8 | 14 |
|
|
525
|
+
| **Document Generation** | ❌ | ✅ | ✅ |
|
|
526
|
+
| **Design Tools** | ❌ | ✅ | ✅ |
|
|
527
|
+
| **Advanced Skills** | ❌ | ❌ | ✅ |
|
|
528
|
+
| **Product Management** | ❌ | ✅ | ✅ |
|
|
529
|
+
| **Development Tools** | ❌ | ✅ | ✅ |
|
|
530
|
+
| **Size (unpacked)** | ~2 MB | ~7 MB | ~9.5 MB |
|
|
531
|
+
| **Installation Time** | <1 min | <3 min | <5 min |
|
|
532
|
+
|
|
533
|
+
### Which Variant Should You Choose?
|
|
534
|
+
|
|
535
|
+
**Choose Lite if:**
|
|
536
|
+
- You only need basic agent orchestration
|
|
537
|
+
- Working in resource-constrained environments
|
|
538
|
+
- Building CI/CD pipelines
|
|
539
|
+
- Want minimal dependencies
|
|
540
|
+
|
|
541
|
+
**Choose Standard if:** ⭐ (Recommended)
|
|
542
|
+
- General-purpose development
|
|
543
|
+
- Need document generation (PDF, DOCX, etc.)
|
|
544
|
+
- Product management workflows
|
|
545
|
+
- Content creation
|
|
546
|
+
|
|
547
|
+
**Choose Pro if:**
|
|
548
|
+
- Advanced design work
|
|
549
|
+
- Building custom skills/tools
|
|
550
|
+
- Web app testing
|
|
551
|
+
- Maximum capabilities needed
|
|
552
|
+
|
|
553
|
+
---
|
|
554
|
+
|
|
555
|
+
## Installation & Configuration
|
|
556
|
+
|
|
557
|
+
*See [README.md](README.md) for quick installation*
|
|
558
|
+
|
|
559
|
+
### Advanced Installation
|
|
560
|
+
|
|
561
|
+
#### Custom Marketplace
|
|
562
|
+
|
|
563
|
+
Create your own marketplace catalog:
|
|
564
|
+
|
|
565
|
+
```json
|
|
566
|
+
// .claude-plugin/marketplace.json
|
|
567
|
+
{
|
|
568
|
+
"name": "My Custom Marketplace",
|
|
569
|
+
"plugins": [
|
|
570
|
+
{
|
|
571
|
+
"name": "agentflow-standard",
|
|
572
|
+
"source": "github:amrhas82/agentflow"
|
|
573
|
+
}
|
|
574
|
+
]
|
|
575
|
+
}
|
|
576
|
+
```
|
|
577
|
+
|
|
578
|
+
#### Development Setup
|
|
579
|
+
|
|
580
|
+
Clone and link for development:
|
|
581
|
+
|
|
582
|
+
```bash
|
|
583
|
+
git clone https://github.com/amrhas82/agentflow.git
|
|
584
|
+
cd agentflow
|
|
585
|
+
npm link
|
|
586
|
+
```
|
|
587
|
+
|
|
588
|
+
#### Configuration
|
|
589
|
+
|
|
590
|
+
Variants are configured in manifest files:
|
|
591
|
+
- `.claude-plugin/plugin-lite.json`
|
|
592
|
+
- `.claude-plugin/plugin-standard.json`
|
|
593
|
+
- `.claude-plugin/plugin-pro.json`
|
|
594
|
+
|
|
595
|
+
---
|
|
596
|
+
|
|
597
|
+
## Advanced Usage
|
|
598
|
+
|
|
599
|
+
### Multi-Agent Workflows
|
|
600
|
+
|
|
601
|
+
Chain agents for complex tasks:
|
|
602
|
+
|
|
603
|
+
```
|
|
604
|
+
# Step 1: Create requirements
|
|
605
|
+
@ProductManager: Create a PRD for user authentication
|
|
606
|
+
|
|
607
|
+
# Step 2: Generate tasks
|
|
608
|
+
@GenerateTasks: Break down this PRD into implementation tasks
|
|
609
|
+
|
|
610
|
+
# Step 3: Execute
|
|
611
|
+
@FullStackDev: Implement the first task
|
|
612
|
+
|
|
613
|
+
# Step 4: Test
|
|
614
|
+
@QATestArchitect: Create tests for this implementation
|
|
615
|
+
```
|
|
616
|
+
|
|
617
|
+
### Customization
|
|
618
|
+
|
|
619
|
+
#### Adding a Custom Agent
|
|
620
|
+
|
|
621
|
+
1. Create `agents/my-agent.md`
|
|
622
|
+
2. Add to variant manifest:
|
|
623
|
+
```json
|
|
624
|
+
{
|
|
625
|
+
"id": "my-agent",
|
|
626
|
+
"name": "My Agent",
|
|
627
|
+
"description": "Custom agent description",
|
|
628
|
+
"path": "agents/my-agent.md"
|
|
629
|
+
}
|
|
630
|
+
```
|
|
631
|
+
3. Restart session
|
|
632
|
+
|
|
633
|
+
#### Adding a Custom Skill
|
|
634
|
+
|
|
635
|
+
1. Create `skills/my-skill/SKILL.md`
|
|
636
|
+
2. Implement skill logic
|
|
637
|
+
3. Add to variant manifest
|
|
638
|
+
4. Restart session
|
|
639
|
+
|
|
640
|
+
---
|
|
641
|
+
|
|
642
|
+
## Troubleshooting
|
|
643
|
+
|
|
644
|
+
### Common Issues
|
|
645
|
+
|
|
646
|
+
#### Skills Not Loading
|
|
647
|
+
|
|
648
|
+
**Problem:** Skills don't activate on session start
|
|
649
|
+
|
|
650
|
+
**Solution:**
|
|
651
|
+
- Check `hooks/session-start.js` is in manifest
|
|
652
|
+
- Verify skill paths in variant manifest
|
|
653
|
+
- Restart Claude Code session
|
|
654
|
+
- Check console for errors
|
|
655
|
+
|
|
656
|
+
#### Agent Not Found
|
|
657
|
+
|
|
658
|
+
**Problem:** `@AgentName:` doesn't work
|
|
659
|
+
|
|
660
|
+
**Solution:**
|
|
661
|
+
- Verify agent is in your variant (check manifest)
|
|
662
|
+
- Check agent file exists in `agents/` directory
|
|
663
|
+
- Ensure `register-agents.js` hook ran
|
|
664
|
+
- Try reloading plugin
|
|
665
|
+
|
|
666
|
+
#### Variant Confusion
|
|
667
|
+
|
|
668
|
+
**Problem:** Wrong skills/agents available
|
|
669
|
+
|
|
670
|
+
**Solution:**
|
|
671
|
+
- Check which variant you installed
|
|
672
|
+
- Reinstall with correct variant
|
|
673
|
+
- Verify manifest file being used
|
|
674
|
+
|
|
675
|
+
### Debug Mode
|
|
676
|
+
|
|
677
|
+
Enable verbose logging:
|
|
678
|
+
```bash
|
|
679
|
+
# In session-start.js, set:
|
|
680
|
+
DEBUG=true
|
|
681
|
+
```
|
|
682
|
+
|
|
683
|
+
---
|
|
684
|
+
|
|
685
|
+
## FAQ
|
|
686
|
+
|
|
687
|
+
**Q: Can I use multiple variants simultaneously?**
|
|
688
|
+
A: No, only one variant is active per installation. Reinstall to switch variants.
|
|
689
|
+
|
|
690
|
+
**Q: Do skills persist across sessions?**
|
|
691
|
+
A: Yes! The `session-start` hook loads skills automatically.
|
|
692
|
+
|
|
693
|
+
**Q: Can I create custom agents?**
|
|
694
|
+
A: Yes! Add markdown files to `agents/` and update the manifest.
|
|
695
|
+
|
|
696
|
+
**Q: How do I update to the latest version?**
|
|
697
|
+
A: `npm update agentflow` or reinstall via Claude Code.
|
|
698
|
+
|
|
699
|
+
**Q: Is there a Pro trial?**
|
|
700
|
+
A: All variants are free and open-source. Install Pro to try it.
|
|
701
|
+
|
|
702
|
+
**Q: Can agents collaborate?**
|
|
703
|
+
A: Yes! Agents can hand off tasks and work together.
|
|
704
|
+
|
|
705
|
+
**Q: What's the difference between skills and agents?**
|
|
706
|
+
A: Agents are AI assistants with roles. Skills are executable tools agents can use.
|
|
707
|
+
|
|
708
|
+
---
|
|
709
|
+
|
|
710
|
+
## Resources
|
|
711
|
+
|
|
712
|
+
- **GitHub:** https://github.com/amrhas82/agentflow
|
|
713
|
+
- **npm:** https://www.npmjs.com/package/agentflow
|
|
714
|
+
- **Issues:** https://github.com/amrhas82/agentflow/issues
|
|
715
|
+
- **Detailed Docs:**
|
|
716
|
+
- [AGENTS.md](AGENTS.md) - Complete agent directory
|
|
717
|
+
- [SKILLS.md](SKILLS.md) - Complete skill reference
|
|
718
|
+
- [ARCHITECTURE.md](ARCHITECTURE.md) - Technical architecture
|
|
719
|
+
- [CONTRIBUTING.md](CONTRIBUTING.md) - Contribution guidelines
|
|
720
|
+
- [TROUBLESHOOTING.md](../TROUBLESHOOTING.md) - Detailed troubleshooting
|
|
721
|
+
- [PUBLISHING.md](PUBLISHING.md) - Publishing guide
|
|
722
|
+
|
|
723
|
+
---
|
|
724
|
+
|
|
725
|
+
**Last Updated:** November 2025
|
|
726
|
+
**Version:** 1.1.0
|
|
727
|
+
**Maintainer:** amrhas82
|