@mikulgohil/ai-kit 1.3.1 → 1.3.2
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/README.md +122 -143
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,58 +1,76 @@
|
|
|
1
|
-
|
|
2
|
-
<h1 align="center">AI Kit</h1>
|
|
3
|
-
<p align="center">
|
|
4
|
-
Make AI coding assistants actually useful.<br/>
|
|
5
|
-
One command. Project-aware AI from the first conversation.
|
|
6
|
-
</p>
|
|
7
|
-
</p>
|
|
8
|
-
|
|
9
|
-
<p align="center">
|
|
10
|
-
<a href="https://www.npmjs.com/package/@mikulgohil/ai-kit"><img src="https://img.shields.io/npm/v/@mikulgohil/ai-kit.svg" alt="npm version" /></a>
|
|
11
|
-
<a href="https://www.npmjs.com/package/@mikulgohil/ai-kit"><img src="https://img.shields.io/npm/dm/@mikulgohil/ai-kit.svg" alt="npm downloads" /></a>
|
|
12
|
-
<a href="https://github.com/mikulgohil/ai-kit/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/@mikulgohil/ai-kit.svg" alt="license" /></a>
|
|
13
|
-
<a href="https://mikulgohil.github.io/ai-kit-docs"><img src="https://img.shields.io/badge/docs-ai--kit--docs-blue" alt="documentation" /></a>
|
|
14
|
-
</p>
|
|
1
|
+
# AI Kit
|
|
15
2
|
|
|
16
|
-
|
|
3
|
+
**Make AI coding assistants actually useful.**
|
|
4
|
+
One command. Project-aware AI from the first conversation.
|
|
17
5
|
|
|
18
|
-
|
|
6
|
+
[](https://www.npmjs.com/package/@mikulgohil/ai-kit)
|
|
7
|
+
[](https://www.npmjs.com/package/@mikulgohil/ai-kit)
|
|
8
|
+
[](https://github.com/mikulgohil/ai-kit/blob/main/LICENSE)
|
|
19
9
|
|
|
20
|
-
|
|
10
|
+
> **[Read the full documentation](https://mikulgohil.github.io/ai-kit-docs)** | [Getting Started](https://mikulgohil.github.io/ai-kit-docs/getting-started) | [CLI Reference](https://mikulgohil.github.io/ai-kit-docs/cli-reference) | [Skills & Commands](https://mikulgohil.github.io/ai-kit-docs/slash-commands) | [Hooks](https://mikulgohil.github.io/ai-kit-docs/hooks) | [Agents](https://mikulgohil.github.io/ai-kit-docs/agents) | [Changelog](https://mikulgohil.github.io/ai-kit-docs/changelog)
|
|
21
11
|
|
|
22
|
-
|
|
23
|
-
-
|
|
24
|
-
|
|
25
|
-
- **Inconsistent output** — Developer A gets different AI behavior than Developer B on the same project
|
|
26
|
-
- **No quality gates** — AI-generated code goes straight to PR without validation
|
|
27
|
-
- **Same mistakes** — No system to track what went wrong, so the team keeps hitting the same issues
|
|
12
|
+
```bash
|
|
13
|
+
npx @mikulgohil/ai-kit init
|
|
14
|
+
```
|
|
28
15
|
|
|
29
|
-
|
|
16
|
+
---
|
|
30
17
|
|
|
31
|
-
##
|
|
18
|
+
## Problems AI Kit Solves
|
|
19
|
+
|
|
20
|
+
Every team using AI coding assistants hits these problems. AI Kit solves each one.
|
|
21
|
+
|
|
22
|
+
| # | Problem | How AI Kit Solves It |
|
|
23
|
+
|---|---------|---------------------|
|
|
24
|
+
| 1 | **AI forgets everything each session** — Every new chat starts from zero. No memory of project rules, patterns, or past decisions. | Generates a persistent `CLAUDE.md` with project rules, conventions, and stack details. The AI knows your project from the first prompt, every time. |
|
|
25
|
+
| 2 | **AI generates wrong framework patterns** — Writes Pages Router code when you use App Router. Uses CSS when you use Tailwind. Creates default exports when your project uses named exports. | Auto-detects your exact stack (framework, router, CMS, styling, TypeScript config) and generates rules specific to your setup. The AI can't use the wrong patterns. |
|
|
26
|
+
| 3 | **Developers write bad prompts** — Vague or incorrect prompts lead to wrong code, wasted time, and rework. Junior developers waste the most time. | Ships **39 pre-built skills** so developers don't write prompts from scratch — just run `/review`, `/security-check`, `/new-component`, `/refactor`, etc. |
|
|
27
|
+
| 4 | **Same mistakes happen repeatedly** — No system to track what went wrong, so the team keeps hitting the same build failures and lint errors. | Generates a **mistakes log** (`docs/mistakes-log.md`) with **auto-capture hook** that logs every build/lint failure automatically. The AI references it to avoid repeating them. |
|
|
28
|
+
| 5 | **Every developer gets different AI behavior** — No consistency in how the team uses AI tools, leading to inconsistent code quality and style. | One `ai-kit init` command generates the same rules for the entire team — everyone's AI follows identical project standards. Commit the generated files to the repo. |
|
|
29
|
+
| 6 | **No quality checks on AI-generated code** — AI output goes straight to PR without type checking, linting, or security review. | Automated **hooks** run formatting, type-checking, linting, and git safety checks in real-time as the AI writes code. **Quality gate** runs everything before merge. |
|
|
30
|
+
| 7 | **AI generates insecure code** — No guardrails for secrets exposure, XSS, SQL injection, or other vulnerabilities. AI doesn't scan its own output. | Built-in **security audit** scans for exposed secrets, OWASP risks, and misconfigurations. **Security review agent** catches issues at development time, not production. |
|
|
31
|
+
| 8 | **AI can't handle multi-file reasoning** — Changes to one component break related files. AI loses context across linked models and shared types. | **8 specialized agents** with focused expertise — planner, code-reviewer, build-resolver, doc-updater, refactor-cleaner — each maintains context for their domain. |
|
|
32
|
+
| 9 | **No decision trail** — Nobody remembers why a technical decision was made 3 months ago. Knowledge walks out the door when developers leave. | Auto-scaffolds a **decisions log** (`docs/decisions-log.md`) to capture what was decided, why, and by whom — fully searchable and traceable. |
|
|
33
|
+
| 10 | **Onboarding takes too long** — New developers spend days understanding the project and its AI setup before they can contribute. | AI Kit generates developer guides and project-aware configurations — new team members get productive AI assistance from day one with zero manual setup. |
|
|
34
|
+
| 11 | **Context gets repeated every conversation** — You explain the same conventions in every session: import order, naming, component structure, testing patterns. | All conventions are encoded in the generated rules file. The AI reads them automatically at session start. You explain once, it remembers forever. |
|
|
35
|
+
| 12 | **AI doesn't improve over time** — The AI makes the same wrong suggestions regardless of past feedback, team patterns, or previous failures. | The system **learns as you use it** — mistakes log, decisions log, and updated rules mean the AI gets smarter with every session. Mistakes auto-capture builds the log organically. |
|
|
36
|
+
| 13 | **Complex tasks need multiple manual AI passes** — Developers manually coordinate review + test + docs updates across separate conversations. | **Multi-agent orchestration** runs multiple specialized agents in parallel — review, test, document, and refactor in one command with `/orchestrate`. |
|
|
37
|
+
| 14 | **Switching AI tools means starting over** — Moving from Cursor to Claude Code (or vice versa) loses all configuration and project context. | Generates configs for **5+ AI tools** (Claude Code, Cursor, Windsurf, Aider, Cline) from a single source — switch tools without losing project knowledge. |
|
|
38
|
+
| 15 | **AI creates components without tests, docs, or types** — Every AI-generated file needs manual follow-up to add what was missed. | Skills like `/new-component` enforce a structured workflow: asks 10 questions, reads existing patterns, generates component + types + tests + docs together. |
|
|
39
|
+
| 16 | **No visibility into AI usage costs** — Management has no idea how many tokens the team is consuming or which projects cost the most. | Built-in **token tracking** provides daily/weekly/monthly usage summaries, per-project cost breakdown, budget alerts, and ROI estimates. |
|
|
40
|
+
| 17 | **Cursor copies entire modules instead of targeted edits** — AI bloats the repo with unnecessary file duplication, especially in CMS and monorepo setups. | Generated rules include explicit instructions for editing patterns — update in place, respect package boundaries, follow existing structure. Rules prevent over-generation. |
|
|
41
|
+
| 18 | **No component-level AI awareness** — AI doesn't know which components have tests, stories, Sitecore integration, or documentation gaps. | **Component scanner** discovers all React components and generates `.ai.md` docs with health scores, props tables, Sitecore field mappings, and dependency trees. |
|
|
42
|
+
| 19 | **Setup is manual and error-prone** — Configuring AI assistants requires deep knowledge of each tool's config format. Most teams skip it entirely. | **Zero manual configuration** — one command auto-detects your stack and generates everything. Update with one command when the project evolves. |
|
|
43
|
+
| 20 | **AI hallucinates framework-specific APIs** — Generates incorrect hook usage, wrong data fetching patterns, or non-existent component APIs for your framework version. | Stack-specific template fragments include exact API patterns for your detected framework version (e.g., Next.js 15 App Router patterns, Sitecore Content SDK v2 patterns). |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Quick Start
|
|
32
48
|
|
|
33
49
|
```bash
|
|
50
|
+
# Install and configure in any project (30 seconds)
|
|
34
51
|
npx @mikulgohil/ai-kit init
|
|
35
|
-
```
|
|
36
52
|
|
|
37
|
-
|
|
53
|
+
# Check your project health
|
|
54
|
+
npx @mikulgohil/ai-kit health
|
|
38
55
|
|
|
39
|
-
|
|
56
|
+
# Open in Claude Code or Cursor — AI now knows your project
|
|
57
|
+
```
|
|
40
58
|
|
|
41
59
|
---
|
|
42
60
|
|
|
43
61
|
## What You Get
|
|
44
62
|
|
|
45
63
|
| Generated | What It Does |
|
|
46
|
-
|
|
47
|
-
|
|
|
48
|
-
|
|
|
49
|
-
|
|
|
50
|
-
|
|
|
51
|
-
|
|
|
52
|
-
|
|
|
53
|
-
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
64
|
+
|---|---|
|
|
65
|
+
| `CLAUDE.md` | Project-aware rules for Claude Code — your stack, conventions, and patterns |
|
|
66
|
+
| `.cursorrules` + `.cursor/rules/*.mdc` | Same rules formatted for Cursor AI with scoped file matching |
|
|
67
|
+
| 39 Skills | Auto-discovered workflows — `/review`, `/new-component`, `/security-check`, `/pre-pr`, and 35 more |
|
|
68
|
+
| 8 Agents | Specialized AI assistants — planner, reviewer, security, E2E, build-resolver, and more |
|
|
69
|
+
| 3 Context Modes | Switch between dev (build fast), review (check quality), and research (understand code) |
|
|
70
|
+
| Automated Hooks | Auto-format, TypeScript checks, console.log warnings, mistakes auto-capture, git safety |
|
|
71
|
+
| 6 Guides | Developer playbooks for prompts, tokens, hooks, agents, Figma workflow |
|
|
72
|
+
| Doc Scaffolds | Mistakes log, decisions log, time log — structured knowledge tracking |
|
|
73
|
+
| Component Docs | Auto-generated `.ai.md` per component with health scores and Sitecore integration |
|
|
56
74
|
|
|
57
75
|
---
|
|
58
76
|
|
|
@@ -60,7 +78,7 @@ AI Kit scans your project, detects your tech stack, and generates tailored rules
|
|
|
60
78
|
|
|
61
79
|
### Auto Stack Detection
|
|
62
80
|
|
|
63
|
-
Scans your `package.json`, config files, and directory structure to detect your exact stack
|
|
81
|
+
Scans your `package.json`, config files, and directory structure to detect your exact stack:
|
|
64
82
|
|
|
65
83
|
| What It Detects | What the AI Learns |
|
|
66
84
|
|---|---|
|
|
@@ -73,22 +91,20 @@ Scans your `package.json`, config files, and directory structure to detect your
|
|
|
73
91
|
|
|
74
92
|
### 39 Pre-Built Skills
|
|
75
93
|
|
|
76
|
-
|
|
94
|
+
Structured AI workflows applied automatically — the AI recognizes what you're doing and loads the right skill:
|
|
77
95
|
|
|
78
96
|
| Category | Skills |
|
|
79
97
|
|---|---|
|
|
80
|
-
|
|
|
81
|
-
|
|
|
82
|
-
|
|
|
83
|
-
|
|
|
84
|
-
|
|
|
85
|
-
|
|
|
86
|
-
|
|
|
98
|
+
| Getting Started | `prompt-help`, `understand` |
|
|
99
|
+
| Building | `new-component`, `new-page`, `api-route`, `error-boundary`, `extract-hook`, `figma-to-code`, `design-tokens`, `schema-gen`, `storybook-gen` |
|
|
100
|
+
| Quality & Review | `review`, `pre-pr`, `test`, `accessibility-audit`, `security-check`, `responsive-check`, `type-fix`, `perf-audit`, `bundle-check`, `i18n-check` |
|
|
101
|
+
| Maintenance | `fix-bug`, `refactor`, `optimize`, `migrate`, `dep-check`, `sitecore-debug` |
|
|
102
|
+
| Workflow | `document`, `commit-msg`, `env-setup`, `changelog`, `release` |
|
|
103
|
+
| Session | `save-session`, `resume-session`, `checkpoint` |
|
|
104
|
+
| Orchestration | `orchestrate`, `quality-gate`, `harness-audit` |
|
|
87
105
|
|
|
88
106
|
### 8 Specialized Agents
|
|
89
107
|
|
|
90
|
-
Agents handle delegated tasks with focused expertise:
|
|
91
|
-
|
|
92
108
|
| Agent | Purpose | Conditional |
|
|
93
109
|
|---|---|---|
|
|
94
110
|
| `planner` | Break features into implementation plans | No |
|
|
@@ -97,28 +113,25 @@ Agents handle delegated tasks with focused expertise:
|
|
|
97
113
|
| `build-resolver` | Diagnose and fix build/type errors | No |
|
|
98
114
|
| `doc-updater` | Keep documentation in sync with code | No |
|
|
99
115
|
| `refactor-cleaner` | Find and remove dead code | No |
|
|
100
|
-
| `e2e-runner` | Playwright tests with Page Object Model | Yes —
|
|
101
|
-
| `sitecore-specialist` | Sitecore XM Cloud patterns and debugging | Yes —
|
|
116
|
+
| `e2e-runner` | Playwright tests with Page Object Model | Yes — Playwright only |
|
|
117
|
+
| `sitecore-specialist` | Sitecore XM Cloud patterns and debugging | Yes — Sitecore only |
|
|
102
118
|
|
|
103
119
|
### Automated Quality Hooks
|
|
104
120
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
| Profile | What Runs |
|
|
121
|
+
| Profile | What Runs Automatically |
|
|
108
122
|
|---|---|
|
|
109
|
-
|
|
|
110
|
-
|
|
|
111
|
-
|
|
|
123
|
+
| Minimal | Auto-format + git push safety |
|
|
124
|
+
| Standard | + TypeScript type-check + console.log warnings + mistakes auto-capture |
|
|
125
|
+
| Strict | + ESLint check + stop-time console.log audit |
|
|
112
126
|
|
|
113
|
-
**Mistakes auto-capture** — When a build
|
|
127
|
+
**Mistakes auto-capture** — When a build/lint command fails, the hook logs the error to `docs/mistakes-log.md` with timestamp and error preview. The mistakes log builds itself over time.
|
|
114
128
|
|
|
115
129
|
### Component Scanner & Docs
|
|
116
130
|
|
|
117
|
-
Discovers all React components and generates `.ai.md` documentation
|
|
118
|
-
|
|
131
|
+
Discovers all React components and generates `.ai.md` documentation:
|
|
119
132
|
- Props table with types and required flags
|
|
120
|
-
- Health score (0-100) based on tests, stories, docs,
|
|
121
|
-
- Sitecore
|
|
133
|
+
- Health score (0-100) based on tests, stories, docs, Sitecore integration
|
|
134
|
+
- Sitecore details: datasource fields, rendering params, placeholders, GraphQL queries
|
|
122
135
|
- Smart merge — updates auto-generated sections while preserving manual edits
|
|
123
136
|
|
|
124
137
|
### Project Health Dashboard
|
|
@@ -127,15 +140,7 @@ Discovers all React components and generates `.ai.md` documentation files with:
|
|
|
127
140
|
npx @mikulgohil/ai-kit health
|
|
128
141
|
```
|
|
129
142
|
|
|
130
|
-
One-glance view
|
|
131
|
-
|
|
132
|
-
### Security Audit
|
|
133
|
-
|
|
134
|
-
```bash
|
|
135
|
-
npx @mikulgohil/ai-kit audit
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
Scans for secrets in CLAUDE.md, MCP config security, .env gitignore status, hook validity, agent configuration, and more. Outputs an A-F health grade.
|
|
143
|
+
One-glance view across 5 sections: setup integrity, security, stack detection, tools/MCP, and documentation. Outputs an A-F grade with actionable recommendations.
|
|
139
144
|
|
|
140
145
|
### Token Tracking & Cost Estimates
|
|
141
146
|
|
|
@@ -143,24 +148,17 @@ Scans for secrets in CLAUDE.md, MCP config security, .env gitignore status, hook
|
|
|
143
148
|
npx @mikulgohil/ai-kit tokens
|
|
144
149
|
```
|
|
145
150
|
|
|
146
|
-
|
|
147
|
-
- Budget progress with alerts at 50%, 75%, 90%
|
|
148
|
-
- Per-project cost breakdown
|
|
149
|
-
- Week-over-week trends
|
|
150
|
-
- Model recommendations (Sonnet vs Opus optimization)
|
|
151
|
-
- ROI estimate (time saved vs cost)
|
|
151
|
+
Period summaries, budget progress with alerts, per-project cost breakdown, week-over-week trends, model recommendations (Sonnet vs Opus), and ROI estimates.
|
|
152
152
|
|
|
153
153
|
### Multi-Tool Support
|
|
154
154
|
|
|
155
|
-
Generate configs once, use across 5+ AI tools:
|
|
156
|
-
|
|
157
155
|
| Tool | Output |
|
|
158
156
|
|---|---|
|
|
159
|
-
|
|
|
160
|
-
|
|
|
161
|
-
|
|
|
162
|
-
|
|
|
163
|
-
|
|
|
157
|
+
| Claude Code | `CLAUDE.md` + skills + agents + contexts + hooks |
|
|
158
|
+
| Cursor | `.cursorrules` + `.cursor/rules/*.mdc` + skills |
|
|
159
|
+
| Windsurf | `.windsurfrules` (via `ai-kit export`) |
|
|
160
|
+
| Aider | `.aider.conf.yml` (via `ai-kit export`) |
|
|
161
|
+
| Cline | `.clinerules` (via `ai-kit export`) |
|
|
164
162
|
|
|
165
163
|
---
|
|
166
164
|
|
|
@@ -169,7 +167,7 @@ Generate configs once, use across 5+ AI tools:
|
|
|
169
167
|
| Command | Description |
|
|
170
168
|
|---|---|
|
|
171
169
|
| `ai-kit init [path]` | Scan project and generate all configs |
|
|
172
|
-
| `ai-kit update [path]` | Re-scan and update
|
|
170
|
+
| `ai-kit update [path]` | Re-scan and update generated files (safe merge) |
|
|
173
171
|
| `ai-kit reset [path]` | Remove all AI Kit generated files |
|
|
174
172
|
| `ai-kit health [path]` | One-glance project health dashboard |
|
|
175
173
|
| `ai-kit audit [path]` | Security and configuration health audit |
|
|
@@ -179,105 +177,86 @@ Generate configs once, use across 5+ AI tools:
|
|
|
179
177
|
| `ai-kit stats [path]` | Project complexity metrics |
|
|
180
178
|
| `ai-kit export [path]` | Export rules to Windsurf, Aider, Cline |
|
|
181
179
|
|
|
182
|
-
`path` defaults to the current directory if omitted.
|
|
183
|
-
|
|
184
180
|
---
|
|
185
181
|
|
|
186
182
|
## Supported Tech Stacks
|
|
187
183
|
|
|
188
184
|
| Category | Technologies |
|
|
189
185
|
|---|---|
|
|
190
|
-
|
|
|
191
|
-
|
|
|
192
|
-
|
|
|
193
|
-
|
|
|
194
|
-
|
|
|
195
|
-
|
|
|
196
|
-
|
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
|
|
|
186
|
+
| Frameworks | Next.js (App Router, Pages Router, Hybrid), React |
|
|
187
|
+
| CMS | Sitecore XM Cloud (Content SDK v2), Sitecore JSS |
|
|
188
|
+
| Styling | Tailwind CSS (v3 + v4), SCSS, CSS Modules, styled-components |
|
|
189
|
+
| Language | TypeScript (with strict mode detection) |
|
|
190
|
+
| Formatters | Prettier, Biome (auto-detected for hooks) |
|
|
191
|
+
| Monorepos | Turborepo, Nx, Lerna, pnpm workspaces |
|
|
192
|
+
| Design | Figma MCP, Figma Code CLI, design tokens, visual tests |
|
|
193
|
+
| Testing | Playwright, Storybook, axe-core |
|
|
194
|
+
| Quality | ESLint, Snyk, Knip, @next/bundle-analyzer |
|
|
195
|
+
| Package Managers | npm, pnpm, yarn, bun |
|
|
200
196
|
|
|
201
197
|
---
|
|
202
198
|
|
|
203
|
-
##
|
|
204
|
-
|
|
205
|
-
```bash
|
|
206
|
-
# 1. Run in any project directory
|
|
207
|
-
npx @mikulgohil/ai-kit init
|
|
208
|
-
|
|
209
|
-
# 2. Follow the interactive prompts (30 seconds)
|
|
210
|
-
|
|
211
|
-
# 3. Check your project health
|
|
212
|
-
npx @mikulgohil/ai-kit health
|
|
213
|
-
|
|
214
|
-
# 4. Open in Claude Code or Cursor — AI now knows your project
|
|
215
|
-
```
|
|
216
|
-
|
|
217
|
-
### Updating
|
|
218
|
-
|
|
219
|
-
When your project evolves (new dependencies, framework upgrades):
|
|
220
|
-
|
|
221
|
-
```bash
|
|
222
|
-
npx @mikulgohil/ai-kit update
|
|
223
|
-
```
|
|
199
|
+
## The Impact
|
|
224
200
|
|
|
225
|
-
|
|
201
|
+
| Metric | Before AI Kit | After AI Kit |
|
|
202
|
+
|---|---|---|
|
|
203
|
+
| Context setup per conversation | 5-10 min | 0 min (auto-loaded) |
|
|
204
|
+
| Code review cycles per PR | 2-4 rounds | 1-2 rounds |
|
|
205
|
+
| Component creation time | 30-60 min | 10-15 min |
|
|
206
|
+
| New developer onboarding | 1-2 weeks | 2-3 days |
|
|
207
|
+
| Security issues caught | At PR review or production | At development time |
|
|
208
|
+
| Knowledge retention | Lost when developers leave | Logged in decisions and mistakes |
|
|
209
|
+
| AI tool switching cost | Start over from scratch | Zero — same rules across 5+ tools |
|
|
210
|
+
| AI-generated code quality | Inconsistent, needs manual fixing | Follows project standards automatically |
|
|
226
211
|
|
|
227
212
|
---
|
|
228
213
|
|
|
229
214
|
## Who Is This For?
|
|
230
215
|
|
|
231
|
-
**Individual developers** — Stop re-explaining context.
|
|
216
|
+
**Individual developers** — Stop re-explaining context. The AI knows your project from the first conversation.
|
|
232
217
|
|
|
233
|
-
**Tech leads** — Enforce coding standards through AI tools instead of code review comments.
|
|
218
|
+
**Tech leads** — Enforce coding standards through AI tools instead of code review comments.
|
|
234
219
|
|
|
235
|
-
**Teams** — Same AI experience across every developer
|
|
220
|
+
**Teams** — Same AI experience across every developer. New hires get the same AI context as senior engineers.
|
|
236
221
|
|
|
237
222
|
**Enterprise** — Consistent AI governance across projects. Security audit, token tracking, and quality hooks provide visibility and control.
|
|
238
223
|
|
|
239
224
|
---
|
|
240
225
|
|
|
241
|
-
##
|
|
226
|
+
## Updating
|
|
242
227
|
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
| Knowledge retention | Lost when developers leave | Logged in decisions, mistakes, and time logs |
|
|
251
|
-
| AI tool switching cost | Start over from scratch | Zero — same rules across 5+ tools |
|
|
228
|
+
When your project evolves:
|
|
229
|
+
|
|
230
|
+
```bash
|
|
231
|
+
npx @mikulgohil/ai-kit update
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
Only content between `AI-KIT:START/END` markers is refreshed. Your custom rules and manual edits are preserved.
|
|
252
235
|
|
|
253
236
|
---
|
|
254
237
|
|
|
255
238
|
## Documentation
|
|
256
239
|
|
|
257
|
-
|
|
240
|
+
**[mikulgohil.github.io/ai-kit-docs](https://mikulgohil.github.io/ai-kit-docs)**
|
|
258
241
|
|
|
259
242
|
| Page | What You'll Learn |
|
|
260
243
|
|---|---|
|
|
261
244
|
| [Getting Started](https://mikulgohil.github.io/ai-kit-docs/getting-started) | Step-by-step setup walkthrough |
|
|
262
245
|
| [CLI Reference](https://mikulgohil.github.io/ai-kit-docs/cli-reference) | All 10 commands with examples |
|
|
263
246
|
| [Skills & Commands](https://mikulgohil.github.io/ai-kit-docs/slash-commands) | All 39 skills with usage guides |
|
|
264
|
-
| [Hooks](https://mikulgohil.github.io/ai-kit-docs/hooks) | Hook profiles and configuration |
|
|
265
|
-
| [Agents](https://mikulgohil.github.io/ai-kit-docs/agents) | 8 specialized agents |
|
|
266
247
|
| [What Gets Generated](https://mikulgohil.github.io/ai-kit-docs/what-gets-generated) | Detailed breakdown of every generated file |
|
|
248
|
+
| [Hooks](https://mikulgohil.github.io/ai-kit-docs/hooks) | Hook profiles, mistakes auto-capture |
|
|
249
|
+
| [Agents](https://mikulgohil.github.io/ai-kit-docs/agents) | 8 specialized agents |
|
|
267
250
|
| [Changelog](https://mikulgohil.github.io/ai-kit-docs/changelog) | Version history and release notes |
|
|
268
251
|
|
|
269
252
|
---
|
|
270
253
|
|
|
271
254
|
## Requirements
|
|
272
255
|
|
|
273
|
-
-
|
|
274
|
-
-
|
|
275
|
-
-
|
|
276
|
-
|
|
277
|
-
## Repository
|
|
278
|
-
|
|
279
|
-
[github.com/mikulgohil/ai-kit](https://github.com/mikulgohil/ai-kit)
|
|
256
|
+
- Node.js 18+
|
|
257
|
+
- A project with `package.json`
|
|
258
|
+
- Claude Code or Cursor (at least one AI tool)
|
|
280
259
|
|
|
281
260
|
## License
|
|
282
261
|
|
|
283
|
-
MIT
|
|
262
|
+
MIT — [github.com/mikulgohil/ai-kit](https://github.com/mikulgohil/ai-kit)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikulgohil/ai-kit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "AI-assisted development setup kit. Auto-detects your tech stack and generates tailored CLAUDE.md, .cursorrules, hooks, agents, context modes, slash commands, and developer guides.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|