@guru-ai-product/ai-product-kit 0.2.251112181708 → 0.2.251112183752
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 +25 -42
- package/package.json +1 -1
- package/skills/aipk_design/GURU_AI.md +1 -1
- package/skills/aipk_development/GURU_AI.md +1 -1
- package/skills/aipk_operations/GURU_AI.md +1 -1
- package/skills/aipk_requirements/GURU_AI.md +1 -1
- package/skills/aipk_skill_generate/GURU_AI.md +1 -1
- package/skills/aipk_tool_prompts/GURU_AI.md +1 -1
package/README.md
CHANGED
|
@@ -48,67 +48,50 @@ ROOT/
|
|
|
48
48
|
|
|
49
49
|
## ⚙️ Environment Requirements
|
|
50
50
|
|
|
51
|
-
* **Node.js 18+** – required to run `npx ai-product-kit@latest` from `ROOT`.
|
|
51
|
+
* **Node.js 18+** – required to run `npx @guru-ai-product/ai-product-kit@latest` from `ROOT`.
|
|
52
52
|
* **npm 9+** – provides access to the scoped package and carries your authenticated session, so the sync command can download the latest Skill bundle.
|
|
53
53
|
|
|
54
54
|
## 🛠️ Usage Guide
|
|
55
55
|
|
|
56
|
-
###
|
|
56
|
+
### 1. 📦 Installation
|
|
57
57
|
|
|
58
|
-
|
|
58
|
+
First-time setup - install AI Product Kit:
|
|
59
59
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
The command copies the newest Skill bundle (templates, scripts, and `GURU_AI.md` files) into your working tree. Rerun it whenever you pull updates or start a new branch.
|
|
65
|
-
|
|
66
|
-
2. **Force a fresh download** – if the update doesn't seem to work or you want to make sure you're getting the latest version:
|
|
67
|
-
|
|
68
|
-
```bash
|
|
69
|
-
# Clear npm cache first, then download fresh
|
|
70
|
-
npm cache clean --force
|
|
71
|
-
npx ai-product-kit@latest ai-product-kit
|
|
72
|
-
```
|
|
60
|
+
```bash
|
|
61
|
+
npx @guru-ai-product/ai-product-kit@latest ai-product-kit
|
|
62
|
+
```
|
|
73
63
|
|
|
74
|
-
|
|
64
|
+
This downloads the Skill bundle (templates, scripts, and `GURU_AI.md` files) to your working tree.
|
|
75
65
|
|
|
76
|
-
|
|
66
|
+
### 2. 🔄 Update
|
|
77
67
|
|
|
78
|
-
|
|
79
|
-
# Check the latest version available on npm
|
|
80
|
-
npm view ai-product-kit version
|
|
68
|
+
Get the latest version when updates are available:
|
|
81
69
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### 🤖 Agent Priming
|
|
87
|
-
|
|
88
|
-
4. **Prime your agent** by sending the following sentence after the sync completes:
|
|
70
|
+
```bash
|
|
71
|
+
npx @guru-ai-product/ai-product-kit@latest ai-product-kit
|
|
72
|
+
```
|
|
89
73
|
|
|
90
|
-
|
|
91
|
-
init project based on ./.claude/skills/aipk_init_project
|
|
92
|
-
```
|
|
74
|
+
This downloads the newest Skill bundle (templates, scripts, and `GURU_AI.md` files) to your working tree.
|
|
93
75
|
|
|
94
|
-
|
|
76
|
+
### 3. 🚀 Initialization
|
|
95
77
|
|
|
96
|
-
|
|
78
|
+
Initialize your project with the init-project Skill:
|
|
97
79
|
|
|
98
|
-
|
|
80
|
+
```text
|
|
81
|
+
init project based on ./.claude/skills/aipk_init_project
|
|
82
|
+
```
|
|
99
83
|
|
|
100
|
-
|
|
84
|
+
This sets up your project with the canonical workflow and all necessary documentation templates.
|
|
101
85
|
|
|
102
|
-
|
|
86
|
+
### 4. 📋 Using Skills
|
|
103
87
|
|
|
104
|
-
|
|
88
|
+
After initialization, you can use any Skill to accelerate your workflow:
|
|
105
89
|
|
|
106
|
-
|
|
90
|
+
```text
|
|
91
|
+
Please write a PRD for feature X using the AI Product Kit template
|
|
92
|
+
```
|
|
107
93
|
|
|
108
|
-
|
|
109
|
-
* **Getting errors?** Make sure you have permission to write files in your current folder
|
|
110
|
-
* **Internet problems?** Check your connection and try again
|
|
111
|
-
* **Still stuck?** Try using a different network or wait a few minutes and try again
|
|
94
|
+
Each Skill provides specific templates, checklists, and guidance for that phase of the product lifecycle.
|
|
112
95
|
|
|
113
96
|
## 🚀 Quick Start
|
|
114
97
|
|
package/package.json
CHANGED