@smicolon/ai-kit 0.0.1 → 0.1.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.
Files changed (163) hide show
  1. package/.claude-plugin/CLAUDE.md +7 -0
  2. package/.claude-plugin/marketplace.json +373 -0
  3. package/README.md +132 -0
  4. package/package.json +13 -3
  5. package/packs/architect/CHANGELOG.md +17 -0
  6. package/packs/architect/README.md +58 -0
  7. package/packs/architect/agents/system-architect.md +768 -0
  8. package/packs/architect/commands/diagram-create.md +300 -0
  9. package/packs/better-auth/.claude-plugin/plugin.json +14 -0
  10. package/packs/better-auth/.mcp.json +14 -0
  11. package/packs/better-auth/CHANGELOG.md +26 -0
  12. package/packs/better-auth/README.md +125 -0
  13. package/packs/better-auth/agents/auth-architect.md +278 -0
  14. package/packs/better-auth/commands/auth-provider-add.md +265 -0
  15. package/packs/better-auth/commands/auth-setup.md +298 -0
  16. package/packs/better-auth/skills/auth-security/SKILL.md +425 -0
  17. package/packs/better-auth/skills/better-auth-patterns/SKILL.md +455 -0
  18. package/packs/dev-loop/.claude-plugin/plugin.json +10 -0
  19. package/packs/dev-loop/CHANGELOG.md +69 -0
  20. package/packs/dev-loop/README.md +155 -0
  21. package/packs/dev-loop/commands/cancel-dev.md +21 -0
  22. package/packs/dev-loop/commands/dev-loop.md +72 -0
  23. package/packs/dev-loop/commands/dev-plan.md +351 -0
  24. package/packs/dev-loop/hooks/hooks.json +15 -0
  25. package/packs/dev-loop/hooks/stop-hook.sh +178 -0
  26. package/packs/dev-loop/scripts/setup-dev-loop.sh +194 -0
  27. package/packs/dev-loop/skills/tdd-planner/SKILL.md +249 -0
  28. package/packs/dev-loop/skills/tdd-planner/references/framework-patterns.md +874 -0
  29. package/packs/dev-loop/skills/tdd-planner/references/good-example.md +260 -0
  30. package/packs/dev-loop/skills/tdd-planner/references/plan-template.md +275 -0
  31. package/packs/django/CHANGELOG.md +39 -0
  32. package/packs/django/README.md +92 -0
  33. package/packs/django/agents/django-architect.md +182 -0
  34. package/packs/django/agents/django-builder.md +250 -0
  35. package/packs/django/agents/django-feature-based.md +420 -0
  36. package/packs/django/agents/django-reviewer.md +253 -0
  37. package/packs/django/agents/django-tester.md +230 -0
  38. package/packs/django/commands/api-endpoint.md +285 -0
  39. package/packs/django/commands/model-create.md +178 -0
  40. package/packs/django/commands/test-generate.md +325 -0
  41. package/packs/django/rules/migrations.md +138 -0
  42. package/packs/django/rules/models.md +167 -0
  43. package/packs/django/rules/serializers.md +126 -0
  44. package/packs/django/rules/services.md +131 -0
  45. package/packs/django/rules/tests.md +140 -0
  46. package/packs/django/rules/views.md +102 -0
  47. package/packs/django/skills/import-convention-enforcer/SKILL.md +226 -0
  48. package/packs/django/skills/import-convention-enforcer/patterns/django-imports.md +343 -0
  49. package/packs/django/skills/migration-safety-checker/SKILL.md +375 -0
  50. package/packs/django/skills/model-entity-validator/SKILL.md +298 -0
  51. package/packs/django/skills/performance-optimizer/SKILL.md +447 -0
  52. package/packs/django/skills/red-phase-verifier/SKILL.md +180 -0
  53. package/packs/django/skills/security-first-validator/SKILL.md +435 -0
  54. package/packs/django/skills/test-coverage-advisor/SKILL.md +394 -0
  55. package/packs/django/skills/test-validity-checker/SKILL.md +194 -0
  56. package/packs/failure-log/.claude-plugin/plugin.json +14 -0
  57. package/packs/failure-log/CHANGELOG.md +20 -0
  58. package/packs/failure-log/README.md +168 -0
  59. package/packs/failure-log/commands/failure-add.md +106 -0
  60. package/packs/failure-log/commands/failure-list.md +89 -0
  61. package/packs/failure-log/hooks/hooks.json +16 -0
  62. package/packs/failure-log/hooks/scripts/inject-failures.sh +64 -0
  63. package/packs/failure-log/skills/failure-log-manager/SKILL.md +164 -0
  64. package/packs/flutter/.claude-plugin/plugin.json +10 -0
  65. package/packs/flutter/CHANGELOG.md +19 -0
  66. package/packs/flutter/README.md +170 -0
  67. package/packs/flutter/agents/flutter-architect.md +166 -0
  68. package/packs/flutter/agents/flutter-builder.md +303 -0
  69. package/packs/flutter/agents/release-manager.md +355 -0
  70. package/packs/flutter/commands/fastlane-setup.md +188 -0
  71. package/packs/flutter/commands/flutter-build.md +90 -0
  72. package/packs/flutter/commands/flutter-deploy.md +133 -0
  73. package/packs/flutter/commands/flutter-test.md +117 -0
  74. package/packs/flutter/commands/signing-setup.md +209 -0
  75. package/packs/flutter/hooks/hooks.json +17 -0
  76. package/packs/flutter/skills/fastlane-knowledge/SKILL.md +193 -0
  77. package/packs/flutter/skills/flutter-architecture/SKILL.md +127 -0
  78. package/packs/flutter/skills/store-publishing/SKILL.md +163 -0
  79. package/packs/hono/.claude-plugin/plugin.json +19 -0
  80. package/packs/hono/CHANGELOG.md +19 -0
  81. package/packs/hono/README.md +143 -0
  82. package/packs/hono/agents/hono-architect.md +240 -0
  83. package/packs/hono/agents/hono-builder.md +285 -0
  84. package/packs/hono/agents/hono-reviewer.md +279 -0
  85. package/packs/hono/agents/hono-tester.md +346 -0
  86. package/packs/hono/commands/middleware-create.md +223 -0
  87. package/packs/hono/commands/project-init.md +306 -0
  88. package/packs/hono/commands/route-create.md +153 -0
  89. package/packs/hono/commands/rpc-client.md +263 -0
  90. package/packs/hono/hooks/hooks.json +4 -0
  91. package/packs/hono/skills/cloudflare-bindings/SKILL.md +408 -0
  92. package/packs/hono/skills/hono-patterns/SKILL.md +309 -0
  93. package/packs/hono/skills/rpc-typesafe/SKILL.md +388 -0
  94. package/packs/hono/skills/zod-validation/SKILL.md +332 -0
  95. package/packs/nestjs/CHANGELOG.md +29 -0
  96. package/packs/nestjs/README.md +75 -0
  97. package/packs/nestjs/agents/nestjs-architect.md +402 -0
  98. package/packs/nestjs/agents/nestjs-builder.md +301 -0
  99. package/packs/nestjs/agents/nestjs-tester.md +437 -0
  100. package/packs/nestjs/commands/module-create.md +369 -0
  101. package/packs/nestjs/rules/controllers.md +92 -0
  102. package/packs/nestjs/rules/dto.md +124 -0
  103. package/packs/nestjs/rules/entities.md +102 -0
  104. package/packs/nestjs/rules/services.md +106 -0
  105. package/packs/nestjs/skills/barrel-export-manager/SKILL.md +389 -0
  106. package/packs/nestjs/skills/import-convention-enforcer/SKILL.md +365 -0
  107. package/packs/nextjs/CHANGELOG.md +36 -0
  108. package/packs/nextjs/README.md +76 -0
  109. package/packs/nextjs/agents/frontend-tester.md +680 -0
  110. package/packs/nextjs/agents/frontend-visual.md +820 -0
  111. package/packs/nextjs/agents/nextjs-architect.md +331 -0
  112. package/packs/nextjs/agents/nextjs-modular.md +433 -0
  113. package/packs/nextjs/commands/component-create.md +398 -0
  114. package/packs/nextjs/rules/api-routes.md +129 -0
  115. package/packs/nextjs/rules/components.md +106 -0
  116. package/packs/nextjs/rules/hooks.md +132 -0
  117. package/packs/nextjs/skills/accessibility-validator/SKILL.md +445 -0
  118. package/packs/nextjs/skills/import-convention-enforcer/SKILL.md +399 -0
  119. package/packs/nextjs/skills/react-form-validator/SKILL.md +569 -0
  120. package/packs/nuxtjs/CHANGELOG.md +30 -0
  121. package/packs/nuxtjs/README.md +56 -0
  122. package/packs/nuxtjs/agents/frontend-tester.md +680 -0
  123. package/packs/nuxtjs/agents/frontend-visual.md +820 -0
  124. package/packs/nuxtjs/agents/nuxtjs-architect.md +537 -0
  125. package/packs/nuxtjs/commands/component-create.md +223 -0
  126. package/packs/nuxtjs/rules/components.md +101 -0
  127. package/packs/nuxtjs/rules/composables.md +118 -0
  128. package/packs/nuxtjs/rules/server-routes.md +127 -0
  129. package/packs/nuxtjs/skills/accessibility-validator/SKILL.md +183 -0
  130. package/packs/nuxtjs/skills/import-convention-enforcer/SKILL.md +196 -0
  131. package/packs/nuxtjs/skills/veevalidate-form-validator/SKILL.md +190 -0
  132. package/packs/onboard/CHANGELOG.md +22 -0
  133. package/packs/onboard/README.md +103 -0
  134. package/packs/onboard/agents/onboard-guide.md +118 -0
  135. package/packs/onboard/commands/onboard.md +313 -0
  136. package/packs/onboard/skills/onboard-context-provider/SKILL.md +98 -0
  137. package/packs/tanstack-router/.claude-plugin/plugin.json +14 -0
  138. package/packs/tanstack-router/CHANGELOG.md +30 -0
  139. package/packs/tanstack-router/README.md +113 -0
  140. package/packs/tanstack-router/agents/tanstack-architect.md +173 -0
  141. package/packs/tanstack-router/agents/tanstack-builder.md +360 -0
  142. package/packs/tanstack-router/agents/tanstack-tester.md +454 -0
  143. package/packs/tanstack-router/commands/form-create.md +313 -0
  144. package/packs/tanstack-router/commands/query-create.md +263 -0
  145. package/packs/tanstack-router/commands/route-create.md +190 -0
  146. package/packs/tanstack-router/commands/table-create.md +413 -0
  147. package/packs/tanstack-router/skills/ai-patterns/SKILL.md +370 -0
  148. package/packs/tanstack-router/skills/db-patterns/SKILL.md +346 -0
  149. package/packs/tanstack-router/skills/devtools-patterns/SKILL.md +415 -0
  150. package/packs/tanstack-router/skills/form-patterns/SKILL.md +425 -0
  151. package/packs/tanstack-router/skills/pacer-patterns/SKILL.md +341 -0
  152. package/packs/tanstack-router/skills/query-patterns/SKILL.md +359 -0
  153. package/packs/tanstack-router/skills/router-patterns/SKILL.md +285 -0
  154. package/packs/tanstack-router/skills/store-patterns/SKILL.md +351 -0
  155. package/packs/tanstack-router/skills/table-patterns/SKILL.md +531 -0
  156. package/packs/tanstack-router/skills/tanstack-conventions/SKILL.md +428 -0
  157. package/packs/tanstack-router/skills/virtual-patterns/SKILL.md +490 -0
  158. package/packs/worktree/.claude-plugin/plugin.json +19 -0
  159. package/packs/worktree/CHANGELOG.md +24 -0
  160. package/packs/worktree/README.md +110 -0
  161. package/packs/worktree/commands/wt.md +73 -0
  162. package/packs/worktree/scripts/wt.sh +396 -0
  163. package/packs/worktree/skills/worktree-manager/SKILL.md +68 -0
@@ -0,0 +1,7 @@
1
+ <claude-mem-context>
2
+ # Recent Activity
3
+
4
+ <!-- This section is auto-generated by claude-mem. Edit content outside the tags. -->
5
+
6
+ *No recent activity*
7
+ </claude-mem-context>
@@ -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 ADDED
@@ -0,0 +1,132 @@
1
+ # @smicolon/ai-kit
2
+
3
+ AI coding tool pack manager. Install convention packs (agents, skills, commands, rules, hooks) for any AI coding tool.
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ npx @smicolon/ai-kit init
9
+ ```
10
+
11
+ This walks you through selecting your AI tools and stack, then installs the right files in the right places.
12
+
13
+ ## Commands
14
+
15
+ ### `init`
16
+
17
+ Interactive first-time setup. Prompts for your AI tools, stack, and component preferences.
18
+
19
+ ```bash
20
+ npx @smicolon/ai-kit init
21
+ npx @smicolon/ai-kit init --cwd apps/web # monorepo sub-package
22
+ ```
23
+
24
+ ### `add <pack>`
25
+
26
+ Add a pack to your project.
27
+
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
34
+ ```
35
+
36
+ ### `list`
37
+
38
+ Show available or installed packs.
39
+
40
+ ```bash
41
+ npx @smicolon/ai-kit list # available packs
42
+ npx @smicolon/ai-kit list --installed # installed packs
43
+ ```
44
+
45
+ ### `remove <pack>`
46
+
47
+ Remove a pack and all its installed files.
48
+
49
+ ```bash
50
+ npx @smicolon/ai-kit remove django
51
+ ```
52
+
53
+ ### `update [pack]`
54
+
55
+ Update installed packs to latest versions.
56
+
57
+ ```bash
58
+ npx @smicolon/ai-kit update # update all
59
+ npx @smicolon/ai-kit update django # update one
60
+ ```
61
+
62
+ ## Supported AI Tools
63
+
64
+ | Tool | Skills | Agents | Commands | Rules | Hooks |
65
+ |------|:------:|:------:|:--------:|:-----:|:-----:|
66
+ | Claude Code | yes | yes | yes | yes | yes |
67
+ | Cursor | yes | - | - | yes (.mdc) | - |
68
+ | Windsurf | yes | - | - | yes | - |
69
+ | GitHub Copilot | yes | yes | - | - | - |
70
+ | Codex | yes | yes | - | - | - |
71
+ | Cline | yes | - | - | yes | - |
72
+ | Continue | yes | - | - | yes | - |
73
+ | Gemini | yes | yes | - | - | - |
74
+ | Junie | yes | - | - | yes | - |
75
+ | Kiro | yes | - | - | yes | - |
76
+ | Amp | yes | yes | - | - | - |
77
+ | Antigravity | yes | - | - | yes | - |
78
+ | Augment | yes | - | - | yes | - |
79
+ | Roo Code | yes | - | - | yes | - |
80
+ | Amazon Q | yes | - | - | yes | - |
81
+
82
+ ## Available Packs
83
+
84
+ | Pack | Agents | Skills | Commands | Rules |
85
+ |------|:------:|:------:|:--------:|:-----:|
86
+ | django | 5 | 8 | 3 | 6 |
87
+ | nestjs | 3 | 2 | 1 | 4 |
88
+ | nextjs | 4 | 3 | 1 | 3 |
89
+ | nuxtjs | 3 | 3 | 1 | 3 |
90
+ | hono | 4 | 4 | 4 | - |
91
+ | tanstack-router | 3 | 11 | 4 | - |
92
+ | better-auth | 1 | 2 | 2 | - |
93
+ | flutter | 3 | 3 | 5 | - |
94
+ | architect | 1 | - | 1 | - |
95
+ | dev-loop | - | 1 | 3 | - |
96
+ | failure-log | - | 1 | 2 | - |
97
+ | worktree | - | 1 | 1 | - |
98
+ | onboard | 1 | 1 | 1 | - |
99
+
100
+ ## How It Works
101
+
102
+ Skills use a **canonical + symlink** strategy:
103
+
104
+ ```
105
+ your-project/
106
+ ├── .agents/skills/ # canonical copies
107
+ │ ├── import-convention-enforcer/
108
+ │ └── model-entity-validator/
109
+ ├── .claude/skills/ # symlinks → .agents/skills/*
110
+ ├── .cursor/skills/ # symlinks → .agents/skills/*
111
+ ├── .claude/agents/ # copied .md files
112
+ ├── .claude/commands/ # copied .md files
113
+ ├── .claude/rules/ # copied .md files
114
+ ├── .cursor/rules/ # converted .mdc files
115
+ ├── .ai-kit.json # tracks installed packs + files
116
+ └── .gitignore # auto-updated
117
+ ```
118
+
119
+ Config is stored in `.ai-kit.json` which tracks installed packs and all created files for clean removal.
120
+
121
+ ## Monorepo Support
122
+
123
+ Use `--cwd` to target a sub-package. Both the sub-package and root `.gitignore` are updated.
124
+
125
+ ```bash
126
+ npx @smicolon/ai-kit init --cwd apps/web
127
+ npx @smicolon/ai-kit add django --cwd apps/web
128
+ ```
129
+
130
+ ## License
131
+
132
+ MIT
package/package.json CHANGED
@@ -1,15 +1,25 @@
1
1
  {
2
2
  "name": "@smicolon/ai-kit",
3
- "version": "0.0.1",
3
+ "version": "0.1.1",
4
4
  "description": "AI coding tool pack manager for Smicolon standards",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/smicolon/ai-kit",
9
+ "directory": "packages/cli"
10
+ },
5
11
  "type": "module",
6
12
  "bin": {
7
13
  "ai-kit": "./dist/index.js"
8
14
  },
9
15
  "main": "./dist/index.js",
10
- "files": ["dist", "packs"],
16
+ "files": [
17
+ "dist",
18
+ "packs",
19
+ ".claude-plugin"
20
+ ],
11
21
  "scripts": {
12
- "build": "tsup",
22
+ "build": "tsup && node -e \"const fs=require('fs');fs.cpSync('../../packs','./packs',{recursive:true});fs.cpSync('../../.claude-plugin','./.claude-plugin',{recursive:true})\"",
13
23
  "dev": "tsup --watch",
14
24
  "typecheck": "tsc --noEmit"
15
25
  },
@@ -0,0 +1,17 @@
1
+ # Changelog
2
+
3
+ All notable changes to the smi-architect plugin will be documented in this file.
4
+
5
+ ## [Unreleased]
6
+
7
+ ### Changed
8
+ - Renamed from `smi-architect` to `architect` as part of ai-kit migration
9
+ - Moved from `plugins/smi-architect/` to `packs/architect/`
10
+
11
+ ## [1.0.0] - 2024-12-01
12
+
13
+ ### Added
14
+ - Initial stable release
15
+ - 1 agent: system-architect (Eraser.io diagram-as-code)
16
+ - 1 command: diagram-create
17
+ - Support for ERD, flowcharts, cloud architecture, sequence diagrams, BPMN
@@ -0,0 +1,58 @@
1
+ # System Architecture Standards Plugin
2
+
3
+ Smicolon company standards for system architecture and diagram-as-code.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ # Add Smicolon marketplace
9
+ /plugin marketplace add https://github.com/smicolon/ai-kit
10
+
11
+ # Install System Architecture plugin
12
+ /plugin install architect
13
+ ```
14
+
15
+ ## What's Included
16
+
17
+ ### 1 Specialized Agent
18
+
19
+ - `@system-architect` - Eraser.io diagram-as-code specialist
20
+
21
+ ### Supported Diagram Types
22
+
23
+ The agent can create:
24
+ - **Entity Relationship Diagrams (ERD)** - Database schema visualization
25
+ - **Flowcharts** - Process flows and decision trees
26
+ - **Cloud Architecture** - AWS, Azure, GCP infrastructure diagrams
27
+ - **Sequence Diagrams** - System interaction flows
28
+ - **BPMN Diagrams** - Business process modeling
29
+
30
+ All diagrams are generated as code using Eraser.io syntax.
31
+
32
+ ## Usage
33
+
34
+ ```bash
35
+ # Database schema
36
+ @system-architect "Create an ERD for our e-commerce database"
37
+
38
+ # Cloud infrastructure
39
+ @system-architect "Design AWS architecture for microservices platform"
40
+
41
+ # Process flow
42
+ @system-architect "Create a sequence diagram for user authentication flow"
43
+
44
+ # Business process
45
+ @system-architect "Create BPMN diagram for order fulfillment process"
46
+ ```
47
+
48
+ ## Output
49
+
50
+ The agent generates diagram-as-code that you can:
51
+ 1. Copy to [Eraser.io](https://www.eraser.io/)
52
+ 2. Edit and refine visually
53
+ 3. Export as PNG, SVG, or PDF
54
+ 4. Version control alongside your code
55
+
56
+ ## Documentation
57
+
58
+ See the main [Smicolon Claude Infra repository](https://github.com/smicolon/ai-kit) for complete documentation.