superkit-mcp-server 1.1.3 → 1.2.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.
Files changed (82) hide show
  1. package/SUPERKIT.md +4 -4
  2. package/build/index.js +30 -19
  3. package/commands/README.md +122 -0
  4. package/commands/ask.toml +72 -0
  5. package/commands/brainstorm.toml +120 -0
  6. package/commands/chat.toml +73 -0
  7. package/commands/code-preview.toml +38 -0
  8. package/commands/code.toml +29 -0
  9. package/commands/content.toml +201 -0
  10. package/commands/cook.toml +78 -0
  11. package/commands/copywrite.toml +132 -0
  12. package/commands/db.toml +193 -0
  13. package/commands/debug.toml +167 -0
  14. package/commands/design.toml +159 -0
  15. package/commands/dev-rules.toml +14 -0
  16. package/commands/do.toml +117 -0
  17. package/commands/doc-rules.toml +14 -0
  18. package/commands/docs.toml +148 -0
  19. package/commands/fix.toml +440 -0
  20. package/commands/fullstack.toml +176 -0
  21. package/commands/git.toml +236 -0
  22. package/commands/help.toml +84 -0
  23. package/commands/integrate.toml +127 -0
  24. package/commands/journal.toml +137 -0
  25. package/commands/kit-setup.toml +41 -0
  26. package/commands/mcp.toml +183 -0
  27. package/commands/orchestration.toml +15 -0
  28. package/commands/plan.toml +172 -0
  29. package/commands/pm.toml +149 -0
  30. package/commands/pr.toml +51 -0
  31. package/commands/project.toml +33 -0
  32. package/commands/research.toml +118 -0
  33. package/commands/review-pr.toml +64 -0
  34. package/commands/review.toml +191 -0
  35. package/commands/scout-ext.toml +97 -0
  36. package/commands/scout.toml +80 -0
  37. package/commands/screenshot.toml +65 -0
  38. package/commands/session.toml +98 -0
  39. package/commands/skill.toml +385 -0
  40. package/commands/status.toml +23 -0
  41. package/commands/team.toml +56 -0
  42. package/commands/test.toml +165 -0
  43. package/commands/ticket.toml +71 -0
  44. package/commands/use.toml +106 -0
  45. package/commands/video.toml +84 -0
  46. package/commands/watzup.toml +71 -0
  47. package/commands/workflow.toml +14 -0
  48. package/package.json +4 -2
  49. package/{workflows → skills/workflows}/README.md +3 -3
  50. package/{workflows → skills/workflows}/development-rules.md +5 -0
  51. package/{workflows → skills/workflows}/documentation-management.md +5 -0
  52. package/{workflows → skills/workflows}/orchestration-protocol.md +5 -0
  53. package/{workflows → skills/workflows}/primary-workflow.md +5 -0
  54. /package/{workflows → skills/workflows}/adr.md +0 -0
  55. /package/{workflows → skills/workflows}/changelog.md +0 -0
  56. /package/{workflows → skills/workflows}/compound.md +0 -0
  57. /package/{workflows → skills/workflows}/compound_health.md +0 -0
  58. /package/{workflows → skills/workflows}/create-agent-skill.md +0 -0
  59. /package/{workflows → skills/workflows}/cycle.md +0 -0
  60. /package/{workflows → skills/workflows}/deploy-docs.md +0 -0
  61. /package/{workflows → skills/workflows}/doc.md +0 -0
  62. /package/{workflows → skills/workflows}/explore.md +0 -0
  63. /package/{workflows → skills/workflows}/generate_command.md +0 -0
  64. /package/{workflows → skills/workflows}/heal-skill.md +0 -0
  65. /package/{workflows → skills/workflows}/housekeeping.md +0 -0
  66. /package/{workflows → skills/workflows}/kit-setup.md +0 -0
  67. /package/{workflows → skills/workflows}/map-codebase.md +0 -0
  68. /package/{workflows → skills/workflows}/plan-compound.md +0 -0
  69. /package/{workflows → skills/workflows}/plan_review.md +0 -0
  70. /package/{workflows → skills/workflows}/promote_pattern.md +0 -0
  71. /package/{workflows → skills/workflows}/release-docs.md +0 -0
  72. /package/{workflows → skills/workflows}/report-bug.md +0 -0
  73. /package/{workflows → skills/workflows}/reproduce-bug.md +0 -0
  74. /package/{workflows → skills/workflows}/resolve_pr.md +0 -0
  75. /package/{workflows → skills/workflows}/resolve_todo.md +0 -0
  76. /package/{workflows → skills/workflows}/review-compound.md +0 -0
  77. /package/{workflows → skills/workflows}/skill-review.md +0 -0
  78. /package/{workflows → skills/workflows}/specs.md +0 -0
  79. /package/{workflows → skills/workflows}/triage-sprint.md +0 -0
  80. /package/{workflows → skills/workflows}/triage.md +0 -0
  81. /package/{workflows → skills/workflows}/work.md +0 -0
  82. /package/{workflows → skills/workflows}/xcode-test.md +0 -0
@@ -0,0 +1,106 @@
1
+ # Custom Assistants
2
+ # Usage: /use <assistant> <message>
3
+ # Chat with specialized AI assistants
4
+
5
+ description = "Use specific tools or workflows"
6
+
7
+
8
+
9
+ prompt = """
10
+ {{#if args}}
11
+ # 🤖 Custom Assistant Mode
12
+
13
+ Parse the input: {{args}}
14
+
15
+ The FIRST word is the assistant name, the REST is the user message.
16
+
17
+ ## Available Assistants:
18
+
19
+ ### 1. **coder** - Expert Programmer
20
+ - Write clean, efficient, well-documented code
21
+ - Follow best practices and design patterns
22
+ - Provide complete, working solutions
23
+
24
+ ### 2. **reviewer** - Code Review Specialist
25
+ - Analyze code for bugs and security issues
26
+ - Check performance and best practices
27
+ - Suggest specific improvements with examples
28
+
29
+ ### 3. **architect** - System Design Expert
30
+ - System design and architecture decisions
31
+ - Database schema design
32
+ - API design patterns
33
+ - Scalability considerations
34
+ - Use mermaid diagrams when helpful
35
+
36
+ ### 4. **debugger** - Bug Hunter
37
+ - Analyze the root cause of errors
38
+ - Explain why bugs happen
39
+ - Provide exact fixes
40
+ - Suggest prevention strategies
41
+
42
+ ### 5. **docs** - Documentation Writer
43
+ - README files
44
+ - API documentation
45
+ - User guides
46
+ - Clear language with helpful examples
47
+
48
+ ### 6. **brainstormer** - Trade-off Analyst
49
+ - Evaluate multiple approaches with pros/cons
50
+ - YAGNI assessment
51
+ - Recommendation with reasoning
52
+ - Saves you from writing wrong code
53
+
54
+ ### 7. **researcher** - Deep Research Expert
55
+ - Multi-source research (docs, GitHub, articles)
56
+ - Best practices extraction
57
+ - Security concerns identification
58
+ - Structured reports with citations
59
+
60
+ ### 8. **content** - Marketing Content Writer
61
+ - Landing pages, hero sections, CTAs
62
+ - Social media (Twitter threads, LinkedIn)
63
+ - Email campaigns
64
+ - A/B variants and CRO optimization
65
+
66
+ ---
67
+
68
+ **Instructions:**
69
+ 1. Identify which assistant the user wants (first word)
70
+ 2. Adopt that assistant's persona and expertise
71
+ 3. Respond to the user's message using that specialized perspective
72
+ 4. If assistant name not recognized, suggest available options
73
+
74
+ Now, respond as the requested assistant to the user's message.
75
+ {{else}}
76
+ # 🤖 Custom Assistants
77
+
78
+ Use specialized AI assistants for different tasks.
79
+
80
+ ## Usage:
81
+ ```
82
+ /use <assistant> <your message>
83
+ ```
84
+
85
+ ## Available Assistants:
86
+
87
+ | Assistant | Expertise |
88
+ |-----------|-----------|
89
+ | `coder` | Expert programmer, clean code |
90
+ | `reviewer` | Code review, security, performance |
91
+ | `architect` | System design, databases, APIs |
92
+ | `debugger` | Bug analysis, root cause, fixes |
93
+ | `docs` | Documentation, README, guides |
94
+
95
+ ## Examples:
96
+ ```
97
+ /use coder Write a function to debounce API calls
98
+ /use reviewer Check this code for security issues: [code]
99
+ /use architect Design a schema for a blog platform
100
+ /use debugger Why is this error happening: TypeError...
101
+ /use docs Write a README for my CLI tool
102
+ ```
103
+
104
+ Choose an assistant and ask your question!
105
+ {{/if}}
106
+ """
@@ -0,0 +1,84 @@
1
+ # `/video` - Video Analysis to Code
2
+
3
+ description = "Analyze video to generate code or design (Video Agent)"
4
+
5
+ prompt = """
6
+ # 🎬 VIDEO ANALYSIS AGENT
7
+
8
+ Analyze video and generate output:
9
+
10
+ **Input:** {{args}}
11
+
12
+ ## WORKFLOW
13
+
14
+ ### 1. VIDEO UNDERSTANDING
15
+ - Identify video type (tutorial, demo, design, animation)
16
+ - Identify key frames
17
+ - Understand flow and transitions
18
+
19
+ ### 2. ANALYSIS TYPE
20
+
21
+ #### UI/UX Demo
22
+ - Extract design system (colors, typography, spacing)
23
+ - Component breakdown
24
+ - Interaction patterns
25
+ - Responsive considerations
26
+
27
+ #### Tutorial/Walkthrough
28
+ - Step-by-step instructions
29
+ - Key code snippets
30
+ - Best practices mentioned
31
+ - Timestamps and references
32
+
33
+ #### Animation/Motion
34
+ - Animation timeline
35
+ - CSS/JavaScript animation code
36
+ - Framer Motion / GSAP equivalents
37
+
38
+ ### 3. CODE GENERATION
39
+
40
+ ```[language]
41
+ // Generated code based on video analysis
42
+ ```
43
+
44
+ ### 4. DESIGN TOKENS (if applicable)
45
+ ```css
46
+ :root {
47
+ /* Colors */
48
+ --primary: #...;
49
+ --secondary: #...;
50
+
51
+ /* Typography */
52
+ --font-heading: '...';
53
+ --font-body: '...';
54
+
55
+ /* Spacing */
56
+ --spacing-xs: ...;
57
+ }
58
+ ```
59
+
60
+ ### 5. COMPONENT STRUCTURE
61
+ ```
62
+ ComponentName/
63
+ ├── index.tsx
64
+ ├── styles.css
65
+ └── types.ts
66
+ ```
67
+
68
+ ## OUTPUT
69
+ - Clean, production-ready code
70
+ - Design tokens extracted
71
+ - Animation timing functions
72
+ - Responsive breakpoints
73
+
74
+ ## LIMITATIONS
75
+ ⚠️ Note: Video analysis accuracy depends on video quality and clarity.
76
+ For complex videos, may need multiple passes or clarification.
77
+ """
78
+
79
+ # ---
80
+ # USAGE:
81
+ # /video Analyze this UI demo and recreate the design
82
+ # /video Extract animation patterns from this motion design
83
+ # /video Convert this tutorial walkthrough into step-by-step guide
84
+ # ---
@@ -0,0 +1,71 @@
1
+ # Watzup - Project Status Overview
2
+ # Usage: /watzup
3
+ # Quick overview of project status
4
+
5
+ description = "Check recent activity and status"
6
+
7
+
8
+
9
+ prompt = """
10
+ # 📊 Project Status Check
11
+
12
+ Analyze the current project and provide a comprehensive status report.
13
+
14
+ ## Gather Information:
15
+
16
+ 1. **Git Status**
17
+ - Current branch
18
+ - Uncommitted changes
19
+ - Recent commits (last 5)
20
+ - Ahead/behind origin
21
+
22
+ 2. **Package Info** (if package.json exists)
23
+ - Name and version
24
+ - Dependencies count
25
+ - Scripts available
26
+ - Outdated packages (if possible)
27
+
28
+ 3. **Code Health**
29
+ - Scan for TODO/FIXME comments
30
+ - Count files by type (.ts, .js, .tsx, etc.)
31
+ - Estimate lines of code
32
+
33
+ 4. **Build/Test Status**
34
+ - Check if build script exists
35
+ - Check if test script exists
36
+ - Note any obvious issues
37
+
38
+ ## Output Format:
39
+
40
+ ```
41
+ 📊 PROJECT STATUS: [Project Name]
42
+ ═══════════════════════════════════
43
+
44
+ 🌿 Git Status
45
+ Branch: [branch]
46
+ Changes: [count] uncommitted files
47
+ Last commit: [message]
48
+
49
+ 📦 Dependencies
50
+ Production: [count]
51
+ Dev: [count]
52
+
53
+ 📝 Code Stats
54
+ Files: [count]
55
+ TODOs: [count]
56
+ FIXMEs: [count]
57
+
58
+ 🔧 Available Scripts
59
+ - npm run build
60
+ - npm run test
61
+ - ...
62
+
63
+ ⚠️ Issues Found
64
+ - [any issues]
65
+
66
+ ✅ Quick Actions
67
+ - [suggested next steps]
68
+ ```
69
+
70
+ Start the analysis now!
71
+ """
@@ -0,0 +1,14 @@
1
+ description = "View primary workflow guide (/cook)"
2
+
3
+ prompt = """
4
+ You are a Workflow Guide. Read and explain the primary workflow.
5
+
6
+ @{.agent/workflows/primary-workflow.md}
7
+
8
+ Based on the workflow above, help the user with: {{args}}
9
+
10
+ If no specific question, explain:
11
+ 1. The /cook workflow steps
12
+ 2. Quick workflows (feature, bugfix, refactor)
13
+ 3. When to use which command
14
+ """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superkit-mcp-server",
3
- "version": "1.1.3",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "description": "An MCP server for exploring and loading Super-Kit AI agent resources.",
6
6
  "main": "build/index.js",
@@ -13,8 +13,10 @@
13
13
  "dev": "tsc --watch"
14
14
  },
15
15
  "dependencies": {
16
+ "@iarna/toml": "^2.2.5",
16
17
  "@modelcontextprotocol/sdk": "^1.4.1",
17
18
  "playwright": "^1.58.2",
19
+ "toml": "^3.0.0",
18
20
  "zod": "^3.23.8"
19
21
  },
20
22
  "devDependencies": {
@@ -26,7 +28,7 @@
26
28
  "build/",
27
29
  "agents/",
28
30
  "skills/",
29
- "workflows/",
31
+ "commands/",
30
32
  "SUPERKIT.md",
31
33
  "README.md",
32
34
  "ARCHITECTURE.md"
@@ -1,7 +1,7 @@
1
1
  # Compound Engineering Workflows
2
2
 
3
- > **Quick Start:** New to this project? Read [critical-patterns.md](../docs/solutions/patterns/critical-patterns.md) first.
4
- > **Technical Architecture:** For the complete system architecture, see [docs/architecture/compound-system.md](../docs/architecture/compound-system.md).
3
+ > **Quick Start:** New to this project? Read [critical-patterns.md](../../docs/solutions/patterns/critical-patterns.md) first.
4
+ > **Technical Architecture:** For the complete system architecture, see [docs/architecture/compound-system.md](../../docs/architecture/compound-system.md).
5
5
 
6
6
  ## Purpose
7
7
 
@@ -164,7 +164,7 @@ ls plans/*.md 2>/dev/null
164
164
  ## Directory Structure
165
165
 
166
166
  ```
167
- .agent/workflows/ # You are here - all workflow commands
167
+ skills/workflows/ # You are here - all workflow definitions
168
168
  docs/solutions/ # Persistent knowledge base
169
169
  ├── patterns/ # Critical patterns (READ FIRST)
170
170
  ├── schema.yaml # Solution validation schema
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: development-rules
3
+ description: Code quality standards, testing targets, and pre-commit procedures to adhere to during development.
4
+ ---
5
+
1
6
  # Development Rules
2
7
 
3
8
  ## Code Quality Standards
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: documentation-management
3
+ description: Guidelines on when and where to update documentation, covering READMEs, API docs, and comments.
4
+ ---
5
+
1
6
  # Documentation Management
2
7
 
3
8
  ## When to Update Docs
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: orchestration-protocol
3
+ description: Best practices and patterns for agent coordination, including sequential, parallel, and hybrid models.
4
+ ---
5
+
1
6
  # Orchestration Protocol
2
7
 
3
8
  ## Agent Coordination Patterns
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: primary-workflow
3
+ description: Information about the primary workflow commands, including /cook for complex features and other quick tasks.
4
+ ---
5
+
1
6
  # Primary Workflow
2
7
 
3
8
  ## The `/cook` Workflow
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes