@musashishao/agent-kit 1.0.0 → 1.0.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.
Potentially problematic release.
This version of @musashishao/agent-kit might be problematic. Click here for more details.
- package/.agent/ARCHITECTURE.md +4 -2
- package/.agent/skills/mcp-builder/SKILL.md +583 -97
- package/.agent/skills/mcp-builder/python-template.md +522 -0
- package/.agent/skills/mcp-builder/tool-patterns.md +642 -0
- package/.agent/skills/mcp-builder/typescript-template.md +361 -0
- package/.agent/skills/problem-solving/SKILL.md +556 -0
- package/.agent/skills/problem-solving/collision-zone-thinking.md +285 -0
- package/.agent/skills/problem-solving/inversion-exercise.md +205 -0
- package/.agent/skills/problem-solving/meta-pattern-recognition.md +313 -0
- package/.agent/skills/problem-solving/scale-game.md +300 -0
- package/.agent/skills/problem-solving/simplification-cascades.md +321 -0
- package/.agent/skills/problem-solving/when-stuck.md +146 -0
- package/package.json +2 -2
package/.agent/ARCHITECTURE.md
CHANGED
|
@@ -52,7 +52,7 @@ Specialist AI personas for different domains.
|
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
55
|
-
## 🧠 Skills (
|
|
55
|
+
## 🧠 Skills (41)
|
|
56
56
|
|
|
57
57
|
Domain-specific knowledge modules. Skills are loaded on-demand based on task context.
|
|
58
58
|
|
|
@@ -142,12 +142,14 @@ Domain-specific knowledge modules. Skills are loaded on-demand based on task con
|
|
|
142
142
|
| `clean-code` | Coding standards (Global) |
|
|
143
143
|
| `behavioral-modes` | Agent personas |
|
|
144
144
|
| `parallel-agents` | Multi-agent patterns |
|
|
145
|
-
| `mcp-builder` |
|
|
145
|
+
| `mcp-builder` | MCP servers with TypeScript/Python |
|
|
146
|
+
| `problem-solving` | 6 frameworks for creative solutions |
|
|
146
147
|
| `documentation-templates` | Doc formats |
|
|
147
148
|
| `i18n-localization` | Internationalization |
|
|
148
149
|
| `performance-profiling` | Web Vitals, optimization |
|
|
149
150
|
| `systematic-debugging` | Troubleshooting |
|
|
150
151
|
|
|
152
|
+
|
|
151
153
|
---
|
|
152
154
|
|
|
153
155
|
## 🔄 Workflows (11)
|