@smicolon/ai-kit 0.1.0 → 0.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.
- package/.claude-plugin/CLAUDE.md +7 -0
- package/.claude-plugin/marketplace.json +373 -0
- package/README.md +26 -16
- package/dist/index.js +146 -38
- package/package.json +4 -3
- package/packs/architect/CHANGELOG.md +17 -0
- package/packs/architect/README.md +58 -0
- package/packs/architect/agents/system-architect.md +768 -0
- package/packs/architect/commands/diagram-create.md +300 -0
- package/packs/better-auth/.claude-plugin/plugin.json +14 -0
- package/packs/better-auth/.mcp.json +14 -0
- package/packs/better-auth/CHANGELOG.md +26 -0
- package/packs/better-auth/README.md +125 -0
- package/packs/better-auth/agents/auth-architect.md +278 -0
- package/packs/better-auth/commands/auth-provider-add.md +265 -0
- package/packs/better-auth/commands/auth-setup.md +298 -0
- package/packs/better-auth/skills/auth-security/SKILL.md +425 -0
- package/packs/better-auth/skills/better-auth-patterns/SKILL.md +455 -0
- package/packs/dev-loop/.claude-plugin/plugin.json +10 -0
- package/packs/dev-loop/CHANGELOG.md +69 -0
- package/packs/dev-loop/README.md +155 -0
- package/packs/dev-loop/commands/cancel-dev.md +21 -0
- package/packs/dev-loop/commands/dev-loop.md +72 -0
- package/packs/dev-loop/commands/dev-plan.md +351 -0
- package/packs/dev-loop/hooks/hooks.json +15 -0
- package/packs/dev-loop/hooks/stop-hook.sh +178 -0
- package/packs/dev-loop/scripts/setup-dev-loop.sh +194 -0
- package/packs/dev-loop/skills/tdd-planner/SKILL.md +249 -0
- package/packs/dev-loop/skills/tdd-planner/references/framework-patterns.md +874 -0
- package/packs/dev-loop/skills/tdd-planner/references/good-example.md +260 -0
- package/packs/dev-loop/skills/tdd-planner/references/plan-template.md +275 -0
- package/packs/django/CHANGELOG.md +39 -0
- package/packs/django/README.md +92 -0
- package/packs/django/agents/django-architect.md +182 -0
- package/packs/django/agents/django-builder.md +250 -0
- package/packs/django/agents/django-feature-based.md +420 -0
- package/packs/django/agents/django-reviewer.md +253 -0
- package/packs/django/agents/django-tester.md +230 -0
- package/packs/django/commands/api-endpoint.md +285 -0
- package/packs/django/commands/model-create.md +178 -0
- package/packs/django/commands/test-generate.md +325 -0
- package/packs/django/rules/migrations.md +138 -0
- package/packs/django/rules/models.md +167 -0
- package/packs/django/rules/serializers.md +126 -0
- package/packs/django/rules/services.md +131 -0
- package/packs/django/rules/tests.md +140 -0
- package/packs/django/rules/views.md +102 -0
- package/packs/django/skills/import-convention-enforcer/SKILL.md +226 -0
- package/packs/django/skills/import-convention-enforcer/patterns/django-imports.md +343 -0
- package/packs/django/skills/migration-safety-checker/SKILL.md +375 -0
- package/packs/django/skills/model-entity-validator/SKILL.md +298 -0
- package/packs/django/skills/performance-optimizer/SKILL.md +447 -0
- package/packs/django/skills/red-phase-verifier/SKILL.md +180 -0
- package/packs/django/skills/security-first-validator/SKILL.md +435 -0
- package/packs/django/skills/test-coverage-advisor/SKILL.md +394 -0
- package/packs/django/skills/test-validity-checker/SKILL.md +194 -0
- package/packs/failure-log/.claude-plugin/plugin.json +14 -0
- package/packs/failure-log/CHANGELOG.md +20 -0
- package/packs/failure-log/README.md +168 -0
- package/packs/failure-log/commands/failure-add.md +106 -0
- package/packs/failure-log/commands/failure-list.md +89 -0
- package/packs/failure-log/hooks/hooks.json +16 -0
- package/packs/failure-log/hooks/scripts/inject-failures.sh +64 -0
- package/packs/failure-log/skills/failure-log-manager/SKILL.md +164 -0
- package/packs/flutter/.claude-plugin/plugin.json +10 -0
- package/packs/flutter/CHANGELOG.md +19 -0
- package/packs/flutter/README.md +170 -0
- package/packs/flutter/agents/flutter-architect.md +166 -0
- package/packs/flutter/agents/flutter-builder.md +303 -0
- package/packs/flutter/agents/release-manager.md +355 -0
- package/packs/flutter/commands/fastlane-setup.md +188 -0
- package/packs/flutter/commands/flutter-build.md +90 -0
- package/packs/flutter/commands/flutter-deploy.md +133 -0
- package/packs/flutter/commands/flutter-test.md +117 -0
- package/packs/flutter/commands/signing-setup.md +209 -0
- package/packs/flutter/hooks/hooks.json +17 -0
- package/packs/flutter/skills/fastlane-knowledge/SKILL.md +193 -0
- package/packs/flutter/skills/flutter-architecture/SKILL.md +127 -0
- package/packs/flutter/skills/store-publishing/SKILL.md +163 -0
- package/packs/hono/.claude-plugin/plugin.json +19 -0
- package/packs/hono/CHANGELOG.md +19 -0
- package/packs/hono/README.md +143 -0
- package/packs/hono/agents/hono-architect.md +240 -0
- package/packs/hono/agents/hono-builder.md +285 -0
- package/packs/hono/agents/hono-reviewer.md +279 -0
- package/packs/hono/agents/hono-tester.md +346 -0
- package/packs/hono/commands/middleware-create.md +223 -0
- package/packs/hono/commands/project-init.md +306 -0
- package/packs/hono/commands/route-create.md +153 -0
- package/packs/hono/commands/rpc-client.md +263 -0
- package/packs/hono/hooks/hooks.json +4 -0
- package/packs/hono/skills/cloudflare-bindings/SKILL.md +408 -0
- package/packs/hono/skills/hono-patterns/SKILL.md +309 -0
- package/packs/hono/skills/rpc-typesafe/SKILL.md +388 -0
- package/packs/hono/skills/zod-validation/SKILL.md +332 -0
- package/packs/nestjs/CHANGELOG.md +29 -0
- package/packs/nestjs/README.md +75 -0
- package/packs/nestjs/agents/nestjs-architect.md +402 -0
- package/packs/nestjs/agents/nestjs-builder.md +301 -0
- package/packs/nestjs/agents/nestjs-tester.md +437 -0
- package/packs/nestjs/commands/module-create.md +369 -0
- package/packs/nestjs/rules/controllers.md +92 -0
- package/packs/nestjs/rules/dto.md +124 -0
- package/packs/nestjs/rules/entities.md +102 -0
- package/packs/nestjs/rules/services.md +106 -0
- package/packs/nestjs/skills/barrel-export-manager/SKILL.md +389 -0
- package/packs/nestjs/skills/import-convention-enforcer/SKILL.md +365 -0
- package/packs/nextjs/CHANGELOG.md +36 -0
- package/packs/nextjs/README.md +76 -0
- package/packs/nextjs/agents/frontend-tester.md +680 -0
- package/packs/nextjs/agents/frontend-visual.md +820 -0
- package/packs/nextjs/agents/nextjs-architect.md +331 -0
- package/packs/nextjs/agents/nextjs-modular.md +433 -0
- package/packs/nextjs/commands/component-create.md +398 -0
- package/packs/nextjs/rules/api-routes.md +129 -0
- package/packs/nextjs/rules/components.md +106 -0
- package/packs/nextjs/rules/hooks.md +132 -0
- package/packs/nextjs/skills/accessibility-validator/SKILL.md +445 -0
- package/packs/nextjs/skills/import-convention-enforcer/SKILL.md +399 -0
- package/packs/nextjs/skills/react-form-validator/SKILL.md +569 -0
- package/packs/nuxtjs/CHANGELOG.md +30 -0
- package/packs/nuxtjs/README.md +56 -0
- package/packs/nuxtjs/agents/frontend-tester.md +680 -0
- package/packs/nuxtjs/agents/frontend-visual.md +820 -0
- package/packs/nuxtjs/agents/nuxtjs-architect.md +537 -0
- package/packs/nuxtjs/commands/component-create.md +223 -0
- package/packs/nuxtjs/rules/components.md +101 -0
- package/packs/nuxtjs/rules/composables.md +118 -0
- package/packs/nuxtjs/rules/server-routes.md +127 -0
- package/packs/nuxtjs/skills/accessibility-validator/SKILL.md +183 -0
- package/packs/nuxtjs/skills/import-convention-enforcer/SKILL.md +196 -0
- package/packs/nuxtjs/skills/veevalidate-form-validator/SKILL.md +190 -0
- package/packs/onboard/CHANGELOG.md +22 -0
- package/packs/onboard/README.md +103 -0
- package/packs/onboard/agents/onboard-guide.md +118 -0
- package/packs/onboard/commands/onboard.md +313 -0
- package/packs/onboard/skills/onboard-context-provider/SKILL.md +98 -0
- package/packs/tanstack-router/.claude-plugin/plugin.json +14 -0
- package/packs/tanstack-router/CHANGELOG.md +30 -0
- package/packs/tanstack-router/README.md +113 -0
- package/packs/tanstack-router/agents/tanstack-architect.md +173 -0
- package/packs/tanstack-router/agents/tanstack-builder.md +360 -0
- package/packs/tanstack-router/agents/tanstack-tester.md +454 -0
- package/packs/tanstack-router/commands/form-create.md +313 -0
- package/packs/tanstack-router/commands/query-create.md +263 -0
- package/packs/tanstack-router/commands/route-create.md +190 -0
- package/packs/tanstack-router/commands/table-create.md +413 -0
- package/packs/tanstack-router/skills/ai-patterns/SKILL.md +370 -0
- package/packs/tanstack-router/skills/db-patterns/SKILL.md +346 -0
- package/packs/tanstack-router/skills/devtools-patterns/SKILL.md +415 -0
- package/packs/tanstack-router/skills/form-patterns/SKILL.md +425 -0
- package/packs/tanstack-router/skills/pacer-patterns/SKILL.md +341 -0
- package/packs/tanstack-router/skills/query-patterns/SKILL.md +359 -0
- package/packs/tanstack-router/skills/router-patterns/SKILL.md +285 -0
- package/packs/tanstack-router/skills/store-patterns/SKILL.md +351 -0
- package/packs/tanstack-router/skills/table-patterns/SKILL.md +531 -0
- package/packs/tanstack-router/skills/tanstack-conventions/SKILL.md +428 -0
- package/packs/tanstack-router/skills/virtual-patterns/SKILL.md +490 -0
- package/packs/worktree/.claude-plugin/plugin.json +19 -0
- package/packs/worktree/CHANGELOG.md +24 -0
- package/packs/worktree/README.md +110 -0
- package/packs/worktree/commands/wt.md +73 -0
- package/packs/worktree/scripts/wt.sh +396 -0
- package/packs/worktree/skills/worktree-manager/SKILL.md +68 -0
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "smicolon-marketplace",
|
|
3
|
+
"version": "2.6.0",
|
|
4
|
+
"description": "Official marketplace for Smicolon development standards - 13 plugins with 28 agents, 40 skills, TanStack SPA, Better Auth, onboarding, and TDD dev loops",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"description": "Official marketplace for Smicolon development standards - 13 plugins with 28 specialized agents, 40 auto-enforcing skills, intelligent engineer onboarding, TanStack Router SPA development, Better Auth integration, Hono Edge framework, Flutter mobile, git worktree management, persistent failure memory, and TDD-based dev loops for Django, NestJS, Next.js, Nuxt.js, Hono, Flutter, TanStack, and system architecture"
|
|
8
|
+
},
|
|
9
|
+
"owner": {
|
|
10
|
+
"name": "Smicolon Development Team",
|
|
11
|
+
"email": "dev@smicolon.com",
|
|
12
|
+
"url": "https://github.com/smicolon"
|
|
13
|
+
},
|
|
14
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
15
|
+
"plugins": [
|
|
16
|
+
{
|
|
17
|
+
"name": "dev-loop",
|
|
18
|
+
"version": "1.2.2",
|
|
19
|
+
"description": "Autonomous TDD development loops with planning phase and iterative coding",
|
|
20
|
+
"source": "./packs/dev-loop",
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "Smicolon",
|
|
23
|
+
"email": "dev@smicolon.com",
|
|
24
|
+
"url": "https://github.com/smicolon"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
27
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"category": "automation",
|
|
30
|
+
"keywords": ["dev-loop", "automation", "tdd", "iterative", "ralph-wiggum", "planning"],
|
|
31
|
+
"commands": [
|
|
32
|
+
"./commands/dev-loop.md",
|
|
33
|
+
"./commands/dev-plan.md",
|
|
34
|
+
"./commands/cancel-dev.md"
|
|
35
|
+
],
|
|
36
|
+
"skills": ["./skills/tdd-planner/SKILL.md"],
|
|
37
|
+
"hooks": ["./hooks/hooks.json"]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "django",
|
|
41
|
+
"version": "2.1.1",
|
|
42
|
+
"description": "Django standards with 5 agents and 8 auto-enforcing skills",
|
|
43
|
+
"source": "./packs/django",
|
|
44
|
+
"author": {
|
|
45
|
+
"name": "Smicolon",
|
|
46
|
+
"email": "dev@smicolon.com",
|
|
47
|
+
"url": "https://github.com/smicolon"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
50
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"category": "backend",
|
|
53
|
+
"keywords": ["django", "python", "backend", "testing", "tdd", "architecture", "security", "performance"],
|
|
54
|
+
"agents": [
|
|
55
|
+
"./agents/django-architect.md",
|
|
56
|
+
"./agents/django-builder.md",
|
|
57
|
+
"./agents/django-feature-based.md",
|
|
58
|
+
"./agents/django-tester.md",
|
|
59
|
+
"./agents/django-reviewer.md"
|
|
60
|
+
],
|
|
61
|
+
"commands": [
|
|
62
|
+
"./commands/model-create.md",
|
|
63
|
+
"./commands/api-endpoint.md",
|
|
64
|
+
"./commands/test-generate.md"
|
|
65
|
+
],
|
|
66
|
+
"skills": [
|
|
67
|
+
"./skills/import-convention-enforcer/SKILL.md",
|
|
68
|
+
"./skills/model-entity-validator/SKILL.md",
|
|
69
|
+
"./skills/security-first-validator/SKILL.md",
|
|
70
|
+
"./skills/test-coverage-advisor/SKILL.md",
|
|
71
|
+
"./skills/performance-optimizer/SKILL.md",
|
|
72
|
+
"./skills/migration-safety-checker/SKILL.md",
|
|
73
|
+
"./skills/test-validity-checker/SKILL.md",
|
|
74
|
+
"./skills/red-phase-verifier/SKILL.md"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "nestjs",
|
|
79
|
+
"version": "2.1.1",
|
|
80
|
+
"description": "NestJS standards with 3 agents and 2 auto-enforcing skills",
|
|
81
|
+
"source": "./packs/nestjs",
|
|
82
|
+
"author": {
|
|
83
|
+
"name": "Smicolon",
|
|
84
|
+
"email": "dev@smicolon.com",
|
|
85
|
+
"url": "https://github.com/smicolon"
|
|
86
|
+
},
|
|
87
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
88
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
89
|
+
"license": "MIT",
|
|
90
|
+
"category": "backend",
|
|
91
|
+
"keywords": ["nestjs", "typescript", "backend", "testing", "architecture", "barrel-exports"],
|
|
92
|
+
"agents": [
|
|
93
|
+
"./agents/nestjs-architect.md",
|
|
94
|
+
"./agents/nestjs-builder.md",
|
|
95
|
+
"./agents/nestjs-tester.md"
|
|
96
|
+
],
|
|
97
|
+
"commands": ["./commands/module-create.md"],
|
|
98
|
+
"skills": [
|
|
99
|
+
"./skills/barrel-export-manager/SKILL.md",
|
|
100
|
+
"./skills/import-convention-enforcer/SKILL.md"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "nextjs",
|
|
105
|
+
"version": "2.1.1",
|
|
106
|
+
"description": "Next.js standards with 4 agents, 3 auto-enforcing skills, and visual QA",
|
|
107
|
+
"source": "./packs/nextjs",
|
|
108
|
+
"author": {
|
|
109
|
+
"name": "Smicolon",
|
|
110
|
+
"email": "dev@smicolon.com",
|
|
111
|
+
"url": "https://github.com/smicolon"
|
|
112
|
+
},
|
|
113
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
114
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
115
|
+
"license": "MIT",
|
|
116
|
+
"category": "frontend",
|
|
117
|
+
"keywords": ["nextjs", "react", "frontend", "typescript", "visual-qa", "accessibility", "forms"],
|
|
118
|
+
"agents": [
|
|
119
|
+
"./agents/nextjs-architect.md",
|
|
120
|
+
"./agents/nextjs-modular.md",
|
|
121
|
+
"./agents/frontend-visual.md",
|
|
122
|
+
"./agents/frontend-tester.md"
|
|
123
|
+
],
|
|
124
|
+
"commands": ["./commands/component-create.md"],
|
|
125
|
+
"skills": [
|
|
126
|
+
"./skills/accessibility-validator/SKILL.md",
|
|
127
|
+
"./skills/react-form-validator/SKILL.md",
|
|
128
|
+
"./skills/import-convention-enforcer/SKILL.md"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "nuxtjs",
|
|
133
|
+
"version": "2.1.1",
|
|
134
|
+
"description": "Nuxt.js standards with 3 agents, 3 auto-enforcing skills, and visual QA",
|
|
135
|
+
"source": "./packs/nuxtjs",
|
|
136
|
+
"author": {
|
|
137
|
+
"name": "Smicolon",
|
|
138
|
+
"email": "dev@smicolon.com",
|
|
139
|
+
"url": "https://github.com/smicolon"
|
|
140
|
+
},
|
|
141
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
142
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
143
|
+
"license": "MIT",
|
|
144
|
+
"category": "frontend",
|
|
145
|
+
"keywords": ["nuxtjs", "vue", "vue3", "frontend", "typescript", "visual-qa", "accessibility", "forms"],
|
|
146
|
+
"agents": [
|
|
147
|
+
"./agents/nuxtjs-architect.md",
|
|
148
|
+
"./agents/frontend-visual.md",
|
|
149
|
+
"./agents/frontend-tester.md"
|
|
150
|
+
],
|
|
151
|
+
"commands": ["./commands/component-create.md"],
|
|
152
|
+
"skills": [
|
|
153
|
+
"./skills/accessibility-validator/SKILL.md",
|
|
154
|
+
"./skills/veevalidate-form-validator/SKILL.md",
|
|
155
|
+
"./skills/import-convention-enforcer/SKILL.md"
|
|
156
|
+
]
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "architect",
|
|
160
|
+
"version": "1.0.0",
|
|
161
|
+
"description": "System architecture and diagram-as-code with Eraser.io integration",
|
|
162
|
+
"source": "./packs/architect",
|
|
163
|
+
"author": {
|
|
164
|
+
"name": "Smicolon",
|
|
165
|
+
"email": "dev@smicolon.com",
|
|
166
|
+
"url": "https://github.com/smicolon"
|
|
167
|
+
},
|
|
168
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
169
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
170
|
+
"license": "MIT",
|
|
171
|
+
"category": "architecture",
|
|
172
|
+
"keywords": ["architecture", "diagrams", "eraser", "erd", "flowchart", "cloud-architecture"],
|
|
173
|
+
"agents": ["./agents/system-architect.md"],
|
|
174
|
+
"commands": ["./commands/diagram-create.md"]
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"name": "failure-log",
|
|
178
|
+
"version": "1.0.1",
|
|
179
|
+
"description": "Persistent failure memory that tracks mistakes and prevents repeating them across sessions",
|
|
180
|
+
"source": "./packs/failure-log",
|
|
181
|
+
"author": {
|
|
182
|
+
"name": "Smicolon",
|
|
183
|
+
"email": "dev@smicolon.com",
|
|
184
|
+
"url": "https://github.com/smicolon"
|
|
185
|
+
},
|
|
186
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
187
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
188
|
+
"license": "MIT",
|
|
189
|
+
"category": "automation",
|
|
190
|
+
"keywords": ["failure-log", "memory", "learning", "mistakes", "conventions"],
|
|
191
|
+
"commands": [
|
|
192
|
+
"./commands/failure-add.md",
|
|
193
|
+
"./commands/failure-list.md"
|
|
194
|
+
],
|
|
195
|
+
"skills": ["./skills/failure-log-manager/SKILL.md"],
|
|
196
|
+
"hooks": ["./hooks/hooks.json"]
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"name": "flutter",
|
|
200
|
+
"version": "0.1.1",
|
|
201
|
+
"description": "Flutter development with Fastlane automation, store publishing, and architecture patterns",
|
|
202
|
+
"source": "./packs/flutter",
|
|
203
|
+
"author": {
|
|
204
|
+
"name": "Smicolon",
|
|
205
|
+
"email": "dev@smicolon.com",
|
|
206
|
+
"url": "https://github.com/smicolon"
|
|
207
|
+
},
|
|
208
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
209
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
210
|
+
"license": "MIT",
|
|
211
|
+
"category": "mobile",
|
|
212
|
+
"keywords": ["flutter", "dart", "mobile", "ios", "android", "fastlane", "app-store", "google-play"],
|
|
213
|
+
"agents": [
|
|
214
|
+
"./agents/flutter-architect.md",
|
|
215
|
+
"./agents/flutter-builder.md",
|
|
216
|
+
"./agents/release-manager.md"
|
|
217
|
+
],
|
|
218
|
+
"commands": [
|
|
219
|
+
"./commands/flutter-build.md",
|
|
220
|
+
"./commands/flutter-test.md",
|
|
221
|
+
"./commands/flutter-deploy.md",
|
|
222
|
+
"./commands/fastlane-setup.md",
|
|
223
|
+
"./commands/signing-setup.md"
|
|
224
|
+
],
|
|
225
|
+
"skills": [
|
|
226
|
+
"./skills/flutter-architecture/SKILL.md",
|
|
227
|
+
"./skills/fastlane-knowledge/SKILL.md",
|
|
228
|
+
"./skills/store-publishing/SKILL.md"
|
|
229
|
+
],
|
|
230
|
+
"hooks": ["./hooks/hooks.json"]
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"name": "hono",
|
|
234
|
+
"version": "0.1.1",
|
|
235
|
+
"description": "Hono Edge framework standards with 4 agents and 4 auto-enforcing skills for Bun and Cloudflare Workers",
|
|
236
|
+
"source": "./packs/hono",
|
|
237
|
+
"author": {
|
|
238
|
+
"name": "Smicolon",
|
|
239
|
+
"email": "dev@smicolon.com",
|
|
240
|
+
"url": "https://github.com/smicolon"
|
|
241
|
+
},
|
|
242
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
243
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
244
|
+
"license": "MIT",
|
|
245
|
+
"category": "backend",
|
|
246
|
+
"keywords": ["hono", "bun", "cloudflare-workers", "edge", "typescript", "api", "rpc"],
|
|
247
|
+
"agents": [
|
|
248
|
+
"./agents/hono-architect.md",
|
|
249
|
+
"./agents/hono-builder.md",
|
|
250
|
+
"./agents/hono-tester.md",
|
|
251
|
+
"./agents/hono-reviewer.md"
|
|
252
|
+
],
|
|
253
|
+
"commands": [
|
|
254
|
+
"./commands/route-create.md",
|
|
255
|
+
"./commands/middleware-create.md",
|
|
256
|
+
"./commands/project-init.md",
|
|
257
|
+
"./commands/rpc-client.md"
|
|
258
|
+
],
|
|
259
|
+
"skills": [
|
|
260
|
+
"./skills/hono-patterns/SKILL.md",
|
|
261
|
+
"./skills/cloudflare-bindings/SKILL.md",
|
|
262
|
+
"./skills/zod-validation/SKILL.md",
|
|
263
|
+
"./skills/rpc-typesafe/SKILL.md"
|
|
264
|
+
],
|
|
265
|
+
"hooks": ["./hooks/hooks.json"]
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "tanstack-router",
|
|
269
|
+
"version": "0.1.0",
|
|
270
|
+
"description": "TanStack Router SPA development with 3 agents, 11 skills for React SPAs using TanStack ecosystem",
|
|
271
|
+
"source": "./packs/tanstack-router",
|
|
272
|
+
"author": {
|
|
273
|
+
"name": "Smicolon",
|
|
274
|
+
"email": "dev@smicolon.com",
|
|
275
|
+
"url": "https://github.com/smicolon"
|
|
276
|
+
},
|
|
277
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
278
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
279
|
+
"license": "MIT",
|
|
280
|
+
"category": "frontend",
|
|
281
|
+
"keywords": ["tanstack", "react", "router", "query", "form", "table", "virtual", "spa", "typescript", "bun"],
|
|
282
|
+
"agents": [
|
|
283
|
+
"./agents/tanstack-architect.md",
|
|
284
|
+
"./agents/tanstack-builder.md",
|
|
285
|
+
"./agents/tanstack-tester.md"
|
|
286
|
+
],
|
|
287
|
+
"commands": [
|
|
288
|
+
"./commands/route-create.md",
|
|
289
|
+
"./commands/query-create.md",
|
|
290
|
+
"./commands/form-create.md",
|
|
291
|
+
"./commands/table-create.md"
|
|
292
|
+
],
|
|
293
|
+
"skills": [
|
|
294
|
+
"./skills/router-patterns/SKILL.md",
|
|
295
|
+
"./skills/query-patterns/SKILL.md",
|
|
296
|
+
"./skills/form-patterns/SKILL.md",
|
|
297
|
+
"./skills/table-patterns/SKILL.md",
|
|
298
|
+
"./skills/virtual-patterns/SKILL.md",
|
|
299
|
+
"./skills/store-patterns/SKILL.md",
|
|
300
|
+
"./skills/db-patterns/SKILL.md",
|
|
301
|
+
"./skills/ai-patterns/SKILL.md",
|
|
302
|
+
"./skills/pacer-patterns/SKILL.md",
|
|
303
|
+
"./skills/devtools-patterns/SKILL.md",
|
|
304
|
+
"./skills/tanstack-conventions/SKILL.md"
|
|
305
|
+
]
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "better-auth",
|
|
309
|
+
"version": "0.1.1",
|
|
310
|
+
"description": "Better Auth integration with 1 agent, 2 skills, and MCP server for authentication",
|
|
311
|
+
"source": "./packs/better-auth",
|
|
312
|
+
"author": {
|
|
313
|
+
"name": "Smicolon",
|
|
314
|
+
"email": "dev@smicolon.com",
|
|
315
|
+
"url": "https://github.com/smicolon"
|
|
316
|
+
},
|
|
317
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
318
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
319
|
+
"license": "MIT",
|
|
320
|
+
"category": "authentication",
|
|
321
|
+
"keywords": ["better-auth", "authentication", "oauth", "2fa", "passkeys", "social-login", "session"],
|
|
322
|
+
"agents": [
|
|
323
|
+
"./agents/auth-architect.md"
|
|
324
|
+
],
|
|
325
|
+
"commands": [
|
|
326
|
+
"./commands/auth-setup.md",
|
|
327
|
+
"./commands/auth-provider-add.md"
|
|
328
|
+
],
|
|
329
|
+
"skills": [
|
|
330
|
+
"./skills/better-auth-patterns/SKILL.md",
|
|
331
|
+
"./skills/auth-security/SKILL.md"
|
|
332
|
+
],
|
|
333
|
+
"mcpServers": "./.mcp.json"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"name": "worktree",
|
|
337
|
+
"version": "0.1.1",
|
|
338
|
+
"description": "Git worktree manager for parallel development with automatic env copying and dependency installation",
|
|
339
|
+
"source": "./packs/worktree",
|
|
340
|
+
"author": {
|
|
341
|
+
"name": "Smicolon",
|
|
342
|
+
"email": "dev@smicolon.com",
|
|
343
|
+
"url": "https://github.com/smicolon"
|
|
344
|
+
},
|
|
345
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
346
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
347
|
+
"license": "MIT",
|
|
348
|
+
"category": "automation",
|
|
349
|
+
"keywords": ["git", "worktree", "parallel-development", "branch-management", "monorepo"],
|
|
350
|
+
"commands": ["./commands/wt.md"],
|
|
351
|
+
"skills": ["./skills/worktree-manager/SKILL.md"]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "onboard",
|
|
355
|
+
"version": "0.1.0",
|
|
356
|
+
"description": "Intelligent engineer onboarding with personalized guidance based on skills, project analysis, and first task",
|
|
357
|
+
"source": "./packs/onboard",
|
|
358
|
+
"author": {
|
|
359
|
+
"name": "Smicolon",
|
|
360
|
+
"email": "dev@smicolon.com",
|
|
361
|
+
"url": "https://github.com/smicolon"
|
|
362
|
+
},
|
|
363
|
+
"homepage": "https://github.com/smicolon/ai-kit",
|
|
364
|
+
"repository": "https://github.com/smicolon/ai-kit",
|
|
365
|
+
"license": "MIT",
|
|
366
|
+
"category": "onboarding",
|
|
367
|
+
"keywords": ["onboarding", "learning", "personalization", "guidance", "ramp-up"],
|
|
368
|
+
"agents": ["./agents/onboard-guide.md"],
|
|
369
|
+
"commands": ["./commands/onboard.md"],
|
|
370
|
+
"skills": ["./skills/onboard-context-provider/SKILL.md"]
|
|
371
|
+
}
|
|
372
|
+
]
|
|
373
|
+
}
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ AI coding tool pack manager. Install convention packs (agents, skills, commands,
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx @smicolon/ai-kit init
|
|
8
|
+
npx @smicolon/ai-kit@latest init
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
This walks you through selecting your AI tools and stack, then installs the right files in the right places.
|
|
@@ -17,8 +17,8 @@ This walks you through selecting your AI tools and stack, then installs the righ
|
|
|
17
17
|
Interactive first-time setup. Prompts for your AI tools, stack, and component preferences.
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npx @smicolon/ai-kit init
|
|
21
|
-
npx @smicolon/ai-kit init --cwd apps/web # monorepo sub-package
|
|
20
|
+
npx @smicolon/ai-kit@latest init
|
|
21
|
+
npx @smicolon/ai-kit@latest init --cwd apps/web # monorepo sub-package
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
### `add <pack>`
|
|
@@ -26,11 +26,11 @@ npx @smicolon/ai-kit init --cwd apps/web # monorepo sub-package
|
|
|
26
26
|
Add a pack to your project.
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
npx @smicolon/ai-kit add django
|
|
30
|
-
npx @smicolon/ai-kit add django --skills-only
|
|
31
|
-
npx @smicolon/ai-kit add django --agents-only
|
|
32
|
-
npx @smicolon/ai-kit add django --rules-only
|
|
33
|
-
npx @smicolon/ai-kit add django --tools claude-code,cursor
|
|
29
|
+
npx @smicolon/ai-kit@latest add django
|
|
30
|
+
npx @smicolon/ai-kit@latest add django --skills-only
|
|
31
|
+
npx @smicolon/ai-kit@latest add django --agents-only
|
|
32
|
+
npx @smicolon/ai-kit@latest add django --rules-only
|
|
33
|
+
npx @smicolon/ai-kit@latest add django --tools claude-code,cursor
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
### `list`
|
|
@@ -38,8 +38,8 @@ npx @smicolon/ai-kit add django --tools claude-code,cursor
|
|
|
38
38
|
Show available or installed packs.
|
|
39
39
|
|
|
40
40
|
```bash
|
|
41
|
-
npx @smicolon/ai-kit list # available packs
|
|
42
|
-
npx @smicolon/ai-kit list --installed # installed packs
|
|
41
|
+
npx @smicolon/ai-kit@latest list # available packs
|
|
42
|
+
npx @smicolon/ai-kit@latest list --installed # installed packs
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### `remove <pack>`
|
|
@@ -47,7 +47,17 @@ npx @smicolon/ai-kit list --installed # installed packs
|
|
|
47
47
|
Remove a pack and all its installed files.
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
npx @smicolon/ai-kit remove django
|
|
50
|
+
npx @smicolon/ai-kit@latest remove django
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### `search <query>`
|
|
54
|
+
|
|
55
|
+
Search packs by name or keyword.
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npx @smicolon/ai-kit@latest search auth
|
|
59
|
+
npx @smicolon/ai-kit@latest search frontend
|
|
60
|
+
npx @smicolon/ai-kit@latest search tdd
|
|
51
61
|
```
|
|
52
62
|
|
|
53
63
|
### `update [pack]`
|
|
@@ -55,8 +65,8 @@ npx @smicolon/ai-kit remove django
|
|
|
55
65
|
Update installed packs to latest versions.
|
|
56
66
|
|
|
57
67
|
```bash
|
|
58
|
-
npx @smicolon/ai-kit update # update all
|
|
59
|
-
npx @smicolon/ai-kit update django # update one
|
|
68
|
+
npx @smicolon/ai-kit@latest update # update all
|
|
69
|
+
npx @smicolon/ai-kit@latest update django # update one
|
|
60
70
|
```
|
|
61
71
|
|
|
62
72
|
## Supported AI Tools
|
|
@@ -116,15 +126,15 @@ your-project/
|
|
|
116
126
|
└── .gitignore # auto-updated
|
|
117
127
|
```
|
|
118
128
|
|
|
119
|
-
|
|
129
|
+
Tool preferences are stored globally at `~/.config/ai-kit/config.json` (pick once, works in all projects). Local `.ai-kit.json` tracks installed packs and files for clean removal — it's auto-added to `.gitignore`.
|
|
120
130
|
|
|
121
131
|
## Monorepo Support
|
|
122
132
|
|
|
123
133
|
Use `--cwd` to target a sub-package. Both the sub-package and root `.gitignore` are updated.
|
|
124
134
|
|
|
125
135
|
```bash
|
|
126
|
-
npx @smicolon/ai-kit init --cwd apps/web
|
|
127
|
-
npx @smicolon/ai-kit add django --cwd apps/web
|
|
136
|
+
npx @smicolon/ai-kit@latest init --cwd apps/web
|
|
137
|
+
npx @smicolon/ai-kit@latest add django --cwd apps/web
|
|
128
138
|
```
|
|
129
139
|
|
|
130
140
|
## License
|