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,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Quick UI implementation
|
|
3
|
+
allowed-tools: Read, Write
|
|
4
|
+
argument-hint: <UI description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ⚡ Design Fast: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Quick UI implementation for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Focus
|
|
12
|
+
- Functional first
|
|
13
|
+
- Basic styling
|
|
14
|
+
- Core interactions
|
|
15
|
+
- Skip polish
|
|
16
|
+
|
|
17
|
+
Get it working, refine later.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: High-quality UI with polish
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash
|
|
4
|
+
argument-hint: <UI description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ✨ Design Good: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
High-quality UI for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Includes
|
|
12
|
+
- Polished design
|
|
13
|
+
- Animations
|
|
14
|
+
- Responsive
|
|
15
|
+
- Accessible
|
|
16
|
+
- Dark mode support
|
|
17
|
+
|
|
18
|
+
## Quality Checklist
|
|
19
|
+
- [ ] Visual hierarchy
|
|
20
|
+
- [ ] Consistent spacing
|
|
21
|
+
- [ ] Smooth transitions
|
|
22
|
+
- [ ] Keyboard navigation
|
|
23
|
+
- [ ] Screen reader support
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Implement UI from screenshot
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash
|
|
4
|
+
argument-hint: <screenshot reference>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 📸 Design Screenshot: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Implement UI from screenshot.
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Analyze screenshot
|
|
13
|
+
2. Identify components
|
|
14
|
+
3. Generate code
|
|
15
|
+
4. Style with Tailwind
|
|
16
|
+
5. Add interactions
|
|
17
|
+
|
|
18
|
+
## Output
|
|
19
|
+
- React/Vue component
|
|
20
|
+
- Tailwind styling
|
|
21
|
+
- Responsive design
|
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Full feature development with planning, testing, and review
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <feature description>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🍳 Feature: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Build feature: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow
|
|
12
|
+
1. **Plan** (planner) - Create implementation plan
|
|
13
|
+
2. **Implement** (fullstack-developer) - Write code
|
|
14
|
+
3. **Test** (tester) - Write and run tests
|
|
15
|
+
4. **Review** (code-reviewer) - Code review
|
|
16
|
+
5. **Commit** (git-manager) - Create commit
|
|
17
|
+
|
|
18
|
+
## Progress
|
|
19
|
+
- [ ] Planning complete
|
|
20
|
+
- [ ] Implementation complete
|
|
21
|
+
- [ ] Tests passing
|
|
22
|
+
- [ ] Review approved
|
|
23
|
+
- [ ] Committed
|
|
24
|
+
|
|
25
|
+
Show progress after each step.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Fix CI/CD pipeline issues
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, WebFetch
|
|
4
|
+
argument-hint: <github-action-url>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔧 Fix CI: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Analyze and fix CI failure.
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Fetch CI logs from URL
|
|
13
|
+
2. Analyze failure reason
|
|
14
|
+
3. Identify root cause
|
|
15
|
+
4. Implement fix
|
|
16
|
+
5. Push and verify
|
|
17
|
+
|
|
18
|
+
## Common Issues
|
|
19
|
+
- Dependency failures
|
|
20
|
+
- Test failures
|
|
21
|
+
- Build errors
|
|
22
|
+
- Environment issues
|
|
23
|
+
- Timeout issues
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Quick bug fix with minimal investigation
|
|
3
|
+
allowed-tools: Read, Write, Bash, Grep
|
|
4
|
+
argument-hint: <bug>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ⚡ Fix Fast: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Quick fix for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
Skip deep analysis. Apply obvious fix immediately.
|
|
12
|
+
|
|
13
|
+
## Process
|
|
14
|
+
1. Locate the issue
|
|
15
|
+
2. Apply fix
|
|
16
|
+
3. Verify it works
|
|
17
|
+
4. Done
|
|
18
|
+
|
|
19
|
+
Use for obvious bugs with clear solutions.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Complex bug fix with deep investigation
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep, Glob, WebSearch
|
|
4
|
+
argument-hint: <complex bug>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔬 Fix Hard: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Deep investigation for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow
|
|
12
|
+
1. **Analyze** (oracle) - Apply 7 thinking modes
|
|
13
|
+
2. **Investigate** (debugger) - Multiple hypotheses
|
|
14
|
+
3. **Fix** (fullstack-developer) - Implement solution
|
|
15
|
+
4. **Test** (tester) - Comprehensive testing
|
|
16
|
+
|
|
17
|
+
## Oracle Analysis
|
|
18
|
+
Apply all 7 modes:
|
|
19
|
+
- 🔭 Telescopic - Bigger context
|
|
20
|
+
- 🔬 Microscopic - First principles
|
|
21
|
+
- ↔️ Lateral - Other approaches
|
|
22
|
+
- 🔄 Inversion - What causes failure
|
|
23
|
+
- ⏳ Temporal - When did it start
|
|
24
|
+
- 🕸️ Systemic - System effects
|
|
25
|
+
- ⚛️ Quantum - All possibilities
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Auto-fetch logs and fix issues
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 📋 Fix from Logs
|
|
7
|
+
|
|
8
|
+
Fetch recent error logs, analyze, and fix.
|
|
9
|
+
|
|
10
|
+
## Process
|
|
11
|
+
1. Find log files
|
|
12
|
+
2. Extract recent errors
|
|
13
|
+
3. Analyze patterns
|
|
14
|
+
4. Fix identified issues
|
|
15
|
+
5. Verify fixes
|
|
16
|
+
|
|
17
|
+
## Log Locations
|
|
18
|
+
- `logs/`
|
|
19
|
+
- `*.log`
|
|
20
|
+
- Console output
|
|
21
|
+
- Error tracking
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Fix failing tests
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 🧪 Fix Tests
|
|
7
|
+
|
|
8
|
+
Fix all failing tests.
|
|
9
|
+
|
|
10
|
+
## Process
|
|
11
|
+
1. Run test suite
|
|
12
|
+
2. Collect failures
|
|
13
|
+
3. Analyze each failure
|
|
14
|
+
4. Fix one by one
|
|
15
|
+
5. Verify all pass
|
|
16
|
+
|
|
17
|
+
## Commands
|
|
18
|
+
```bash
|
|
19
|
+
npm test
|
|
20
|
+
npm run test:coverage
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Report results after fixing.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Debug and fix bugs
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Grep, Glob
|
|
4
|
+
argument-hint: <error or issue>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔧 Fix: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Fix issue: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Workflow
|
|
12
|
+
1. **Investigate** (debugger) - Find root cause
|
|
13
|
+
2. **Fix** (fullstack-developer) - Implement fix
|
|
14
|
+
3. **Test** (tester) - Verify fix works
|
|
15
|
+
4. **Commit** (git-manager) - Commit fix
|
|
16
|
+
|
|
17
|
+
## Debug Process
|
|
18
|
+
1. Reproduce the issue
|
|
19
|
+
2. Form hypotheses
|
|
20
|
+
3. Test each hypothesis
|
|
21
|
+
4. Implement minimal fix
|
|
22
|
+
5. Add regression test
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Code review with security and quality focus
|
|
3
|
+
allowed-tools: Read, Grep, Glob
|
|
4
|
+
argument-hint: [file or directory]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔍 Review: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Code review for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Checklist
|
|
12
|
+
|
|
13
|
+
### Security
|
|
14
|
+
- [ ] No hardcoded secrets
|
|
15
|
+
- [ ] Input validation
|
|
16
|
+
- [ ] SQL injection prevention
|
|
17
|
+
- [ ] XSS prevention
|
|
18
|
+
|
|
19
|
+
### Performance
|
|
20
|
+
- [ ] No N+1 queries
|
|
21
|
+
- [ ] Efficient algorithms
|
|
22
|
+
- [ ] Proper caching
|
|
23
|
+
|
|
24
|
+
### Quality
|
|
25
|
+
- [ ] Single responsibility
|
|
26
|
+
- [ ] No duplication
|
|
27
|
+
- [ ] Proper error handling
|
|
28
|
+
- [ ] Type safety
|
|
29
|
+
|
|
30
|
+
## Output
|
|
31
|
+
Provide: APPROVED or CHANGES_REQUESTED with details.
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Test-driven development workflow
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Glob
|
|
4
|
+
argument-hint: <feature>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔴🟢♻️ TDD: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Test-driven development for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## TDD Cycle
|
|
12
|
+
1. 🔴 **RED** - Write failing test
|
|
13
|
+
2. 🟢 **GREEN** - Make it pass (minimal code)
|
|
14
|
+
3. ♻️ **REFACTOR** - Improve code
|
|
15
|
+
4. Repeat
|
|
16
|
+
|
|
17
|
+
## Rules
|
|
18
|
+
- No production code without failing test
|
|
19
|
+
- Only enough code to pass test
|
|
20
|
+
- Refactor only when green
|
|
21
|
+
|
|
22
|
+
## Process
|
|
23
|
+
For each requirement:
|
|
24
|
+
1. Write test first
|
|
25
|
+
2. Run test (should fail)
|
|
26
|
+
3. Write minimal code to pass
|
|
27
|
+
4. Run test (should pass)
|
|
28
|
+
5. Refactor if needed
|
|
29
|
+
6. Next requirement
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Generate and run tests
|
|
3
|
+
allowed-tools: Task, Read, Write, Bash, Glob
|
|
4
|
+
argument-hint: <scope>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🧪 Test: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Generate tests for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Test Types
|
|
12
|
+
1. **Unit Tests** - Individual functions
|
|
13
|
+
2. **Integration Tests** - Component interactions
|
|
14
|
+
3. **E2E Tests** - User flows
|
|
15
|
+
|
|
16
|
+
## Coverage Targets
|
|
17
|
+
- Unit: 80%+
|
|
18
|
+
- Integration: 60%+
|
|
19
|
+
- E2E: Critical paths
|
|
20
|
+
|
|
21
|
+
## Output
|
|
22
|
+
```
|
|
23
|
+
Tests: X passed, Y failed
|
|
24
|
+
Coverage: Z%
|
|
25
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Smart commit with conventional message
|
|
3
|
+
allowed-tools: Bash, Read
|
|
4
|
+
argument-hint: [message]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 📝 Commit: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Create conventional commit.
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Stage changes
|
|
13
|
+
2. Analyze diff
|
|
14
|
+
3. Generate commit message
|
|
15
|
+
4. Commit
|
|
16
|
+
|
|
17
|
+
## Commit Format
|
|
18
|
+
```
|
|
19
|
+
<type>(<scope>): <subject>
|
|
20
|
+
|
|
21
|
+
<body>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Types
|
|
25
|
+
- feat: New feature
|
|
26
|
+
- fix: Bug fix
|
|
27
|
+
- docs: Documentation
|
|
28
|
+
- style: Formatting
|
|
29
|
+
- refactor: Code restructure
|
|
30
|
+
- test: Tests
|
|
31
|
+
- chore: Maintenance
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Deploy to environment
|
|
3
|
+
allowed-tools: Bash, Read
|
|
4
|
+
argument-hint: [env]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🚀 Deploy: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Deploy to: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Environments
|
|
12
|
+
- development
|
|
13
|
+
- staging
|
|
14
|
+
- production
|
|
15
|
+
|
|
16
|
+
## Process
|
|
17
|
+
1. Verify clean state
|
|
18
|
+
2. Run tests
|
|
19
|
+
3. Build
|
|
20
|
+
4. Deploy
|
|
21
|
+
5. Verify deployment
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Create pull request
|
|
3
|
+
allowed-tools: Bash, Read
|
|
4
|
+
argument-hint: [title]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🔀 PR: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Create pull request for current branch.
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Get current branch
|
|
13
|
+
2. Analyze commits
|
|
14
|
+
3. Generate PR description
|
|
15
|
+
4. Create PR via gh CLI
|
|
16
|
+
|
|
17
|
+
## Command
|
|
18
|
+
```bash
|
|
19
|
+
gh pr create --title "Title" --body "Description"
|
|
20
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Commit and create PR
|
|
3
|
+
allowed-tools: Bash, Read, Write
|
|
4
|
+
argument-hint: [message]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🚀 Ship: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Commit changes and create PR.
|
|
10
|
+
|
|
11
|
+
## Workflow
|
|
12
|
+
1. Stage all changes
|
|
13
|
+
2. Create commit
|
|
14
|
+
3. Push to remote
|
|
15
|
+
4. Create pull request
|
|
16
|
+
|
|
17
|
+
## PR Template
|
|
18
|
+
```markdown
|
|
19
|
+
## Summary
|
|
20
|
+
[Changes made]
|
|
21
|
+
|
|
22
|
+
## Test Plan
|
|
23
|
+
- [ ] Tests pass
|
|
24
|
+
- [ ] Manual testing
|
|
25
|
+
|
|
26
|
+
## Checklist
|
|
27
|
+
- [ ] Code reviewed
|
|
28
|
+
- [ ] Docs updated
|
|
29
|
+
```
|
|
File without changes
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Find 1000x moonshot path
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob, WebSearch, WebFetch
|
|
4
|
+
argument-hint: <topic>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🌙 1000x: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
1000x moonshot for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Moonshot Questions
|
|
12
|
+
1. What would Google/Apple/OpenAI do?
|
|
13
|
+
2. What makes this problem obsolete?
|
|
14
|
+
3. What tech enables 1000x in 5 years?
|
|
15
|
+
4. What if we had unlimited resources?
|
|
16
|
+
5. What would a 10-year-old suggest?
|
|
17
|
+
|
|
18
|
+
## Revolutionary Thinking
|
|
19
|
+
- Challenge every assumption
|
|
20
|
+
- Ignore current constraints
|
|
21
|
+
- Think from first principles
|
|
22
|
+
- Consider exponential tech
|
|
23
|
+
|
|
24
|
+
## Output
|
|
25
|
+
Save to: `docs/omega/1000x-<topic>.md`
|
|
26
|
+
|
|
27
|
+
```markdown
|
|
28
|
+
# 1000x Moonshot: [Topic]
|
|
29
|
+
|
|
30
|
+
## The Vision
|
|
31
|
+
[Audacious goal]
|
|
32
|
+
|
|
33
|
+
## Why It's Possible
|
|
34
|
+
[Enabling factors]
|
|
35
|
+
|
|
36
|
+
## Path to 1000x
|
|
37
|
+
[Phases and milestones]
|
|
38
|
+
|
|
39
|
+
## First Step
|
|
40
|
+
[What to do tomorrow]
|
|
41
|
+
```
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Find 100x paradigm shift
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob, WebSearch, WebFetch
|
|
4
|
+
argument-hint: <topic>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🌟 100x: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Find 100x paradigm shift for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
100x requires fundamental rethinking.
|
|
12
|
+
|
|
13
|
+
## Apply All 7 Oracle Modes
|
|
14
|
+
1. 🔭 Telescopic - Zoom out to industry level
|
|
15
|
+
2. 🔬 Microscopic - First principles
|
|
16
|
+
3. ↔️ Lateral - Cross-industry solutions
|
|
17
|
+
4. 🔄 Inversion - What guarantees failure?
|
|
18
|
+
5. ⏳ Temporal - 10-year view
|
|
19
|
+
6. 🕸️ Systemic - System dynamics
|
|
20
|
+
7. ⚛️ Quantum - All possibilities
|
|
21
|
+
|
|
22
|
+
## Output
|
|
23
|
+
Save to: `docs/omega/100x-<topic>.md`
|
|
24
|
+
|
|
25
|
+
```markdown
|
|
26
|
+
# 100x Analysis: [Topic]
|
|
27
|
+
|
|
28
|
+
## Paradigm Shift Required
|
|
29
|
+
[What fundamental change is needed]
|
|
30
|
+
|
|
31
|
+
## 7-Mode Analysis
|
|
32
|
+
[Each mode's insights]
|
|
33
|
+
|
|
34
|
+
## 100x Vision
|
|
35
|
+
[What 100x looks like]
|
|
36
|
+
|
|
37
|
+
## Path
|
|
38
|
+
[How to get there]
|
|
39
|
+
```
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Find 10x improvement path
|
|
3
|
+
allowed-tools: Task, Read, Grep, Glob, WebSearch
|
|
4
|
+
argument-hint: <topic>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 🚀 10x: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Find 10x improvement for: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Analysis Framework
|
|
12
|
+
|
|
13
|
+
### 1. Current State
|
|
14
|
+
- What exists now?
|
|
15
|
+
- Current metrics?
|
|
16
|
+
- Pain points?
|
|
17
|
+
|
|
18
|
+
### 2. Leverage Points (Ω1)
|
|
19
|
+
- What can be automated?
|
|
20
|
+
- What multiplies effort?
|
|
21
|
+
|
|
22
|
+
### 3. Abstraction (Ω2)
|
|
23
|
+
- What class of problem is this?
|
|
24
|
+
- Solve once for N cases?
|
|
25
|
+
|
|
26
|
+
### 4. 10x Target
|
|
27
|
+
- What does 10x look like?
|
|
28
|
+
- How to measure?
|
|
29
|
+
|
|
30
|
+
## Output
|
|
31
|
+
Save to: `docs/omega/10x-<topic>.md`
|
|
32
|
+
|
|
33
|
+
```markdown
|
|
34
|
+
# 10x Analysis: [Topic]
|
|
35
|
+
|
|
36
|
+
## Current State
|
|
37
|
+
[Analysis]
|
|
38
|
+
|
|
39
|
+
## 10x Target
|
|
40
|
+
[What 10x looks like]
|
|
41
|
+
|
|
42
|
+
## Path to 10x
|
|
43
|
+
1. [Step] - [Expected improvement]
|
|
44
|
+
|
|
45
|
+
## Quick Wins (2x now)
|
|
46
|
+
1. [Immediate action]
|
|
47
|
+
```
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Display 10 Omega Dimensions
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# 📊 10 Omega Dimensions
|
|
6
|
+
|
|
7
|
+
Measure Omega-level across all dimensions:
|
|
8
|
+
|
|
9
|
+
| # | Dimension | Current | Target | Path to Omega |
|
|
10
|
+
|---|-----------|---------|--------|---------------|
|
|
11
|
+
| D1 | **Accuracy** | ? | Error → 0 | Validation, testing |
|
|
12
|
+
| D2 | **Speed** | ? | Time ÷ 1000 | Automation, parallel |
|
|
13
|
+
| D3 | **Cost** | ? | Cost → 0 | Efficiency, scale |
|
|
14
|
+
| D4 | **Human Effort** | ? | FTE ÷ 100 | AI agents, automation |
|
|
15
|
+
| D5 | **Quality** | ? | Excellence | Standards, review |
|
|
16
|
+
| D6 | **Intelligence** | ? | Self-improving | Learning systems |
|
|
17
|
+
| D7 | **Autonomy** | ? | Months unattended | Full automation |
|
|
18
|
+
| D8 | **Systematization** | ? | 100% consistent | Processes, templates |
|
|
19
|
+
| D9 | **Security** | ? | Zero vulnerabilities | Defense in depth |
|
|
20
|
+
| D10 | **Aesthetics** | ? | World-class | Design excellence |
|
|
21
|
+
|
|
22
|
+
## True Omega
|
|
23
|
+
Achieve 10x+ improvement on ALL dimensions simultaneously.
|
|
24
|
+
|
|
25
|
+
## Assessment
|
|
26
|
+
Use `/10x` to analyze each dimension for your project.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Display 7 Omega Principles
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# 🔮 7 Omega Principles
|
|
6
|
+
|
|
7
|
+
## Ω1. LEVERAGE MULTIPLICATION 💪
|
|
8
|
+
> "Don't do. Create systems that do."
|
|
9
|
+
|
|
10
|
+
Build once, use infinitely. Automate everything. Create multipliers.
|
|
11
|
+
|
|
12
|
+
## Ω2. TRANSCENDENT ABSTRACTION 🎯
|
|
13
|
+
> "Solve the class, not the instance."
|
|
14
|
+
|
|
15
|
+
Find patterns. Solve for N cases. Build frameworks, not features.
|
|
16
|
+
|
|
17
|
+
## Ω3. AGENTIC DECOMPOSITION 🤖
|
|
18
|
+
> "Complex task = Orchestra of specialists."
|
|
19
|
+
|
|
20
|
+
Break into specialist agents. Clear interfaces. Parallel execution.
|
|
21
|
+
|
|
22
|
+
## Ω4. FEEDBACK ACCELERATION ⚡
|
|
23
|
+
> "Compress feedback loops."
|
|
24
|
+
|
|
25
|
+
Test immediately. Deploy continuously. Learn faster.
|
|
26
|
+
|
|
27
|
+
## Ω5. ZERO-MARGINAL-COST SCALING 📈
|
|
28
|
+
> "Build once, scale infinitely."
|
|
29
|
+
|
|
30
|
+
No per-unit cost. Digital goods. Platform thinking.
|
|
31
|
+
|
|
32
|
+
## Ω6. EMERGENT INTELLIGENCE 🌟
|
|
33
|
+
> "System > Sum of parts."
|
|
34
|
+
|
|
35
|
+
Design for emergence. Enable self-organization. Create synergies.
|
|
36
|
+
|
|
37
|
+
## Ω7. AESTHETIC PERFECTION ✨
|
|
38
|
+
> "Excellence is not optional."
|
|
39
|
+
|
|
40
|
+
Beauty in code. Elegance in design. Perfection in execution.
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
*Think Omega. Build Omega. Be Omega.* 🔮
|
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Quick question with codebase context
|
|
3
|
+
allowed-tools: Read, Grep, Glob
|
|
4
|
+
argument-hint: <question>
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# ❓ Ask: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Answer: **$ARGUMENTS**
|
|
10
|
+
|
|
11
|
+
## Process
|
|
12
|
+
1. Understand the question
|
|
13
|
+
2. Search codebase for context
|
|
14
|
+
3. Analyze relevant code
|
|
15
|
+
4. Provide direct answer
|
|
16
|
+
|
|
17
|
+
## Response Format
|
|
18
|
+
- Direct answer first
|
|
19
|
+
- Supporting evidence
|
|
20
|
+
- Code references if relevant
|
|
21
|
+
- Recommendations if applicable
|