@guru-ai-product/ai-product-kit 0.1.251112180020 β 0.2.251112181708
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 +40 -3
- 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,26 +53,63 @@ ROOT/
|
|
|
53
53
|
|
|
54
54
|
## π οΈ Usage Guide
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
### π₯ Syncing / Updating Skills
|
|
57
|
+
|
|
58
|
+
1. **Sync the latest Skills** from `ROOT` (call the explicit CLI so future additional binaries don't break the command):
|
|
57
59
|
|
|
58
60
|
```bash
|
|
59
61
|
npx ai-product-kit@latest ai-product-kit
|
|
60
62
|
```
|
|
61
63
|
|
|
62
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.
|
|
63
|
-
|
|
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
|
+
```
|
|
73
|
+
|
|
74
|
+
Use this when the normal update command doesn't update anything, or if you suspect you're not getting the newest version.
|
|
75
|
+
|
|
76
|
+
3. **Check for updates** β to see if a newer version is available:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
# Check the latest version available on npm
|
|
80
|
+
npm view ai-product-kit version
|
|
81
|
+
|
|
82
|
+
# Check when the package was last updated
|
|
83
|
+
npm view ai-product-kit time.modified
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### π€ Agent Priming
|
|
87
|
+
|
|
88
|
+
4. **Prime your agent** by sending the following sentence after the sync completes:
|
|
64
89
|
|
|
65
90
|
```text
|
|
66
91
|
init project based on ./.claude/skills/aipk_init_project
|
|
67
92
|
```
|
|
68
93
|
|
|
69
94
|
This prompt loads the init-project Skill documented in `AGENTS.md`, ensuring Codex/Cursor follows the canonical workflow every time.
|
|
70
|
-
|
|
95
|
+
|
|
96
|
+
### π Post-Sync Review
|
|
97
|
+
|
|
98
|
+
5. **Review the synced artifacts** β open the relevant `skills/aipk_<lifecycle>/SKILL.md`, verify the bundled checklists and `GURU_AI.md` instructions match your task, and log any new deliverables in the tracker specified by `AGENTS.md` before editing documents.
|
|
71
99
|
|
|
72
100
|
**Note for agents**: The `list_dir` tool does not display dot-files and dot-directories. To find hidden directories like `.claude/`, use `run_terminal_cmd` with `ls -a` or `ls -la`, or access them directly using absolute paths (e.g., `.claude/skills/`).
|
|
73
101
|
|
|
74
102
|
Once the agent acknowledges the Skill load, continue with your usual prompts (for example, "Prepare the PRD for feature X using the AI Product Kit template.")
|
|
75
103
|
|
|
104
|
+
### π§ Having Update Problems?
|
|
105
|
+
|
|
106
|
+
If you're having trouble updating:
|
|
107
|
+
|
|
108
|
+
* **Update not working?** Try clearing the cache first (see force download command above)
|
|
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
|
|
112
|
+
|
|
76
113
|
## π Quick Start
|
|
77
114
|
|
|
78
115
|
Agents already know where each Skill lives because the mappings are declared in `AGENTS.md`. Use prompts like these to get moving quickly:
|
package/package.json
CHANGED