@mikulgohil/ai-kit 1.0.1 → 1.1.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/commands/bundle-check.md +118 -0
- package/commands/changelog.md +103 -0
- package/commands/ci-fix.md +102 -0
- package/commands/db-migrate.md +138 -0
- package/commands/dependency-graph.md +138 -0
- package/commands/docker-debug.md +111 -0
- package/commands/i18n-check.md +138 -0
- package/commands/perf-audit.md +131 -0
- package/commands/release.md +90 -0
- package/commands/schema-gen.md +132 -0
- package/commands/storybook-gen.md +91 -0
- package/commands/visual-diff.md +131 -0
- package/dist/index.js +1100 -83
- package/dist/index.js.map +1 -1
- package/package.json +8 -2
- package/templates/claude-md/base.md +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikulgohil/ai-kit",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "AI-assisted development setup kit. Auto-detects your tech stack and generates tailored CLAUDE.md, .cursorrules, slash commands, and developer guides.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -26,11 +26,17 @@
|
|
|
26
26
|
"ai",
|
|
27
27
|
"claude-code",
|
|
28
28
|
"cursor",
|
|
29
|
+
"windsurf",
|
|
30
|
+
"aider",
|
|
31
|
+
"cline",
|
|
29
32
|
"developer-tools",
|
|
30
33
|
"cli",
|
|
31
34
|
"nextjs",
|
|
32
35
|
"tailwind",
|
|
33
|
-
"sitecore"
|
|
36
|
+
"sitecore",
|
|
37
|
+
"docker",
|
|
38
|
+
"storybook",
|
|
39
|
+
"i18n"
|
|
34
40
|
],
|
|
35
41
|
"author": "Mikul Gohil",
|
|
36
42
|
"license": "MIT",
|
|
@@ -131,8 +131,10 @@ These standards are enforced across all projects to ensure consistency.
|
|
|
131
131
|
- Document significant changes in `docs/` if the directory exists
|
|
132
132
|
- When modifying a component, update its doc file's change log
|
|
133
133
|
|
|
134
|
-
## Commands
|
|
135
|
-
Available
|
|
134
|
+
## Skills & Commands
|
|
135
|
+
Available as auto-discovered skills (`.claude/skills/`, `.cursor/skills/`) and legacy commands (`.claude/commands/`).
|
|
136
|
+
|
|
137
|
+
AI will auto-discover and apply these when your task matches. You can also invoke them manually with `/skill-name`.
|
|
136
138
|
|
|
137
139
|
**Getting Started**
|
|
138
140
|
- `/prompt-help` — Interactive prompt builder (start here if unsure how to ask)
|