omgkit 1.0.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/LICENSE +21 -0
- package/README.md +252 -0
- package/bin/omgkit.js +122 -0
- package/lib/.gitkeep +0 -0
- package/lib/cli.js +513 -0
- package/lib/index.js +35 -0
- package/package.json +52 -0
- package/plugin/.claude-plugin/.gitkeep +0 -0
- package/plugin/.claude-plugin/plugin.json +11 -0
- package/plugin/agents/.gitkeep +0 -0
- package/plugin/agents/api-designer.md +66 -0
- package/plugin/agents/architect.md +81 -0
- package/plugin/agents/brainstormer.md +60 -0
- package/plugin/agents/cicd-manager.md +50 -0
- package/plugin/agents/code-reviewer.md +45 -0
- package/plugin/agents/copywriter.md +48 -0
- package/plugin/agents/database-admin.md +49 -0
- package/plugin/agents/debugger.md +55 -0
- package/plugin/agents/docs-manager.md +52 -0
- package/plugin/agents/fullstack-developer.md +67 -0
- package/plugin/agents/git-manager.md +48 -0
- package/plugin/agents/journal-writer.md +51 -0
- package/plugin/agents/oracle.md +91 -0
- package/plugin/agents/pipeline-architect.md +52 -0
- package/plugin/agents/planner.md +60 -0
- package/plugin/agents/project-manager.md +43 -0
- package/plugin/agents/researcher.md +37 -0
- package/plugin/agents/scout.md +37 -0
- package/plugin/agents/security-auditor.md +53 -0
- package/plugin/agents/sprint-master.md +84 -0
- package/plugin/agents/tester.md +50 -0
- package/plugin/agents/ui-ux-designer.md +61 -0
- package/plugin/agents/vulnerability-scanner.md +53 -0
- package/plugin/commands/context/.gitkeep +0 -0
- package/plugin/commands/context/checkpoint.md +20 -0
- package/plugin/commands/context/index.md +17 -0
- package/plugin/commands/context/load.md +16 -0
- package/plugin/commands/context/mode.md +20 -0
- package/plugin/commands/context/spawn-collect.md +14 -0
- package/plugin/commands/context/spawn.md +20 -0
- package/plugin/commands/design/.gitkeep +0 -0
- package/plugin/commands/design/cro.md +27 -0
- package/plugin/commands/design/enhance.md +16 -0
- package/plugin/commands/design/fast.md +17 -0
- package/plugin/commands/design/good.md +23 -0
- package/plugin/commands/design/screenshot.md +21 -0
- package/plugin/commands/dev/.gitkeep +0 -0
- package/plugin/commands/dev/feature.md +25 -0
- package/plugin/commands/dev/fix-ci.md +23 -0
- package/plugin/commands/dev/fix-fast.md +19 -0
- package/plugin/commands/dev/fix-hard.md +25 -0
- package/plugin/commands/dev/fix-logs.md +21 -0
- package/plugin/commands/dev/fix-test.md +23 -0
- package/plugin/commands/dev/fix.md +22 -0
- package/plugin/commands/dev/review.md +31 -0
- package/plugin/commands/dev/tdd.md +29 -0
- package/plugin/commands/dev/test.md +25 -0
- package/plugin/commands/git/.gitkeep +0 -0
- package/plugin/commands/git/cm.md +13 -0
- package/plugin/commands/git/commit.md +31 -0
- package/plugin/commands/git/cp.md +14 -0
- package/plugin/commands/git/deploy.md +21 -0
- package/plugin/commands/git/pr.md +20 -0
- package/plugin/commands/git/ship.md +29 -0
- package/plugin/commands/omega/.gitkeep +0 -0
- package/plugin/commands/omega/1000x.md +41 -0
- package/plugin/commands/omega/100x.md +39 -0
- package/plugin/commands/omega/10x.md +47 -0
- package/plugin/commands/omega/dimensions.md +26 -0
- package/plugin/commands/omega/principles.md +43 -0
- package/plugin/commands/planning/.gitkeep +0 -0
- package/plugin/commands/planning/ask.md +21 -0
- package/plugin/commands/planning/brainstorm.md +33 -0
- package/plugin/commands/planning/doc.md +28 -0
- package/plugin/commands/planning/execute-plan.md +28 -0
- package/plugin/commands/planning/plan-detailed.md +32 -0
- package/plugin/commands/planning/plan-parallel.md +35 -0
- package/plugin/commands/planning/plan.md +39 -0
- package/plugin/commands/planning/research.md +39 -0
- package/plugin/commands/quality/.gitkeep +0 -0
- package/plugin/commands/quality/api-gen.md +25 -0
- package/plugin/commands/quality/lint.md +15 -0
- package/plugin/commands/quality/optimize.md +23 -0
- package/plugin/commands/quality/refactor.md +22 -0
- package/plugin/commands/quality/security-scan.md +28 -0
- package/plugin/commands/sprint/.gitkeep +0 -0
- package/plugin/commands/sprint/backlog-add.md +21 -0
- package/plugin/commands/sprint/backlog-prioritize.md +18 -0
- package/plugin/commands/sprint/backlog-show.md +25 -0
- package/plugin/commands/sprint/init.md +27 -0
- package/plugin/commands/sprint/sprint-current.md +22 -0
- package/plugin/commands/sprint/sprint-end.md +33 -0
- package/plugin/commands/sprint/sprint-new.md +31 -0
- package/plugin/commands/sprint/sprint-start.md +17 -0
- package/plugin/commands/sprint/team-ask.md +21 -0
- package/plugin/commands/sprint/team-run.md +29 -0
- package/plugin/commands/sprint/team-status.md +23 -0
- package/plugin/commands/sprint/vision-set.md +21 -0
- package/plugin/commands/sprint/vision-show.md +15 -0
- package/plugin/mcp/.gitkeep +0 -0
- package/plugin/mcp/.mcp.json +20 -0
- package/plugin/mcp/README.md +68 -0
- package/plugin/modes/.gitkeep +0 -0
- package/plugin/modes/autonomous.md +48 -0
- package/plugin/modes/brainstorm.md +33 -0
- package/plugin/modes/deep-research.md +41 -0
- package/plugin/modes/default.md +25 -0
- package/plugin/modes/implementation.md +35 -0
- package/plugin/modes/omega.md +38 -0
- package/plugin/modes/orchestration.md +41 -0
- package/plugin/modes/review.md +44 -0
- package/plugin/modes/token-efficient.md +37 -0
- package/plugin/skills/databases/.gitkeep +0 -0
- package/plugin/skills/databases/mongodb/SKILL.md +43 -0
- package/plugin/skills/databases/postgresql/SKILL.md +43 -0
- package/plugin/skills/databases/prisma/SKILL.md +55 -0
- package/plugin/skills/databases/redis/SKILL.md +41 -0
- package/plugin/skills/devops/.gitkeep +0 -0
- package/plugin/skills/devops/aws/SKILL.md +51 -0
- package/plugin/skills/devops/docker/SKILL.md +54 -0
- package/plugin/skills/devops/github-actions/SKILL.md +63 -0
- package/plugin/skills/devops/kubernetes/SKILL.md +64 -0
- package/plugin/skills/frameworks/.gitkeep +0 -0
- package/plugin/skills/frameworks/django/SKILL.md +47 -0
- package/plugin/skills/frameworks/express/SKILL.md +55 -0
- package/plugin/skills/frameworks/fastapi/SKILL.md +58 -0
- package/plugin/skills/frameworks/laravel/SKILL.md +65 -0
- package/plugin/skills/frameworks/nestjs/SKILL.md +67 -0
- package/plugin/skills/frameworks/nextjs/SKILL.md +77 -0
- package/plugin/skills/frameworks/rails/SKILL.md +56 -0
- package/plugin/skills/frameworks/react/SKILL.md +61 -0
- package/plugin/skills/frameworks/spring/SKILL.md +70 -0
- package/plugin/skills/frameworks/vue/SKILL.md +62 -0
- package/plugin/skills/frontend/.gitkeep +0 -0
- package/plugin/skills/frontend/accessibility/SKILL.md +52 -0
- package/plugin/skills/frontend/frontend-design/SKILL.md +47 -0
- package/plugin/skills/frontend/responsive/SKILL.md +46 -0
- package/plugin/skills/frontend/shadcn-ui/SKILL.md +58 -0
- package/plugin/skills/frontend/tailwindcss/SKILL.md +52 -0
- package/plugin/skills/frontend/threejs/SKILL.md +59 -0
- package/plugin/skills/languages/.gitkeep +0 -0
- package/plugin/skills/languages/javascript/SKILL.md +62 -0
- package/plugin/skills/languages/python/SKILL.md +63 -0
- package/plugin/skills/languages/typescript/SKILL.md +66 -0
- package/plugin/skills/methodology/.gitkeep +0 -0
- package/plugin/skills/methodology/brainstorming/SKILL.md +34 -0
- package/plugin/skills/methodology/defense-in-depth/SKILL.md +51 -0
- package/plugin/skills/methodology/dispatching-parallel-agents/SKILL.md +43 -0
- package/plugin/skills/methodology/executing-plans/SKILL.md +34 -0
- package/plugin/skills/methodology/finishing-development-branch/SKILL.md +41 -0
- package/plugin/skills/methodology/receiving-code-review/SKILL.md +41 -0
- package/plugin/skills/methodology/requesting-code-review/SKILL.md +38 -0
- package/plugin/skills/methodology/root-cause-tracing/SKILL.md +53 -0
- package/plugin/skills/methodology/systematic-debugging/SKILL.md +50 -0
- package/plugin/skills/methodology/test-driven-development/SKILL.md +39 -0
- package/plugin/skills/methodology/testing-anti-patterns/SKILL.md +50 -0
- package/plugin/skills/methodology/token-optimization/SKILL.md +51 -0
- package/plugin/skills/methodology/verification-before-completion/SKILL.md +32 -0
- package/plugin/skills/methodology/writing-plans/SKILL.md +34 -0
- package/plugin/skills/omega/.gitkeep +0 -0
- package/plugin/skills/omega/omega-architecture/SKILL.md +59 -0
- package/plugin/skills/omega/omega-coding/SKILL.md +61 -0
- package/plugin/skills/omega/omega-sprint/SKILL.md +64 -0
- package/plugin/skills/omega/omega-testing/SKILL.md +71 -0
- package/plugin/skills/omega/omega-thinking/SKILL.md +54 -0
- package/plugin/skills/security/.gitkeep +0 -0
- package/plugin/skills/security/better-auth/SKILL.md +53 -0
- package/plugin/skills/security/oauth/SKILL.md +50 -0
- package/plugin/skills/security/owasp/SKILL.md +57 -0
- package/plugin/skills/testing/.gitkeep +0 -0
- package/plugin/skills/testing/playwright/SKILL.md +60 -0
- package/plugin/skills/testing/pytest/SKILL.md +58 -0
- package/plugin/skills/testing/vitest/SKILL.md +64 -0
- package/templates/.gitkeep +0 -0
- package/templates/OMEGA.md +80 -0
- package/templates/backlog.yaml +25 -0
- package/templates/config.yaml +44 -0
- package/templates/settings.json +20 -0
- package/templates/vision.yaml +30 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Interactive brainstorming session
|
|
3
|
+
allowed-tools: Task, Read, WebSearch, Glob
|
|
4
|
+
argument-hint: <topic>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 💡 Brainstorm: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Creative exploration for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Define problem clearly
|
|
13
|
+
2. Generate 10+ ideas (no judgment)
|
|
14
|
+
3. Group and combine
|
|
15
|
+
4. Evaluate top options
|
|
16
|
+
|
|
17
|
+
## Methods
|
|
18
|
+
- Divergent thinking
|
|
19
|
+
- Lateral thinking
|
|
20
|
+
- SCAMPER technique
|
|
21
|
+
- Reverse brainstorming
|
|
22
|
+
|
|
23
|
+
## Output
|
|
24
|
+
```markdown
|
|
25
|
+
## Ideas
|
|
26
|
+
1. [Idea] - [rationale]
|
|
27
|
+
...
|
|
28
|
+
|
|
29
|
+
## Top 3 Recommendations
|
|
30
|
+
1. **Best Overall**: [why]
|
|
31
|
+
2. **Most Innovative**: [why]
|
|
32
|
+
3. **Quickest Win**: [why]
|
|
33
|
+
```
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Generate documentation
|
|
3
|
+
allowed-tools: Task, Read, Write, Glob
|
|
4
|
+
argument-hint: <target>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 📚 Doc: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Generate documentation for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Documentation Types
|
|
12
|
+
- API documentation
|
|
13
|
+
- Code documentation
|
|
14
|
+
- Architecture docs
|
|
15
|
+
- User guides
|
|
16
|
+
- README updates
|
|
17
|
+
|
|
18
|
+
## Process
|
|
19
|
+
1. Analyze target code
|
|
20
|
+
2. Identify public interfaces
|
|
21
|
+
3. Generate documentation
|
|
22
|
+
4. Format appropriately
|
|
23
|
+
|
|
24
|
+
## Standards
|
|
25
|
+
- Clear descriptions
|
|
26
|
+
- Usage examples
|
|
27
|
+
- Parameter documentation
|
|
28
|
+
- Error documentation
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Execute existing plan with subagents
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Glob
|
|
4
|
+
argument-hint: <plan-file>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ▶️ Execute: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Execute plan from: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Read plan file
|
|
13
|
+
2. Execute tasks sequentially
|
|
14
|
+
3. Review gate after each phase
|
|
15
|
+
4. Report progress
|
|
16
|
+
|
|
17
|
+
## Execution
|
|
18
|
+
For each task:
|
|
19
|
+
1. Assign to appropriate agent
|
|
20
|
+
2. Execute task
|
|
21
|
+
3. Verify success criteria
|
|
22
|
+
4. Update progress
|
|
23
|
+
5. Next task
|
|
24
|
+
|
|
25
|
+
## Progress Tracking
|
|
26
|
+
- [ ] Task 1
|
|
27
|
+
- [ ] Task 2
|
|
28
|
+
- [ ] ...
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Detailed plan with 2-5 min tasks
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob, WebSearch
|
|
4
|
+
argument-hint: <task>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 📋 Detailed Plan: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Create detailed plan with granular tasks.
|
|
10
|
+
|
|
11
|
+
## Requirements
|
|
12
|
+
- Each task: 2-5 minutes
|
|
13
|
+
- Exact code locations
|
|
14
|
+
- Clear success criteria
|
|
15
|
+
- Dependencies noted
|
|
16
|
+
|
|
17
|
+
## Output Format
|
|
18
|
+
```markdown
|
|
19
|
+
# Detailed Plan: [Feature]
|
|
20
|
+
|
|
21
|
+
## Task 1: [Name]
|
|
22
|
+
- **Time**: 2-5 min
|
|
23
|
+
- **Location**: `src/file.ts:123`
|
|
24
|
+
- **Action**: [Specific action]
|
|
25
|
+
- **Success**: [How to verify]
|
|
26
|
+
- **Depends on**: [None | Task X]
|
|
27
|
+
|
|
28
|
+
## Task 2: [Name]
|
|
29
|
+
...
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Break complex work into atomic tasks.
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Plan with parallel execution strategy
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob
|
|
4
|
+
argument-hint: <task>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 📋 Parallel Plan: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Plan optimized for parallel agent execution.
|
|
10
|
+
|
|
11
|
+
## Strategy
|
|
12
|
+
1. Identify independent tasks
|
|
13
|
+
2. Group by agent type
|
|
14
|
+
3. Define sync points
|
|
15
|
+
4. Plan parallel streams
|
|
16
|
+
|
|
17
|
+
## Output Format
|
|
18
|
+
```markdown
|
|
19
|
+
# Parallel Plan: [Feature]
|
|
20
|
+
|
|
21
|
+
## Stream A (fullstack-developer)
|
|
22
|
+
1. [Task A1]
|
|
23
|
+
2. [Task A2]
|
|
24
|
+
|
|
25
|
+
## Stream B (tester)
|
|
26
|
+
1. [Task B1]
|
|
27
|
+
2. [Task B2]
|
|
28
|
+
|
|
29
|
+
## Sync Points
|
|
30
|
+
- After A2 + B1: Integration
|
|
31
|
+
- After all: Final review
|
|
32
|
+
|
|
33
|
+
## Execution Order
|
|
34
|
+
[A1, B1] → [A2, B2] → [Sync] → [Final]
|
|
35
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create implementation plan
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob, WebSearch
|
|
4
|
+
argument-hint: <task>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 📋 Plan: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Create implementation plan for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Understand requirements
|
|
13
|
+
2. Research codebase
|
|
14
|
+
3. Design solution
|
|
15
|
+
4. Break into tasks
|
|
16
|
+
|
|
17
|
+
## Output
|
|
18
|
+
Save plan to `plans/<feature>.md`:
|
|
19
|
+
|
|
20
|
+
```markdown
|
|
21
|
+
# Plan: [Feature]
|
|
22
|
+
|
|
23
|
+
## Overview
|
|
24
|
+
[Brief description]
|
|
25
|
+
|
|
26
|
+
## Tasks
|
|
27
|
+
1. [ ] [Task] - [2-5 min] - [location]
|
|
28
|
+
2. [ ] [Task] - [2-5 min] - [location]
|
|
29
|
+
|
|
30
|
+
## Files
|
|
31
|
+
- `path/file.ts` - [changes]
|
|
32
|
+
|
|
33
|
+
## Testing
|
|
34
|
+
- Unit: [what to test]
|
|
35
|
+
- Integration: [flows]
|
|
36
|
+
|
|
37
|
+
## Risks
|
|
38
|
+
| Risk | Mitigation |
|
|
39
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Research technology or topic
|
|
3
|
+
allowed-tools: Task, Read, WebSearch, WebFetch, Glob
|
|
4
|
+
argument-hint: <topic>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔬 Research: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Research: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Define research questions
|
|
13
|
+
2. Search multiple sources
|
|
14
|
+
3. Analyze findings
|
|
15
|
+
4. Synthesize recommendations
|
|
16
|
+
|
|
17
|
+
## Sources
|
|
18
|
+
- Official documentation
|
|
19
|
+
- Best practices
|
|
20
|
+
- Community solutions
|
|
21
|
+
- Academic papers
|
|
22
|
+
|
|
23
|
+
## Output
|
|
24
|
+
```markdown
|
|
25
|
+
# Research: [Topic]
|
|
26
|
+
|
|
27
|
+
## Key Questions
|
|
28
|
+
1. [Question]
|
|
29
|
+
|
|
30
|
+
## Sources
|
|
31
|
+
1. [Source] - [Key points]
|
|
32
|
+
|
|
33
|
+
## Findings
|
|
34
|
+
- [Finding 1]
|
|
35
|
+
- [Finding 2]
|
|
36
|
+
|
|
37
|
+
## Recommendations
|
|
38
|
+
[What to do based on research]
|
|
39
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Generate API code from spec
|
|
3
|
+
allowed-tools: Task, Read, Write
|
|
4
|
+
argument-hint: <resource>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔌 API Gen: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Generate API code for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Generates
|
|
12
|
+
- Route handler
|
|
13
|
+
- Validation schema
|
|
14
|
+
- Types/interfaces
|
|
15
|
+
- Tests
|
|
16
|
+
- Documentation
|
|
17
|
+
|
|
18
|
+
## Output Structure
|
|
19
|
+
```
|
|
20
|
+
src/api/[resource]/
|
|
21
|
+
├── route.ts
|
|
22
|
+
├── schema.ts
|
|
23
|
+
├── types.ts
|
|
24
|
+
└── route.test.ts
|
|
25
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Performance optimization
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep
|
|
4
|
+
argument-hint: <file>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ⚡ Optimize: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Optimize performance of: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Areas
|
|
12
|
+
- Algorithm efficiency
|
|
13
|
+
- Database queries
|
|
14
|
+
- Memory usage
|
|
15
|
+
- Bundle size
|
|
16
|
+
- Caching
|
|
17
|
+
|
|
18
|
+
## Process
|
|
19
|
+
1. Profile current performance
|
|
20
|
+
2. Identify bottlenecks
|
|
21
|
+
3. Apply optimizations
|
|
22
|
+
4. Measure improvement
|
|
23
|
+
5. Document changes
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Improve code structure
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <file or directory>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ♻️ Refactor: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Improve code structure of: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Goals
|
|
12
|
+
- Remove duplication
|
|
13
|
+
- Improve readability
|
|
14
|
+
- Apply patterns
|
|
15
|
+
- Simplify complexity
|
|
16
|
+
|
|
17
|
+
## Process
|
|
18
|
+
1. Analyze current code
|
|
19
|
+
2. Identify improvements
|
|
20
|
+
3. Apply refactoring
|
|
21
|
+
4. Verify tests pass
|
|
22
|
+
5. Document changes
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Scan for security vulnerabilities
|
|
3
|
+
allowed-tools: Task, Read, Grep, Bash, Glob
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🔒 Security Scan
|
|
7
|
+
|
|
8
|
+
Full security audit of the codebase.
|
|
9
|
+
|
|
10
|
+
## Scans
|
|
11
|
+
1. Dependency vulnerabilities (`npm audit`)
|
|
12
|
+
2. Hardcoded secrets
|
|
13
|
+
3. SQL injection patterns
|
|
14
|
+
4. XSS vulnerabilities
|
|
15
|
+
5. Insecure configurations
|
|
16
|
+
|
|
17
|
+
## Output
|
|
18
|
+
```markdown
|
|
19
|
+
## Security Report
|
|
20
|
+
|
|
21
|
+
### Risk Level: LOW | MEDIUM | HIGH
|
|
22
|
+
|
|
23
|
+
### Vulnerabilities
|
|
24
|
+
| Severity | Type | Location | Fix |
|
|
25
|
+
|
|
26
|
+
### Recommendations
|
|
27
|
+
1. [Action]
|
|
28
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Add task to backlog
|
|
3
|
+
allowed-tools: Read, Write
|
|
4
|
+
argument-hint: <task> [--type TYPE] [--priority N]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ➕ Backlog Add: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Add task to backlog.
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
- `--type` - feature, bugfix, docs, test, refactor, infra
|
|
13
|
+
- `--priority` - 1-5 (1 = highest)
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
```
|
|
17
|
+
/backlog:add "Add user authentication" --type feature --priority 1
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Output
|
|
21
|
+
Generates task ID and saves to `.omgkit/sprints/backlog.yaml`
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: AI-powered backlog prioritization
|
|
3
|
+
allowed-tools: Task, Read, Write
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🎯 Backlog Prioritize
|
|
7
|
+
|
|
8
|
+
AI-powered prioritization of backlog tasks.
|
|
9
|
+
|
|
10
|
+
## Criteria
|
|
11
|
+
1. **Vision Alignment** - How well does it align with vision?
|
|
12
|
+
2. **User Impact** - How many users benefit?
|
|
13
|
+
3. **Effort** - How much work? (inverse weight)
|
|
14
|
+
4. **Risk of Delay** - What's the cost of not doing it?
|
|
15
|
+
5. **Dependencies** - Does it unblock other work?
|
|
16
|
+
|
|
17
|
+
## Output
|
|
18
|
+
Reordered backlog with justification for top priorities.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Display backlog
|
|
3
|
+
allowed-tools: Read
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 📋 Backlog Show
|
|
7
|
+
|
|
8
|
+
Display all tasks in backlog.
|
|
9
|
+
|
|
10
|
+
## Grouped By
|
|
11
|
+
- Priority
|
|
12
|
+
- Type
|
|
13
|
+
- Status
|
|
14
|
+
|
|
15
|
+
## Output
|
|
16
|
+
```
|
|
17
|
+
📋 Backlog (X tasks)
|
|
18
|
+
|
|
19
|
+
Priority 1:
|
|
20
|
+
TASK-001 [feature] Add authentication
|
|
21
|
+
TASK-002 [bugfix] Fix login error
|
|
22
|
+
|
|
23
|
+
Priority 2:
|
|
24
|
+
TASK-003 [docs] Update README
|
|
25
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Initialize OMGKIT in project
|
|
3
|
+
allowed-tools: Bash, Write
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🔮 Initialize OMGKIT
|
|
7
|
+
|
|
8
|
+
Create `.omgkit/` directory structure.
|
|
9
|
+
|
|
10
|
+
## Creates
|
|
11
|
+
```
|
|
12
|
+
.omgkit/
|
|
13
|
+
├── config.yaml
|
|
14
|
+
├── settings.json
|
|
15
|
+
├── sprints/
|
|
16
|
+
│ ├── vision.yaml
|
|
17
|
+
│ └── backlog.yaml
|
|
18
|
+
├── plans/
|
|
19
|
+
├── docs/
|
|
20
|
+
└── logs/
|
|
21
|
+
OMEGA.md
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Next Steps
|
|
25
|
+
1. `/vision:set` - Set your product vision
|
|
26
|
+
2. `/sprint:new` - Create first sprint
|
|
27
|
+
3. `/team:run` - Start AI team
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Show sprint progress
|
|
3
|
+
allowed-tools: Read
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 📊 Sprint Current
|
|
7
|
+
|
|
8
|
+
Show current sprint progress.
|
|
9
|
+
|
|
10
|
+
## Display
|
|
11
|
+
```
|
|
12
|
+
Sprint: [Name]
|
|
13
|
+
Day: X of Y
|
|
14
|
+
Progress: ██████░░░░ 60%
|
|
15
|
+
|
|
16
|
+
Tasks:
|
|
17
|
+
✅ Completed: X
|
|
18
|
+
🔄 In Progress: X
|
|
19
|
+
⏳ Pending: X
|
|
20
|
+
|
|
21
|
+
Velocity: X tasks/day
|
|
22
|
+
```
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: End sprint with retrospective
|
|
3
|
+
allowed-tools: Task, Read, Write
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🏁 Sprint End
|
|
7
|
+
|
|
8
|
+
End current sprint and generate retrospective.
|
|
9
|
+
|
|
10
|
+
## Actions
|
|
11
|
+
1. Set status: `completed`
|
|
12
|
+
2. Calculate final metrics
|
|
13
|
+
3. Generate retrospective
|
|
14
|
+
4. Archive sprint
|
|
15
|
+
5. Prepare next sprint
|
|
16
|
+
|
|
17
|
+
## Retrospective
|
|
18
|
+
```markdown
|
|
19
|
+
## Sprint Retrospective
|
|
20
|
+
|
|
21
|
+
### Metrics
|
|
22
|
+
- Completed: X/Y tasks
|
|
23
|
+
- Velocity: X tasks/day
|
|
24
|
+
|
|
25
|
+
### What Went Well
|
|
26
|
+
- [Success]
|
|
27
|
+
|
|
28
|
+
### What Could Improve
|
|
29
|
+
- [Learning]
|
|
30
|
+
|
|
31
|
+
### Action Items
|
|
32
|
+
- [Next sprint improvement]
|
|
33
|
+
```
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create new sprint
|
|
3
|
+
allowed-tools: Task, Read, Write, Grep, Glob
|
|
4
|
+
argument-hint: [name] [--propose]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🏃 Sprint New: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Create new sprint.
|
|
10
|
+
|
|
11
|
+
## Options
|
|
12
|
+
- `--propose` - AI analyzes codebase and proposes tasks
|
|
13
|
+
|
|
14
|
+
## AI Proposal Analyzes
|
|
15
|
+
- TODOs and FIXMEs in code
|
|
16
|
+
- Test coverage gaps
|
|
17
|
+
- Documentation gaps
|
|
18
|
+
- Features aligned with vision
|
|
19
|
+
- Technical debt
|
|
20
|
+
|
|
21
|
+
## Output
|
|
22
|
+
Save to: `.omgkit/sprints/current.yaml`
|
|
23
|
+
|
|
24
|
+
```yaml
|
|
25
|
+
sprint:
|
|
26
|
+
name: Sprint 1
|
|
27
|
+
status: planning
|
|
28
|
+
start_date: null
|
|
29
|
+
end_date: null
|
|
30
|
+
tasks: []
|
|
31
|
+
```
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Start current sprint
|
|
3
|
+
allowed-tools: Read, Write
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# ▶️ Sprint Start
|
|
7
|
+
|
|
8
|
+
Start the current sprint.
|
|
9
|
+
|
|
10
|
+
## Actions
|
|
11
|
+
1. Set status: `active`
|
|
12
|
+
2. Set start_date: today
|
|
13
|
+
3. Calculate end_date (default: 14 days)
|
|
14
|
+
4. Initialize progress tracking
|
|
15
|
+
|
|
16
|
+
## Next
|
|
17
|
+
Use `/team:run` to start AI team execution.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Ask the AI team a question
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob, WebSearch
|
|
4
|
+
argument-hint: <question>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ❓ Team Ask: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Ask the AI team: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Analyze question
|
|
13
|
+
2. Route to appropriate agent(s)
|
|
14
|
+
3. Gather responses
|
|
15
|
+
4. Synthesize answer
|
|
16
|
+
|
|
17
|
+
## Routing
|
|
18
|
+
- Technical: fullstack-developer, architect
|
|
19
|
+
- Strategy: oracle
|
|
20
|
+
- Research: researcher
|
|
21
|
+
- Security: security-auditor
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Run AI team on sprint tasks
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep, Glob
|
|
4
|
+
argument-hint: [--mode MODE]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🤖 Team Run
|
|
8
|
+
|
|
9
|
+
Start AI team on sprint tasks.
|
|
10
|
+
|
|
11
|
+
## Modes
|
|
12
|
+
- `--mode full-auto` - No human intervention
|
|
13
|
+
- `--mode semi-auto` - Review at checkpoints (default)
|
|
14
|
+
- `--mode manual` - Approve each step
|
|
15
|
+
|
|
16
|
+
## Process
|
|
17
|
+
1. Load current sprint
|
|
18
|
+
2. Assign tasks to agents
|
|
19
|
+
3. Execute in priority order
|
|
20
|
+
4. Report progress
|
|
21
|
+
|
|
22
|
+
## Agent Assignment
|
|
23
|
+
| Task Type | Agent |
|
|
24
|
+
|-----------|-------|
|
|
25
|
+
| feature | fullstack-developer |
|
|
26
|
+
| bugfix | debugger |
|
|
27
|
+
| docs | docs-manager |
|
|
28
|
+
| test | tester |
|
|
29
|
+
| research | oracle |
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Show AI team activity
|
|
3
|
+
allowed-tools: Read
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🤖 Team Status
|
|
7
|
+
|
|
8
|
+
Show current AI team activity.
|
|
9
|
+
|
|
10
|
+
## Display
|
|
11
|
+
```
|
|
12
|
+
🤖 Team Status
|
|
13
|
+
|
|
14
|
+
Active Agents:
|
|
15
|
+
fullstack-developer: Implementing TASK-001
|
|
16
|
+
tester: Writing tests for user module
|
|
17
|
+
|
|
18
|
+
Queue:
|
|
19
|
+
TASK-002 → debugger
|
|
20
|
+
TASK-003 → docs-manager
|
|
21
|
+
|
|
22
|
+
Completed Today: 3 tasks
|
|
23
|
+
```
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Set product vision interactively
|
|
3
|
+
allowed-tools: Read, Write
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🎯 Set Vision
|
|
7
|
+
|
|
8
|
+
Interactive vision setting. I'll ask one question at a time.
|
|
9
|
+
|
|
10
|
+
## Questions
|
|
11
|
+
1. What are you building? (product name)
|
|
12
|
+
2. One-line tagline?
|
|
13
|
+
3. Who are your primary users?
|
|
14
|
+
4. What are the main goals? (3-5)
|
|
15
|
+
5. What are the constraints?
|
|
16
|
+
6. How will you measure success?
|
|
17
|
+
|
|
18
|
+
## Output
|
|
19
|
+
Save to: `.omgkit/sprints/vision.yaml`
|
|
20
|
+
|
|
21
|
+
After completion, use `/sprint:new --propose` for AI-suggested tasks.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Display current vision
|
|
3
|
+
allowed-tools: Read
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🎯 Show Vision
|
|
7
|
+
|
|
8
|
+
Display current product vision from `.omgkit/sprints/vision.yaml`
|
|
9
|
+
|
|
10
|
+
## Shows
|
|
11
|
+
- Product name & tagline
|
|
12
|
+
- Target users
|
|
13
|
+
- Goals
|
|
14
|
+
- Constraints
|
|
15
|
+
- Success metrics
|
|
File without changes
|