@mikulgohil/ai-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.
- package/README.md +3 -3
- package/guides/getting-started.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ AI-assisted development setup kit. Auto-detects your tech stack and generates ta
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx ai-kit init
|
|
8
|
+
npx @mikulgohil/ai-kit init
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Requires Node >= 18.
|
|
@@ -51,13 +51,13 @@ Running `init` scans your project and produces:
|
|
|
51
51
|
To pick up new dependencies or config changes after your stack evolves:
|
|
52
52
|
|
|
53
53
|
```bash
|
|
54
|
-
npx ai-kit update
|
|
54
|
+
npx @mikulgohil/ai-kit update
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
To remove all generated files and start clean:
|
|
58
58
|
|
|
59
59
|
```bash
|
|
60
|
-
npx ai-kit reset
|
|
60
|
+
npx @mikulgohil/ai-kit reset
|
|
61
61
|
```
|
|
62
62
|
|
|
63
63
|
## Further Reading
|
|
@@ -50,12 +50,12 @@ Open any file and use Cmd+K or the chat panel. The `.cursorrules` file is automa
|
|
|
50
50
|
|
|
51
51
|
When you add new packages or change your project structure:
|
|
52
52
|
```bash
|
|
53
|
-
npx ai-kit update
|
|
53
|
+
npx @mikulgohil/ai-kit update
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
## Removing
|
|
57
57
|
|
|
58
58
|
To remove all AI Kit generated files:
|
|
59
59
|
```bash
|
|
60
|
-
npx ai-kit reset
|
|
60
|
+
npx @mikulgohil/ai-kit reset
|
|
61
61
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikulgohil/ai-kit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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": {
|