omgkit 2.9.1 → 2.10.1
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/README.md +48 -1
- package/package.json +1 -1
- package/plugin/commands/workflow/1000x-innovation.md +61 -0
- package/plugin/commands/workflow/100x-architecture.md +60 -0
- package/plugin/commands/workflow/10x-improvement.md +63 -0
- package/plugin/commands/workflow/agent-development.md +60 -0
- package/plugin/commands/workflow/api-design.md +61 -0
- package/plugin/commands/workflow/api-testing.md +61 -0
- package/plugin/commands/workflow/authentication.md +60 -0
- package/plugin/commands/workflow/best-practices.md +61 -0
- package/plugin/commands/workflow/bug-fix.md +61 -0
- package/plugin/commands/workflow/code-review.md +52 -0
- package/plugin/commands/workflow/feature.md +73 -0
- package/plugin/commands/workflow/fine-tuning.md +60 -0
- package/plugin/commands/workflow/full-feature.md +70 -0
- package/plugin/commands/workflow/marketing.md +53 -0
- package/plugin/commands/workflow/migration.md +60 -0
- package/plugin/commands/workflow/model-evaluation.md +59 -0
- package/plugin/commands/workflow/optimization.md +60 -0
- package/plugin/commands/workflow/penetration-testing.md +60 -0
- package/plugin/commands/workflow/performance-optimization.md +60 -0
- package/plugin/commands/workflow/prompt-engineering.md +51 -0
- package/plugin/commands/workflow/rag-development.md +79 -0
- package/plugin/commands/workflow/refactor.md +59 -0
- package/plugin/commands/workflow/schema-design.md +70 -0
- package/plugin/commands/workflow/security-audit.md +61 -0
- package/plugin/commands/workflow/sprint-execution.md +65 -0
- package/plugin/commands/workflow/sprint-retrospective.md +61 -0
- package/plugin/commands/workflow/sprint-setup.md +64 -0
- package/plugin/commands/workflow/technical-docs.md +52 -0
- package/plugin/commands/workflow/technology-research.md +61 -0
- package/plugin/workflows/ai-engineering/agent-development.md +240 -0
- package/plugin/workflows/ai-engineering/fine-tuning.md +212 -0
- package/plugin/workflows/ai-engineering/model-evaluation.md +203 -0
- package/plugin/workflows/ai-engineering/prompt-engineering.md +192 -0
- package/plugin/workflows/ai-engineering/rag-development.md +203 -0
- package/plugin/workflows/api/api-design.md +152 -0
- package/plugin/workflows/api/api-testing.md +152 -0
- package/plugin/workflows/content/marketing.md +118 -0
- package/plugin/workflows/content/technical-docs.md +146 -0
- package/plugin/workflows/database/migration.md +153 -0
- package/plugin/workflows/database/optimization.md +136 -0
- package/plugin/workflows/database/schema-design.md +148 -0
- package/plugin/workflows/development/bug-fix.md +159 -0
- package/plugin/workflows/development/code-review.md +119 -0
- package/plugin/workflows/development/feature.md +171 -0
- package/plugin/workflows/development/refactor.md +155 -0
- package/plugin/workflows/fullstack/authentication.md +153 -0
- package/plugin/workflows/fullstack/full-feature.md +217 -0
- package/plugin/workflows/omega/1000x-innovation.md +167 -0
- package/plugin/workflows/omega/100x-architecture.md +150 -0
- package/plugin/workflows/omega/10x-improvement.md +228 -0
- package/plugin/workflows/quality/performance-optimization.md +157 -0
- package/plugin/workflows/research/best-practices.md +140 -0
- package/plugin/workflows/research/technology-research.md +130 -0
- package/plugin/workflows/security/penetration-testing.md +150 -0
- package/plugin/workflows/security/security-audit.md +176 -0
- package/plugin/workflows/sprint/sprint-execution.md +168 -0
- package/plugin/workflows/sprint/sprint-retrospective.md +168 -0
- package/plugin/workflows/sprint/sprint-setup.md +153 -0
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
|
|
9
9
|
> **AI Team System for Claude Code**
|
|
10
|
-
> 23 Agents • 58 Commands • 88 Skills • 10 Modes
|
|
10
|
+
> 23 Agents • 58 Commands • 29 Workflows • 88 Skills • 10 Modes
|
|
11
11
|
> *"Think Omega. Build Omega. Be Omega."*
|
|
12
12
|
|
|
13
13
|
OMGKIT transforms Claude Code into an autonomous AI development team with sprint management, specialized agents, and Omega-level thinking for 10x-1000x productivity improvements.
|
|
@@ -18,6 +18,7 @@ OMGKIT transforms Claude Code into an autonomous AI development team with sprint
|
|
|
18
18
|
|-----------|-------|-------------|
|
|
19
19
|
| **Agents** | 23 | Specialized AI team members |
|
|
20
20
|
| **Commands** | 58 | Slash commands for every task |
|
|
21
|
+
| **Workflows** | 29 | Complete development processes |
|
|
21
22
|
| **Skills** | 88 | Domain expertise modules |
|
|
22
23
|
| **Modes** | 10 | Behavioral configurations |
|
|
23
24
|
| **Sprint Management** | ✅ | Vision, backlog, team autonomy |
|
|
@@ -163,6 +164,52 @@ After installation, use these commands in Claude Code:
|
|
|
163
164
|
/team:status # Show team activity
|
|
164
165
|
```
|
|
165
166
|
|
|
167
|
+
## 📋 Workflows (29)
|
|
168
|
+
|
|
169
|
+
Workflows are orchestrated sequences of agents, commands, and skills that guide complete development processes.
|
|
170
|
+
|
|
171
|
+
### Development
|
|
172
|
+
| Workflow | Description |
|
|
173
|
+
|----------|-------------|
|
|
174
|
+
| `feature` | Complete feature development from planning to PR |
|
|
175
|
+
| `bug-fix` | Systematic debugging and resolution |
|
|
176
|
+
| `refactor` | Code improvement and restructuring |
|
|
177
|
+
| `code-review` | Comprehensive code review |
|
|
178
|
+
|
|
179
|
+
### AI Engineering
|
|
180
|
+
| Workflow | Description |
|
|
181
|
+
|----------|-------------|
|
|
182
|
+
| `rag-development` | Build complete RAG systems |
|
|
183
|
+
| `model-evaluation` | AI model evaluation pipeline |
|
|
184
|
+
| `prompt-engineering` | Systematic prompt optimization |
|
|
185
|
+
| `agent-development` | Build AI agents |
|
|
186
|
+
| `fine-tuning` | Model fine-tuning workflow |
|
|
187
|
+
|
|
188
|
+
### Omega ⭐
|
|
189
|
+
| Workflow | Description |
|
|
190
|
+
|----------|-------------|
|
|
191
|
+
| `10x-improvement` | Tactical enhancements |
|
|
192
|
+
| `100x-architecture` | System redesign |
|
|
193
|
+
| `1000x-innovation` | Industry transformation |
|
|
194
|
+
|
|
195
|
+
### Sprint Management
|
|
196
|
+
| Workflow | Description |
|
|
197
|
+
|----------|-------------|
|
|
198
|
+
| `sprint-setup` | Initialize and plan sprints |
|
|
199
|
+
| `sprint-execution` | Execute sprint tasks |
|
|
200
|
+
| `sprint-retrospective` | Review and improve |
|
|
201
|
+
|
|
202
|
+
### Other Categories
|
|
203
|
+
- **Security**: `security-audit`, `penetration-testing`
|
|
204
|
+
- **Database**: `schema-design`, `migration`, `optimization`
|
|
205
|
+
- **API**: `api-design`, `api-testing`
|
|
206
|
+
- **Full Stack**: `full-feature`, `authentication`
|
|
207
|
+
- **Content**: `technical-docs`, `marketing`
|
|
208
|
+
- **Research**: `technology-research`, `best-practices`
|
|
209
|
+
- **Quality**: `performance-optimization`
|
|
210
|
+
|
|
211
|
+
Use workflows with: `/workflow:<name> "description"`
|
|
212
|
+
|
|
166
213
|
## 🎭 Modes (10)
|
|
167
214
|
|
|
168
215
|
| Mode | Description |
|
package/package.json
CHANGED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Industry-transforming innovation workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <innovation area>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 1000x Innovation Workflow
|
|
8
|
+
|
|
9
|
+
Innovate: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Vision Creation
|
|
14
|
+
**Agent:** @oracle
|
|
15
|
+
**Command:** `/omega:1000x "$ARGUMENTS"`
|
|
16
|
+
|
|
17
|
+
- Envision ideal future state
|
|
18
|
+
- Identify industry constraints
|
|
19
|
+
- Question fundamental assumptions
|
|
20
|
+
- Dream without limits
|
|
21
|
+
|
|
22
|
+
### Step 2: Research
|
|
23
|
+
**Agent:** @researcher
|
|
24
|
+
|
|
25
|
+
- Study emerging technologies
|
|
26
|
+
- Analyze market trends
|
|
27
|
+
- Research adjacent industries
|
|
28
|
+
- Identify convergence opportunities
|
|
29
|
+
|
|
30
|
+
### Step 3: Innovation Design
|
|
31
|
+
**Agent:** @architect
|
|
32
|
+
|
|
33
|
+
- Design breakthrough solution
|
|
34
|
+
- Apply leverage multiplication
|
|
35
|
+
- Create scalable architecture
|
|
36
|
+
- Plan ecosystem effects
|
|
37
|
+
|
|
38
|
+
### Step 4: Validation
|
|
39
|
+
**Agent:** @planner
|
|
40
|
+
|
|
41
|
+
- Validate feasibility
|
|
42
|
+
- Identify critical experiments
|
|
43
|
+
- Design MVP approach
|
|
44
|
+
- Plan iteration cycles
|
|
45
|
+
|
|
46
|
+
### Step 5: Roadmap
|
|
47
|
+
**Agent:** @planner
|
|
48
|
+
|
|
49
|
+
- Create long-term roadmap
|
|
50
|
+
- Define milestones
|
|
51
|
+
- Plan resource needs
|
|
52
|
+
- Identify partnerships
|
|
53
|
+
|
|
54
|
+
## Progress Tracking
|
|
55
|
+
- [ ] Vision created
|
|
56
|
+
- [ ] Research complete
|
|
57
|
+
- [ ] Innovation designed
|
|
58
|
+
- [ ] Feasibility validated
|
|
59
|
+
- [ ] Roadmap defined
|
|
60
|
+
|
|
61
|
+
Execute each step. Think beyond current constraints.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: System redesign for 100x improvements
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <system to redesign>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 100x Architecture Workflow
|
|
8
|
+
|
|
9
|
+
Redesign for 100x: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: System Analysis
|
|
14
|
+
**Agent:** @architect
|
|
15
|
+
**Command:** `/omega:100x "$ARGUMENTS"`
|
|
16
|
+
|
|
17
|
+
- Map current architecture
|
|
18
|
+
- Identify fundamental limitations
|
|
19
|
+
- Analyze scaling constraints
|
|
20
|
+
- Document technical debt
|
|
21
|
+
|
|
22
|
+
### Step 2: Paradigm Exploration
|
|
23
|
+
**Agent:** @oracle
|
|
24
|
+
|
|
25
|
+
- Question assumptions
|
|
26
|
+
- Research alternatives
|
|
27
|
+
- Study industry leaders
|
|
28
|
+
- Identify paradigm shifts
|
|
29
|
+
|
|
30
|
+
### Step 3: Architecture Design
|
|
31
|
+
**Agent:** @architect
|
|
32
|
+
|
|
33
|
+
- Design new architecture
|
|
34
|
+
- Apply Omega principles
|
|
35
|
+
- Create ADRs
|
|
36
|
+
- Plan migration path
|
|
37
|
+
|
|
38
|
+
### Step 4: Proof of Concept
|
|
39
|
+
**Agent:** @fullstack-developer
|
|
40
|
+
|
|
41
|
+
- Build minimal PoC
|
|
42
|
+
- Validate assumptions
|
|
43
|
+
- Measure improvements
|
|
44
|
+
- Identify risks
|
|
45
|
+
|
|
46
|
+
### Step 5: Migration Planning
|
|
47
|
+
**Agent:** @planner
|
|
48
|
+
|
|
49
|
+
- Create phased migration plan
|
|
50
|
+
- Define rollback strategies
|
|
51
|
+
- Plan resource allocation
|
|
52
|
+
|
|
53
|
+
## Progress Tracking
|
|
54
|
+
- [ ] System analyzed
|
|
55
|
+
- [ ] Paradigm shift identified
|
|
56
|
+
- [ ] Architecture designed
|
|
57
|
+
- [ ] PoC validated
|
|
58
|
+
- [ ] Migration planned
|
|
59
|
+
|
|
60
|
+
Execute each step. Aim for 100x improvement potential.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Find 10x tactical improvements using Omega thinking
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <area to improve>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 10x Improvement Workflow
|
|
8
|
+
|
|
9
|
+
Find 10x improvements for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Current State Analysis
|
|
14
|
+
**Agent:** @oracle
|
|
15
|
+
**Command:** `/omega:10x "$ARGUMENTS"`
|
|
16
|
+
|
|
17
|
+
- Analyze current implementation
|
|
18
|
+
- Identify bottlenecks
|
|
19
|
+
- Measure baseline metrics
|
|
20
|
+
- Document pain points
|
|
21
|
+
|
|
22
|
+
### Step 2: Omega Thinking
|
|
23
|
+
**Agent:** @oracle
|
|
24
|
+
|
|
25
|
+
Apply 7 Omega thinking modes:
|
|
26
|
+
- 🔭 Telescopic: Big picture view
|
|
27
|
+
- 🔬 Microscopic: First principles
|
|
28
|
+
- ↔️ Lateral: Different angles
|
|
29
|
+
- 🔄 Inversion: Learn from failures
|
|
30
|
+
- ⏳ Temporal: Time dimension
|
|
31
|
+
- 🕸️ Systemic: Interconnections
|
|
32
|
+
- ⚛️ Quantum: Multiple possibilities
|
|
33
|
+
|
|
34
|
+
### Step 3: Opportunity Ranking
|
|
35
|
+
**Agent:** @planner
|
|
36
|
+
|
|
37
|
+
- Score opportunities by impact
|
|
38
|
+
- Assess implementation effort
|
|
39
|
+
- Prioritize quick wins
|
|
40
|
+
- Create roadmap
|
|
41
|
+
|
|
42
|
+
### Step 4: Implementation
|
|
43
|
+
**Agent:** @fullstack-developer
|
|
44
|
+
|
|
45
|
+
- Implement top improvements
|
|
46
|
+
- Measure impact
|
|
47
|
+
- Iterate based on results
|
|
48
|
+
|
|
49
|
+
### Step 5: Validation
|
|
50
|
+
**Agent:** @tester
|
|
51
|
+
|
|
52
|
+
- Verify 10x improvement
|
|
53
|
+
- Document results
|
|
54
|
+
- Create case study
|
|
55
|
+
|
|
56
|
+
## Progress Tracking
|
|
57
|
+
- [ ] Current state analyzed
|
|
58
|
+
- [ ] Omega thinking applied
|
|
59
|
+
- [ ] Opportunities ranked
|
|
60
|
+
- [ ] Improvements implemented
|
|
61
|
+
- [ ] 10x validated
|
|
62
|
+
|
|
63
|
+
Execute each step. Aim for 10x improvement in key metrics.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Build AI agents with tool use and planning
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <agent description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Agent Development Workflow
|
|
8
|
+
|
|
9
|
+
Build agent: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Agent Design
|
|
14
|
+
**Agent:** @architect
|
|
15
|
+
|
|
16
|
+
- Define agent capabilities
|
|
17
|
+
- Design tool interfaces
|
|
18
|
+
- Plan memory system
|
|
19
|
+
- Architecture decisions
|
|
20
|
+
|
|
21
|
+
### Step 2: Tool Implementation
|
|
22
|
+
**Agent:** @fullstack-developer
|
|
23
|
+
|
|
24
|
+
- Implement agent tools
|
|
25
|
+
- Create tool schemas
|
|
26
|
+
- Add error handling
|
|
27
|
+
- Test tool functions
|
|
28
|
+
|
|
29
|
+
### Step 3: Agent Logic
|
|
30
|
+
**Agent:** @fullstack-developer
|
|
31
|
+
|
|
32
|
+
- Implement planning strategy (ReAct, Plan-and-Execute)
|
|
33
|
+
- Add memory management
|
|
34
|
+
- Create execution loop
|
|
35
|
+
- Handle failures
|
|
36
|
+
|
|
37
|
+
### Step 4: Testing
|
|
38
|
+
**Agent:** @tester
|
|
39
|
+
|
|
40
|
+
- Unit test tools
|
|
41
|
+
- Integration test agent
|
|
42
|
+
- Stress testing
|
|
43
|
+
- Edge case validation
|
|
44
|
+
|
|
45
|
+
### Step 5: Evaluation
|
|
46
|
+
**Agent:** @tester
|
|
47
|
+
|
|
48
|
+
- Measure task completion
|
|
49
|
+
- Evaluate efficiency
|
|
50
|
+
- Benchmark performance
|
|
51
|
+
- Compare baselines
|
|
52
|
+
|
|
53
|
+
## Progress Tracking
|
|
54
|
+
- [ ] Agent designed
|
|
55
|
+
- [ ] Tools implemented
|
|
56
|
+
- [ ] Agent logic complete
|
|
57
|
+
- [ ] Testing passed
|
|
58
|
+
- [ ] Evaluation done
|
|
59
|
+
|
|
60
|
+
Execute each step sequentially. Show progress after each step.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Design RESTful or GraphQL APIs
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <API description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# API Design Workflow
|
|
8
|
+
|
|
9
|
+
Design API for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Requirements
|
|
14
|
+
**Agent:** @api-designer
|
|
15
|
+
|
|
16
|
+
- Gather API requirements
|
|
17
|
+
- Identify consumers
|
|
18
|
+
- Define use cases
|
|
19
|
+
- Document constraints
|
|
20
|
+
|
|
21
|
+
### Step 2: Resource Design
|
|
22
|
+
**Agent:** @api-designer
|
|
23
|
+
|
|
24
|
+
- Define resources
|
|
25
|
+
- Design endpoints
|
|
26
|
+
- Plan versioning
|
|
27
|
+
- Document conventions
|
|
28
|
+
|
|
29
|
+
### Step 3: Schema Design
|
|
30
|
+
**Agent:** @api-designer
|
|
31
|
+
**Command:** `/quality:api-gen`
|
|
32
|
+
|
|
33
|
+
- Create OpenAPI spec
|
|
34
|
+
- Define request/response schemas
|
|
35
|
+
- Document error codes
|
|
36
|
+
- Add examples
|
|
37
|
+
|
|
38
|
+
### Step 4: Implementation
|
|
39
|
+
**Agent:** @fullstack-developer
|
|
40
|
+
|
|
41
|
+
- Implement endpoints
|
|
42
|
+
- Add validation
|
|
43
|
+
- Handle errors
|
|
44
|
+
- Write middleware
|
|
45
|
+
|
|
46
|
+
### Step 5: Documentation
|
|
47
|
+
**Agent:** @docs-manager
|
|
48
|
+
|
|
49
|
+
- Generate API docs
|
|
50
|
+
- Add usage examples
|
|
51
|
+
- Create SDKs
|
|
52
|
+
- Publish docs
|
|
53
|
+
|
|
54
|
+
## Progress Tracking
|
|
55
|
+
- [ ] Requirements gathered
|
|
56
|
+
- [ ] Resources designed
|
|
57
|
+
- [ ] Schemas defined
|
|
58
|
+
- [ ] Implemented
|
|
59
|
+
- [ ] Documented
|
|
60
|
+
|
|
61
|
+
Execute each step. Create developer-friendly API.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Comprehensive API testing workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <API to test>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# API Testing Workflow
|
|
8
|
+
|
|
9
|
+
Test API: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Test Planning
|
|
14
|
+
**Agent:** @tester
|
|
15
|
+
|
|
16
|
+
- Review API spec
|
|
17
|
+
- Identify test cases
|
|
18
|
+
- Plan coverage
|
|
19
|
+
- Set up environment
|
|
20
|
+
|
|
21
|
+
### Step 2: Functional Testing
|
|
22
|
+
**Agent:** @tester
|
|
23
|
+
**Command:** `/dev:test`
|
|
24
|
+
|
|
25
|
+
- Test all endpoints
|
|
26
|
+
- Verify responses
|
|
27
|
+
- Check error handling
|
|
28
|
+
- Test edge cases
|
|
29
|
+
|
|
30
|
+
### Step 3: Contract Testing
|
|
31
|
+
**Agent:** @tester
|
|
32
|
+
|
|
33
|
+
- Validate against schema
|
|
34
|
+
- Check backwards compatibility
|
|
35
|
+
- Test versioning
|
|
36
|
+
- Verify contracts
|
|
37
|
+
|
|
38
|
+
### Step 4: Performance Testing
|
|
39
|
+
**Agent:** @tester
|
|
40
|
+
|
|
41
|
+
- Load testing
|
|
42
|
+
- Stress testing
|
|
43
|
+
- Measure latency
|
|
44
|
+
- Identify bottlenecks
|
|
45
|
+
|
|
46
|
+
### Step 5: Security Testing
|
|
47
|
+
**Agent:** @security-auditor
|
|
48
|
+
|
|
49
|
+
- Authentication tests
|
|
50
|
+
- Authorization tests
|
|
51
|
+
- Input validation
|
|
52
|
+
- Security headers
|
|
53
|
+
|
|
54
|
+
## Progress Tracking
|
|
55
|
+
- [ ] Tests planned
|
|
56
|
+
- [ ] Functional tests pass
|
|
57
|
+
- [ ] Contracts validated
|
|
58
|
+
- [ ] Performance tested
|
|
59
|
+
- [ ] Security verified
|
|
60
|
+
|
|
61
|
+
Execute thoroughly. API reliability matters.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Implement secure authentication system
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <auth requirements>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Authentication Workflow
|
|
8
|
+
|
|
9
|
+
Implement auth: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Auth Design
|
|
14
|
+
**Agent:** @security-auditor
|
|
15
|
+
|
|
16
|
+
- Choose auth method (JWT, sessions, OAuth)
|
|
17
|
+
- Design token strategy
|
|
18
|
+
- Plan security measures
|
|
19
|
+
- Document requirements
|
|
20
|
+
|
|
21
|
+
### Step 2: Backend Auth
|
|
22
|
+
**Agent:** @fullstack-developer
|
|
23
|
+
|
|
24
|
+
- Implement auth endpoints
|
|
25
|
+
- Password hashing (bcrypt/argon2)
|
|
26
|
+
- Token generation
|
|
27
|
+
- Session management
|
|
28
|
+
|
|
29
|
+
### Step 3: Frontend Auth
|
|
30
|
+
**Agent:** @fullstack-developer
|
|
31
|
+
|
|
32
|
+
- Login/register forms
|
|
33
|
+
- Token storage
|
|
34
|
+
- Protected routes
|
|
35
|
+
- Auth state management
|
|
36
|
+
|
|
37
|
+
### Step 4: Security Hardening
|
|
38
|
+
**Agent:** @security-auditor
|
|
39
|
+
|
|
40
|
+
- Rate limiting
|
|
41
|
+
- CSRF protection
|
|
42
|
+
- XSS prevention
|
|
43
|
+
- Secure headers
|
|
44
|
+
|
|
45
|
+
### Step 5: Testing
|
|
46
|
+
**Agent:** @tester
|
|
47
|
+
|
|
48
|
+
- Auth flow tests
|
|
49
|
+
- Security tests
|
|
50
|
+
- Edge cases
|
|
51
|
+
- Token expiry
|
|
52
|
+
|
|
53
|
+
## Progress Tracking
|
|
54
|
+
- [ ] Auth designed
|
|
55
|
+
- [ ] Backend implemented
|
|
56
|
+
- [ ] Frontend implemented
|
|
57
|
+
- [ ] Security hardened
|
|
58
|
+
- [ ] Tests passing
|
|
59
|
+
|
|
60
|
+
Execute carefully. Security is critical.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Research and document best practices
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob, WebSearch, WebFetch
|
|
4
|
+
argument-hint: <topic for best practices>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Best Practices Workflow
|
|
8
|
+
|
|
9
|
+
Research best practices for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Current State
|
|
14
|
+
**Agent:** @researcher
|
|
15
|
+
|
|
16
|
+
- Analyze current practices
|
|
17
|
+
- Identify gaps
|
|
18
|
+
- Document issues
|
|
19
|
+
- Set improvement goals
|
|
20
|
+
|
|
21
|
+
### Step 2: Research
|
|
22
|
+
**Agent:** @researcher
|
|
23
|
+
**Command:** `/planning:research "best practices $ARGUMENTS"`
|
|
24
|
+
|
|
25
|
+
- Industry standards
|
|
26
|
+
- Expert recommendations
|
|
27
|
+
- Case studies
|
|
28
|
+
- Common patterns
|
|
29
|
+
|
|
30
|
+
### Step 3: Synthesis
|
|
31
|
+
**Agent:** @oracle
|
|
32
|
+
|
|
33
|
+
- Synthesize findings
|
|
34
|
+
- Adapt to context
|
|
35
|
+
- Prioritize practices
|
|
36
|
+
- Create guidelines
|
|
37
|
+
|
|
38
|
+
### Step 4: Documentation
|
|
39
|
+
**Agent:** @docs-manager
|
|
40
|
+
|
|
41
|
+
- Create style guide
|
|
42
|
+
- Document patterns
|
|
43
|
+
- Add examples
|
|
44
|
+
- Create checklists
|
|
45
|
+
|
|
46
|
+
### Step 5: Implementation
|
|
47
|
+
**Agent:** @planner
|
|
48
|
+
|
|
49
|
+
- Plan adoption
|
|
50
|
+
- Create training
|
|
51
|
+
- Set up enforcement
|
|
52
|
+
- Track compliance
|
|
53
|
+
|
|
54
|
+
## Progress Tracking
|
|
55
|
+
- [ ] Current state analyzed
|
|
56
|
+
- [ ] Research complete
|
|
57
|
+
- [ ] Guidelines synthesized
|
|
58
|
+
- [ ] Documentation done
|
|
59
|
+
- [ ] Implementation planned
|
|
60
|
+
|
|
61
|
+
Execute for continuous improvement.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Systematic debugging and bug resolution workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <bug description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Bug Fix Workflow
|
|
8
|
+
|
|
9
|
+
Fix bug: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Bug Analysis
|
|
14
|
+
**Agent:** @debugger
|
|
15
|
+
|
|
16
|
+
- Reproduce the bug
|
|
17
|
+
- Identify symptoms
|
|
18
|
+
- Gather error logs
|
|
19
|
+
- Document reproduction steps
|
|
20
|
+
|
|
21
|
+
### Step 2: Root Cause Investigation
|
|
22
|
+
**Agent:** @debugger
|
|
23
|
+
**Command:** `/dev:fix-hard "$ARGUMENTS"`
|
|
24
|
+
|
|
25
|
+
- Trace code execution
|
|
26
|
+
- Identify root cause
|
|
27
|
+
- Document findings
|
|
28
|
+
- Propose fix approach
|
|
29
|
+
|
|
30
|
+
### Step 3: Fix Implementation
|
|
31
|
+
**Agent:** @fullstack-developer
|
|
32
|
+
|
|
33
|
+
- Implement the fix
|
|
34
|
+
- Handle edge cases
|
|
35
|
+
- Add defensive code
|
|
36
|
+
- Update documentation
|
|
37
|
+
|
|
38
|
+
### Step 4: Regression Testing
|
|
39
|
+
**Agent:** @tester
|
|
40
|
+
**Command:** `/dev:test`
|
|
41
|
+
|
|
42
|
+
- Write test for the bug
|
|
43
|
+
- Ensure fix doesn't break existing tests
|
|
44
|
+
- Add edge case tests
|
|
45
|
+
- Verify fix works
|
|
46
|
+
|
|
47
|
+
### Step 5: Code Review & Commit
|
|
48
|
+
**Agent:** @code-reviewer, @git-manager
|
|
49
|
+
|
|
50
|
+
- Review the fix
|
|
51
|
+
- Verify completeness
|
|
52
|
+
- Commit with reference to bug
|
|
53
|
+
|
|
54
|
+
## Progress Tracking
|
|
55
|
+
- [ ] Step 1: Bug analyzed and reproduced
|
|
56
|
+
- [ ] Step 2: Root cause identified
|
|
57
|
+
- [ ] Step 3: Fix implemented
|
|
58
|
+
- [ ] Step 4: Tests passing
|
|
59
|
+
- [ ] Step 5: Reviewed and committed
|
|
60
|
+
|
|
61
|
+
Execute each step sequentially. Show progress after each step.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Comprehensive code review workflow
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob
|
|
4
|
+
argument-hint: <file or directory to review>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Code Review Workflow
|
|
8
|
+
|
|
9
|
+
Review: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Code Analysis
|
|
14
|
+
**Agent:** @code-reviewer
|
|
15
|
+
**Command:** `/dev:review $ARGUMENTS`
|
|
16
|
+
|
|
17
|
+
- Review code quality
|
|
18
|
+
- Check naming conventions
|
|
19
|
+
- Verify code structure
|
|
20
|
+
- Assess complexity
|
|
21
|
+
|
|
22
|
+
### Step 2: Security Review
|
|
23
|
+
**Agent:** @security-auditor
|
|
24
|
+
**Command:** `/quality:security-scan`
|
|
25
|
+
|
|
26
|
+
- Check for vulnerabilities
|
|
27
|
+
- OWASP Top 10 review
|
|
28
|
+
- Input validation check
|
|
29
|
+
- Authentication/authorization review
|
|
30
|
+
|
|
31
|
+
### Step 3: Test Review
|
|
32
|
+
**Agent:** @tester
|
|
33
|
+
|
|
34
|
+
- Review test coverage
|
|
35
|
+
- Check test quality
|
|
36
|
+
- Identify missing tests
|
|
37
|
+
- Verify edge cases
|
|
38
|
+
|
|
39
|
+
### Step 4: Documentation
|
|
40
|
+
**Agent:** @code-reviewer
|
|
41
|
+
|
|
42
|
+
- Compile review findings
|
|
43
|
+
- Prioritize issues
|
|
44
|
+
- Create actionable feedback
|
|
45
|
+
|
|
46
|
+
## Progress Tracking
|
|
47
|
+
- [ ] Step 1: Code quality reviewed
|
|
48
|
+
- [ ] Step 2: Security reviewed
|
|
49
|
+
- [ ] Step 3: Tests reviewed
|
|
50
|
+
- [ ] Step 4: Review documented
|
|
51
|
+
|
|
52
|
+
Execute each step. Compile comprehensive review report.
|