superkit-mcp-server 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ARCHITECTURE.md +4 -4
- package/commands/README.md +2 -2
- package/commands/chat.toml +12 -8
- package/commands/help.toml +3 -3
- package/commands/kit-setup.toml +2 -2
- package/commands/session.toml +11 -7
- package/commands/skill.toml +4 -4
- package/commands/team.toml +2 -2
- package/package.json +1 -1
package/ARCHITECTURE.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# Super-Kit Architecture
|
|
2
2
|
|
|
3
|
-
> Comprehensive AI Agent Capability Expansion Toolkit
|
|
3
|
+
> Comprehensive AI Agent Capability Expansion Toolkit
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
## 📋 Overview
|
|
8
8
|
|
|
9
|
-
Super-Kit is a model-agnostic and agent-agnostic toolkit designed to provide a highly structured engineering loop alongside granular domain expertise.
|
|
9
|
+
Super-Kit is a model-agnostic and agent-agnostic toolkit designed to provide a highly structured engineering loop alongside granular domain expertise.
|
|
10
10
|
|
|
11
11
|
- **Super Engineers & Domain Specialists** - A T-shaped team of AI personas.
|
|
12
12
|
- **Categorized Skills** - Technical knowledge, meta-engineering, and workflow instructions.
|
|
@@ -24,8 +24,8 @@ super-kit/
|
|
|
24
24
|
│ ├── rules/ # Universal mandates (e.g., clean-code, security-first)
|
|
25
25
|
├── agents/ # The T-Shaped AI Team Personas
|
|
26
26
|
├── skills/ # The Knowledge Modules
|
|
27
|
-
│ ├── meta/ # Session-resume, compound-docs, file-todos
|
|
28
|
-
│ ├── tech/ # Node.js, React, Python, Prisma
|
|
27
|
+
│ ├── meta/ # Session-resume, compound-docs, file-todos
|
|
28
|
+
│ ├── tech/ # Node.js, React, Python, Prisma
|
|
29
29
|
│ └── workflows/ # TDD, CI/CD, Code Review checklists
|
|
30
30
|
└── workflows/ # Slash commands and lifecycle loops
|
|
31
31
|
```
|
package/commands/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Commands
|
|
2
2
|
|
|
3
|
-
This directory contains all **custom slash commands** for the
|
|
3
|
+
This directory contains all **custom slash commands** for the Super-Kit extension. Commands are defined as TOML files and automatically loaded by the AI agent client.
|
|
4
4
|
|
|
5
5
|
## Overview
|
|
6
6
|
|
|
7
|
-
Commands extend
|
|
7
|
+
Commands extend Super-Kit's capabilities by providing specialized prompts for specific tasks. Each command file follows the TOML format with `description` and `prompt` fields.
|
|
8
8
|
|
|
9
9
|
## Command Categories
|
|
10
10
|
|
package/commands/chat.toml
CHANGED
|
@@ -7,13 +7,13 @@ description = "Reference for chat shortcuts and commands"
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
prompt = """
|
|
10
|
-
# 💬
|
|
10
|
+
# 💬 Super-Kit Chat Reference
|
|
11
11
|
|
|
12
|
-
Quick reference for chat mode features in
|
|
12
|
+
Quick reference for chat mode features in Super-Kit CLI.
|
|
13
13
|
|
|
14
14
|
## Built-in Features
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
Super-Kit CLI already supports these in chat:
|
|
17
17
|
|
|
18
18
|
### File Operations
|
|
19
19
|
```
|
|
@@ -33,7 +33,7 @@ Where is login # Natural language search
|
|
|
33
33
|
/cook # Execute with checkpoint
|
|
34
34
|
/scout # Search codebase
|
|
35
35
|
/code # Implement features
|
|
36
|
-
... # All
|
|
36
|
+
... # All super-kit commands
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
## Tips
|
|
@@ -53,12 +53,13 @@ Where is login # Natural language search
|
|
|
53
53
|
- "Explain in detail" for longer
|
|
54
54
|
- "Show code only" for just code
|
|
55
55
|
|
|
56
|
-
##
|
|
56
|
+
## Super-Kit Chat Commands
|
|
57
57
|
|
|
58
58
|
| Command | Description |
|
|
59
59
|
|---------|-------------|
|
|
60
|
-
| `/
|
|
61
|
-
| `/
|
|
60
|
+
| `/chat` | Show this help |
|
|
61
|
+
| `/chat mode` | Explain AI modes |
|
|
62
|
+
| `/chat tips` | Show power user tips |
|
|
62
63
|
| `/ask <question>` | Ask about codebase |
|
|
63
64
|
| `/watzup` | Project status |
|
|
64
65
|
| `/session save` | Save current context |
|
|
@@ -66,8 +67,11 @@ Where is login # Natural language search
|
|
|
66
67
|
## Keyboard Shortcuts
|
|
67
68
|
|
|
68
69
|
- `Ctrl+C` - Cancel current operation
|
|
69
|
-
- `Ctrl+D` - Exit
|
|
70
|
+
- `Ctrl+D` - Exit Super-Kit CLI
|
|
70
71
|
- `Up/Down` - Navigate history
|
|
71
72
|
|
|
72
73
|
That's it! Start chatting naturally with AI.
|
|
73
74
|
"""
|
|
75
|
+
|
|
76
|
+
# ---
|
|
77
|
+
# USAGE:
|
package/commands/help.toml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Super-Kit Help
|
|
2
2
|
# Usage: /help description = "Help and usage information"
|
|
3
3
|
# - /help → Show all commands
|
|
4
4
|
# - /help plan → Show help for /plan
|
|
@@ -22,7 +22,7 @@ If {{args}} is a command name (like "plan", "cook", "scout"), explain:
|
|
|
22
22
|
If {{args}} is "tools", list all 17 MCP tools with descriptions.
|
|
23
23
|
If {{args}} is "hooks", explain the 5 lifecycle hooks.
|
|
24
24
|
{{else}}
|
|
25
|
-
# 🧰
|
|
25
|
+
# 🧰 Super-Kit Help
|
|
26
26
|
|
|
27
27
|
## 📋 Available Commands (20)
|
|
28
28
|
|
|
@@ -79,6 +79,6 @@ Type `/kit hooks` to see lifecycle hooks.
|
|
|
79
79
|
**Usage:** `/kit <command>` for detailed help
|
|
80
80
|
**Example:** `/kit plan` or `/kit cook`
|
|
81
81
|
|
|
82
|
-
**GitHub:** https://github.com/
|
|
82
|
+
**GitHub:** https://github.com/dgkngk/super-kit
|
|
83
83
|
{{/if}}
|
|
84
84
|
"""
|
package/commands/kit-setup.toml
CHANGED
|
@@ -3,7 +3,7 @@ description = "Interactive project setup wizard - create context files for new p
|
|
|
3
3
|
prompt = """
|
|
4
4
|
# 🚀 Kit Setup Wizard
|
|
5
5
|
|
|
6
|
-
Hello! This is the wizard to setup project context for
|
|
6
|
+
Hello! This is the wizard to setup project context for Super-Kit.
|
|
7
7
|
|
|
8
8
|
## I will help you create 3 context files:
|
|
9
9
|
|
|
@@ -26,7 +26,7 @@ Please tell me about your project:
|
|
|
26
26
|
---
|
|
27
27
|
|
|
28
28
|
When you finish answering, I will:
|
|
29
|
-
1. Create file
|
|
29
|
+
1. Create file `docs/agents/product.md`
|
|
30
30
|
2. Continue asking about Tech Stack
|
|
31
31
|
3. Continue asking about Guidelines
|
|
32
32
|
4. Complete setup!
|
package/commands/session.toml
CHANGED
|
@@ -20,28 +20,32 @@ Check the first word of "{{args}}":
|
|
|
20
20
|
Save current session:
|
|
21
21
|
1. Capture current context:
|
|
22
22
|
- Current task/goal
|
|
23
|
-
-
|
|
23
|
+
- Read context from current directory
|
|
24
24
|
- Recent changes
|
|
25
25
|
- Conversation context
|
|
26
26
|
2. Generate session ID
|
|
27
|
-
3. Save to
|
|
27
|
+
3. Save to `docs/agents/sessions/`
|
|
28
28
|
4. Report success with session ID
|
|
29
29
|
|
|
30
30
|
### If "load" or "l":
|
|
31
|
-
Load a
|
|
32
|
-
1.
|
|
33
|
-
2.
|
|
31
|
+
Load a session {{args}}:
|
|
32
|
+
1. Read session file from `docs/agents/sessions/`
|
|
33
|
+
2. Apply context to current conversation
|
|
34
34
|
3. Load and display session context
|
|
35
35
|
4. Resume from where left off
|
|
36
36
|
|
|
37
37
|
### If "list" or "ls":
|
|
38
38
|
List all saved sessions:
|
|
39
|
-
1. Read
|
|
39
|
+
1. Read `docs/agents/sessions/`
|
|
40
40
|
2. Display each session with:
|
|
41
41
|
- ID
|
|
42
42
|
- Name/Task
|
|
43
43
|
- Date
|
|
44
|
-
-
|
|
44
|
+
- Status (active/archived)
|
|
45
|
+
|
|
46
|
+
### If "archive" or "a":
|
|
47
|
+
Archive session {{args}}:
|
|
48
|
+
1. Move session from `docs/agents/sessions/` to `docs/agents/sessions/archive/`
|
|
45
49
|
|
|
46
50
|
### If "info" or "i":
|
|
47
51
|
Show current session info:
|
package/commands/skill.toml
CHANGED
|
@@ -48,7 +48,7 @@ Create new skill:
|
|
|
48
48
|
|
|
49
49
|
## SKILL FILE STRUCTURE
|
|
50
50
|
|
|
51
|
-
Create skill file at:
|
|
51
|
+
Create skill file at: `docs/agents/skills/[skill-name].md`
|
|
52
52
|
|
|
53
53
|
```markdown
|
|
54
54
|
# [Skill Name] Skill
|
|
@@ -103,7 +103,7 @@ Create skill file at: `~/.gemini-kit/skills/[skill-name].md`
|
|
|
103
103
|
## OUTPUT FILES
|
|
104
104
|
|
|
105
105
|
After creation:
|
|
106
|
-
1. **Skill file:**
|
|
106
|
+
1. **Skill file:** `docs/agents/skills/[skill-name].md`
|
|
107
107
|
2. **Activation:** Skill auto-activates on matching keywords
|
|
108
108
|
|
|
109
109
|
---
|
|
@@ -226,7 +226,7 @@ When input starts with "add":
|
|
|
226
226
|
**Output:**
|
|
227
227
|
```
|
|
228
228
|
Adding reference to mongodb skill...
|
|
229
|
-
✓ Skill found:
|
|
229
|
+
✓ Skill found: docs/agents/skills/mongodb.md
|
|
230
230
|
✓ Reference: https://docs.mongodb.com/llms.txt
|
|
231
231
|
✓ Content: 12KB, 45 endpoints
|
|
232
232
|
✓ Updated: mongodb.md
|
|
@@ -331,7 +331,7 @@ When input starts with "optimize:auto" or "optimize-auto":
|
|
|
331
331
|
|
|
332
332
|
**Step 1: Create Backup**
|
|
333
333
|
```
|
|
334
|
-
Backup:
|
|
334
|
+
Backup: docs/agents/skills/mongodb/.backup-251215-2110/
|
|
335
335
|
```
|
|
336
336
|
|
|
337
337
|
**Step 2: Analyze Goal**
|
package/commands/team.toml
CHANGED
|
@@ -6,11 +6,11 @@ description = "🤖 AI Team Orchestration - Start team sessions, run workflows,
|
|
|
6
6
|
prompt = """
|
|
7
7
|
# AI Team Orchestration
|
|
8
8
|
|
|
9
|
-
You are the Team Orchestrator for
|
|
9
|
+
You are the Team Orchestrator for super-kit. Help the user manage AI team sessions.
|
|
10
10
|
|
|
11
11
|
## Command: /team {{args}}
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
### If {{args}} is empty:he arguments and execute the appropriate action:
|
|
14
14
|
|
|
15
15
|
### Actions:
|
|
16
16
|
|