@guru-ai-product/ai-product-kit 0.2.251112183134 → 0.2.251112184032
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 +33 -5
- 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
|
@@ -53,19 +53,47 @@ ROOT/
|
|
|
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
60
|
```bash
|
|
61
|
+
# Run from your project root directory
|
|
61
62
|
npx @guru-ai-product/ai-product-kit@latest ai-product-kit
|
|
62
63
|
```
|
|
63
64
|
|
|
64
|
-
|
|
65
|
+
This downloads the Skill bundle (templates, scripts, and `GURU_AI.md` files) to your working tree.
|
|
65
66
|
|
|
66
|
-
|
|
67
|
+
### 2. 🔄 Update
|
|
67
68
|
|
|
68
|
-
|
|
69
|
+
Get the latest version when updates are available:
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
# Run from your project root directory
|
|
73
|
+
npx @guru-ai-product/ai-product-kit@latest ai-product-kit
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
This downloads the newest Skill bundle (templates, scripts, and `GURU_AI.md` files) to your working tree.
|
|
77
|
+
|
|
78
|
+
### 3. 🚀 Initialization
|
|
79
|
+
|
|
80
|
+
Initialize your project with the init-project Skill:
|
|
81
|
+
|
|
82
|
+
```text
|
|
83
|
+
init project based on ./.claude/skills/aipk_init_project
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
This sets up your project with the canonical workflow and all necessary documentation templates.
|
|
87
|
+
|
|
88
|
+
### 4. 📋 Using Skills
|
|
89
|
+
|
|
90
|
+
After initialization, you can use any Skill to accelerate your workflow:
|
|
91
|
+
|
|
92
|
+
```text
|
|
93
|
+
Please write a PRD for feature X using the AI Product Kit template
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
Each Skill provides specific templates, checklists, and guidance for that phase of the product lifecycle.
|
|
69
97
|
|
|
70
98
|
## 🚀 Quick Start
|
|
71
99
|
|
package/package.json
CHANGED