omgkit 2.10.0 → 2.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/plugin/agents/autonomous-orchestrator.yaml +215 -0
- package/plugin/commands/auto/approve.md +258 -0
- package/plugin/commands/auto/checkpoint.md +253 -0
- package/plugin/commands/auto/init.md +236 -0
- package/plugin/commands/auto/next.md +278 -0
- package/plugin/commands/auto/reject.md +278 -0
- package/plugin/commands/auto/resume.md +233 -0
- package/plugin/commands/auto/start.md +212 -0
- package/plugin/commands/auto/status.md +212 -0
- package/plugin/commands/auto/verify.md +353 -0
- 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/skills/autonomous/project-orchestration/SKILL.md +332 -0
- package/plugin/templates/autonomous/archetypes/api-service.yaml +78 -0
- package/plugin/templates/autonomous/archetypes/cli-tool.yaml +67 -0
- package/plugin/templates/autonomous/archetypes/fullstack-app.yaml +97 -0
- package/plugin/templates/autonomous/archetypes/library.yaml +64 -0
- package/plugin/templates/autonomous/archetypes/saas-mvp.yaml +417 -0
- package/plugin/templates/autonomous/decision-framework.yaml +337 -0
- package/plugin/templates/autonomous/discovery-questions.yaml +795 -0
- package/plugin/templates/autonomous/features-schema.yaml +254 -0
- package/plugin/templates/autonomous/memory-system.yaml +298 -0
- package/plugin/templates/autonomous/prd-template.md +251 -0
- package/plugin/templates/autonomous/state-schema.yaml +383 -0
- package/plugin/workflows/autonomous/discovery.yaml +232 -0
- package/plugin/workflows/autonomous/execution.yaml +275 -0
- package/plugin/workflows/autonomous/planning.yaml +244 -0
|
@@ -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.
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Complete feature development from planning to deployment
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <feature description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Feature Development Workflow
|
|
8
|
+
|
|
9
|
+
Build feature: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Planning
|
|
14
|
+
**Agent:** @planner
|
|
15
|
+
**Command:** `/planning:plan "$ARGUMENTS"`
|
|
16
|
+
|
|
17
|
+
- Analyze feature requirements
|
|
18
|
+
- Break down into implementable tasks
|
|
19
|
+
- Create detailed implementation plan
|
|
20
|
+
- Define acceptance criteria
|
|
21
|
+
- Identify dependencies and risks
|
|
22
|
+
|
|
23
|
+
### Step 2: Implementation
|
|
24
|
+
**Agent:** @fullstack-developer
|
|
25
|
+
**Command:** `/dev:feature "$ARGUMENTS"`
|
|
26
|
+
|
|
27
|
+
- Follow the implementation plan
|
|
28
|
+
- Write code incrementally
|
|
29
|
+
- Add inline documentation
|
|
30
|
+
- Follow coding standards
|
|
31
|
+
|
|
32
|
+
### Step 3: Testing
|
|
33
|
+
**Agent:** @tester
|
|
34
|
+
**Command:** `/dev:test`
|
|
35
|
+
|
|
36
|
+
- Write unit tests for new code
|
|
37
|
+
- Write integration tests
|
|
38
|
+
- Achieve coverage target (>80%)
|
|
39
|
+
- Run all tests and fix failures
|
|
40
|
+
|
|
41
|
+
### Step 4: Code Review
|
|
42
|
+
**Agent:** @code-reviewer
|
|
43
|
+
**Command:** `/dev:review`
|
|
44
|
+
|
|
45
|
+
- Review code quality
|
|
46
|
+
- Check for security issues
|
|
47
|
+
- Verify best practices
|
|
48
|
+
- Suggest improvements
|
|
49
|
+
|
|
50
|
+
### Step 5: Commit & PR
|
|
51
|
+
**Agent:** @git-manager
|
|
52
|
+
**Command:** `/git:pr`
|
|
53
|
+
|
|
54
|
+
- Create feature branch
|
|
55
|
+
- Stage and commit changes
|
|
56
|
+
- Write meaningful commit message
|
|
57
|
+
- Create pull request
|
|
58
|
+
|
|
59
|
+
## Progress Tracking
|
|
60
|
+
- [ ] Step 1: Planning complete
|
|
61
|
+
- [ ] Step 2: Implementation complete
|
|
62
|
+
- [ ] Step 3: Tests passing (>80% coverage)
|
|
63
|
+
- [ ] Step 4: Code review approved
|
|
64
|
+
- [ ] Step 5: PR created
|
|
65
|
+
|
|
66
|
+
## Quality Gates
|
|
67
|
+
- [ ] Implementation plan approved
|
|
68
|
+
- [ ] All code follows project standards
|
|
69
|
+
- [ ] Test coverage exceeds 80%
|
|
70
|
+
- [ ] No security vulnerabilities
|
|
71
|
+
- [ ] Code review passed
|
|
72
|
+
|
|
73
|
+
Execute each step sequentially. Show progress after each step.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Model fine-tuning workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <fine-tuning objective>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Fine-Tuning Workflow
|
|
8
|
+
|
|
9
|
+
Fine-tune for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Data Preparation
|
|
14
|
+
**Agent:** @fullstack-developer
|
|
15
|
+
|
|
16
|
+
- Collect training data
|
|
17
|
+
- Format for fine-tuning
|
|
18
|
+
- Quality validation
|
|
19
|
+
- Train/val split
|
|
20
|
+
|
|
21
|
+
### Step 2: Configuration
|
|
22
|
+
**Agent:** @researcher
|
|
23
|
+
|
|
24
|
+
- Select base model
|
|
25
|
+
- Configure hyperparameters
|
|
26
|
+
- Choose PEFT method (LoRA, QLoRA)
|
|
27
|
+
- Set up training
|
|
28
|
+
|
|
29
|
+
### Step 3: Training
|
|
30
|
+
**Agent:** @fullstack-developer
|
|
31
|
+
|
|
32
|
+
- Run fine-tuning
|
|
33
|
+
- Monitor metrics
|
|
34
|
+
- Handle checkpoints
|
|
35
|
+
- Early stopping
|
|
36
|
+
|
|
37
|
+
### Step 4: Evaluation
|
|
38
|
+
**Agent:** @tester
|
|
39
|
+
|
|
40
|
+
- Evaluate on test set
|
|
41
|
+
- Compare to baseline
|
|
42
|
+
- Check for regressions
|
|
43
|
+
- Measure improvements
|
|
44
|
+
|
|
45
|
+
### Step 5: Deployment
|
|
46
|
+
**Agent:** @fullstack-developer
|
|
47
|
+
|
|
48
|
+
- Merge weights (if LoRA)
|
|
49
|
+
- Optimize for inference
|
|
50
|
+
- Deploy model
|
|
51
|
+
- Monitor performance
|
|
52
|
+
|
|
53
|
+
## Progress Tracking
|
|
54
|
+
- [ ] Data prepared
|
|
55
|
+
- [ ] Configuration complete
|
|
56
|
+
- [ ] Training finished
|
|
57
|
+
- [ ] Evaluation passed
|
|
58
|
+
- [ ] Deployed
|
|
59
|
+
|
|
60
|
+
Execute each step sequentially. Show progress after each step.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Complex full-stack feature development
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <full-stack feature>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Full-Stack Feature Workflow
|
|
8
|
+
|
|
9
|
+
Build: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Architecture Design
|
|
14
|
+
**Agent:** @architect
|
|
15
|
+
|
|
16
|
+
- Design system architecture
|
|
17
|
+
- Plan database schema
|
|
18
|
+
- Design API contracts
|
|
19
|
+
- Plan frontend components
|
|
20
|
+
|
|
21
|
+
### Step 2: Backend Implementation
|
|
22
|
+
**Agent:** @fullstack-developer
|
|
23
|
+
|
|
24
|
+
- Implement database models
|
|
25
|
+
- Create API endpoints
|
|
26
|
+
- Add business logic
|
|
27
|
+
- Write backend tests
|
|
28
|
+
|
|
29
|
+
### Step 3: Frontend Implementation
|
|
30
|
+
**Agent:** @fullstack-developer
|
|
31
|
+
|
|
32
|
+
- Create UI components
|
|
33
|
+
- Implement state management
|
|
34
|
+
- Connect to API
|
|
35
|
+
- Add styling
|
|
36
|
+
|
|
37
|
+
### Step 4: Integration
|
|
38
|
+
**Agent:** @fullstack-developer
|
|
39
|
+
|
|
40
|
+
- End-to-end integration
|
|
41
|
+
- Error handling
|
|
42
|
+
- Loading states
|
|
43
|
+
- Edge cases
|
|
44
|
+
|
|
45
|
+
### Step 5: Testing
|
|
46
|
+
**Agent:** @tester
|
|
47
|
+
**Command:** `/dev:test`
|
|
48
|
+
|
|
49
|
+
- Unit tests (frontend + backend)
|
|
50
|
+
- Integration tests
|
|
51
|
+
- E2E tests
|
|
52
|
+
- Performance tests
|
|
53
|
+
|
|
54
|
+
### Step 6: Review & Deploy
|
|
55
|
+
**Agent:** @code-reviewer, @git-manager
|
|
56
|
+
|
|
57
|
+
- Code review
|
|
58
|
+
- Security review
|
|
59
|
+
- Create PR
|
|
60
|
+
- Deploy
|
|
61
|
+
|
|
62
|
+
## Progress Tracking
|
|
63
|
+
- [ ] Architecture designed
|
|
64
|
+
- [ ] Backend complete
|
|
65
|
+
- [ ] Frontend complete
|
|
66
|
+
- [ ] Integration done
|
|
67
|
+
- [ ] Tests passing
|
|
68
|
+
- [ ] Deployed
|
|
69
|
+
|
|
70
|
+
Execute each layer. Full-stack excellence.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create marketing content and materials
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <marketing goal>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Marketing Content Workflow
|
|
8
|
+
|
|
9
|
+
Create: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Research
|
|
14
|
+
**Agent:** @researcher
|
|
15
|
+
**Command:** `/planning:research`
|
|
16
|
+
|
|
17
|
+
- Target audience analysis
|
|
18
|
+
- Competitor research
|
|
19
|
+
- Market positioning
|
|
20
|
+
- Key messages
|
|
21
|
+
|
|
22
|
+
### Step 2: Ideation
|
|
23
|
+
**Agent:** @brainstormer
|
|
24
|
+
**Command:** `/planning:brainstorm`
|
|
25
|
+
|
|
26
|
+
- Message angles
|
|
27
|
+
- Headline options
|
|
28
|
+
- Value propositions
|
|
29
|
+
- Call-to-actions
|
|
30
|
+
|
|
31
|
+
### Step 3: Content Creation
|
|
32
|
+
**Agent:** @copywriter
|
|
33
|
+
|
|
34
|
+
- Write headlines
|
|
35
|
+
- Create body copy
|
|
36
|
+
- Features/benefits
|
|
37
|
+
- CTAs
|
|
38
|
+
|
|
39
|
+
### Step 4: Review
|
|
40
|
+
**Agent:** @copywriter
|
|
41
|
+
|
|
42
|
+
- Tone consistency
|
|
43
|
+
- Clarity
|
|
44
|
+
- Persuasiveness
|
|
45
|
+
- Grammar
|
|
46
|
+
|
|
47
|
+
## Progress Tracking
|
|
48
|
+
- [ ] Research complete
|
|
49
|
+
- [ ] Ideas generated
|
|
50
|
+
- [ ] Content written
|
|
51
|
+
- [ ] Review complete
|
|
52
|
+
|
|
53
|
+
Execute for compelling content.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Safe database migration workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <migration description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Database Migration Workflow
|
|
8
|
+
|
|
9
|
+
Migration: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Change Analysis
|
|
14
|
+
**Agent:** @database-admin
|
|
15
|
+
|
|
16
|
+
- Analyze required changes
|
|
17
|
+
- Assess impact
|
|
18
|
+
- Identify risks
|
|
19
|
+
- Plan approach
|
|
20
|
+
|
|
21
|
+
### Step 2: Migration Design
|
|
22
|
+
**Agent:** @database-admin
|
|
23
|
+
|
|
24
|
+
- Design migration strategy
|
|
25
|
+
- Plan zero-downtime approach
|
|
26
|
+
- Create rollback plan
|
|
27
|
+
- Document steps
|
|
28
|
+
|
|
29
|
+
### Step 3: Migration Creation
|
|
30
|
+
**Agent:** @database-admin
|
|
31
|
+
|
|
32
|
+
- Write migration scripts
|
|
33
|
+
- Include rollback
|
|
34
|
+
- Add data transformations
|
|
35
|
+
- Test locally
|
|
36
|
+
|
|
37
|
+
### Step 4: Staging Test
|
|
38
|
+
**Agent:** @tester
|
|
39
|
+
|
|
40
|
+
- Run on staging
|
|
41
|
+
- Verify data integrity
|
|
42
|
+
- Test rollback
|
|
43
|
+
- Measure performance
|
|
44
|
+
|
|
45
|
+
### Step 5: Production Deploy
|
|
46
|
+
**Agent:** @database-admin
|
|
47
|
+
|
|
48
|
+
- Execute migration
|
|
49
|
+
- Monitor closely
|
|
50
|
+
- Verify success
|
|
51
|
+
- Document completion
|
|
52
|
+
|
|
53
|
+
## Progress Tracking
|
|
54
|
+
- [ ] Changes analyzed
|
|
55
|
+
- [ ] Migration designed
|
|
56
|
+
- [ ] Scripts created
|
|
57
|
+
- [ ] Staging tested
|
|
58
|
+
- [ ] Production deployed
|
|
59
|
+
|
|
60
|
+
Execute carefully. Data integrity is critical.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: AI model evaluation and benchmarking workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <model or system to evaluate>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Model Evaluation Workflow
|
|
8
|
+
|
|
9
|
+
Evaluate: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Evaluation Planning
|
|
14
|
+
**Agent:** @planner
|
|
15
|
+
|
|
16
|
+
- Define evaluation objectives
|
|
17
|
+
- Identify key metrics
|
|
18
|
+
- Design test cases
|
|
19
|
+
- Plan benchmarks
|
|
20
|
+
|
|
21
|
+
### Step 2: Dataset Preparation
|
|
22
|
+
**Agent:** @fullstack-developer
|
|
23
|
+
|
|
24
|
+
- Collect evaluation data
|
|
25
|
+
- Create test sets
|
|
26
|
+
- Label ground truth
|
|
27
|
+
- Validate data quality
|
|
28
|
+
|
|
29
|
+
### Step 3: Metric Implementation
|
|
30
|
+
**Agent:** @fullstack-developer
|
|
31
|
+
|
|
32
|
+
- Implement evaluation metrics
|
|
33
|
+
- Set up scoring functions
|
|
34
|
+
- Create comparison framework
|
|
35
|
+
|
|
36
|
+
### Step 4: Evaluation Execution
|
|
37
|
+
**Agent:** @tester
|
|
38
|
+
|
|
39
|
+
- Run evaluations
|
|
40
|
+
- Collect results
|
|
41
|
+
- Statistical analysis
|
|
42
|
+
- Compare baselines
|
|
43
|
+
|
|
44
|
+
### Step 5: Reporting
|
|
45
|
+
**Agent:** @docs-manager
|
|
46
|
+
|
|
47
|
+
- Create evaluation report
|
|
48
|
+
- Visualize results
|
|
49
|
+
- Document findings
|
|
50
|
+
- Recommend improvements
|
|
51
|
+
|
|
52
|
+
## Progress Tracking
|
|
53
|
+
- [ ] Evaluation planned
|
|
54
|
+
- [ ] Dataset prepared
|
|
55
|
+
- [ ] Metrics implemented
|
|
56
|
+
- [ ] Evaluation complete
|
|
57
|
+
- [ ] Report generated
|
|
58
|
+
|
|
59
|
+
Execute each step sequentially. Show progress after each step.
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Database performance optimization workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Edit, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <optimization target>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Database Optimization Workflow
|
|
8
|
+
|
|
9
|
+
Optimize: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow Steps
|
|
12
|
+
|
|
13
|
+
### Step 1: Performance Analysis
|
|
14
|
+
**Agent:** @database-admin
|
|
15
|
+
|
|
16
|
+
- Identify slow queries
|
|
17
|
+
- Analyze execution plans
|
|
18
|
+
- Review index usage
|
|
19
|
+
- Measure baselines
|
|
20
|
+
|
|
21
|
+
### Step 2: Query Optimization
|
|
22
|
+
**Agent:** @database-admin
|
|
23
|
+
|
|
24
|
+
- Rewrite slow queries
|
|
25
|
+
- Add missing indexes
|
|
26
|
+
- Remove unused indexes
|
|
27
|
+
- Optimize joins
|
|
28
|
+
|
|
29
|
+
### Step 3: Schema Optimization
|
|
30
|
+
**Agent:** @database-admin
|
|
31
|
+
|
|
32
|
+
- Review data types
|
|
33
|
+
- Consider partitioning
|
|
34
|
+
- Evaluate denormalization
|
|
35
|
+
- Optimize storage
|
|
36
|
+
|
|
37
|
+
### Step 4: Configuration Tuning
|
|
38
|
+
**Agent:** @database-admin
|
|
39
|
+
|
|
40
|
+
- Review DB configuration
|
|
41
|
+
- Tune memory settings
|
|
42
|
+
- Optimize connections
|
|
43
|
+
- Configure caching
|
|
44
|
+
|
|
45
|
+
### Step 5: Validation
|
|
46
|
+
**Agent:** @tester
|
|
47
|
+
|
|
48
|
+
- Benchmark improvements
|
|
49
|
+
- Compare to baseline
|
|
50
|
+
- Test under load
|
|
51
|
+
- Document gains
|
|
52
|
+
|
|
53
|
+
## Progress Tracking
|
|
54
|
+
- [ ] Performance analyzed
|
|
55
|
+
- [ ] Queries optimized
|
|
56
|
+
- [ ] Schema improved
|
|
57
|
+
- [ ] Configuration tuned
|
|
58
|
+
- [ ] Improvements validated
|
|
59
|
+
|
|
60
|
+
Execute each step. Measure impact.
|