skillwiki 0.8.1-beta.5 → 0.8.1-beta.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.8.1-beta.
|
|
3
|
+
"version": "0.8.1-beta.6",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 18 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|
|
@@ -21,7 +21,7 @@ escape_for_json() {
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
skill_escaped=$(escape_for_json "$skill_content")
|
|
24
|
-
session_context="
|
|
24
|
+
session_context="### Skillwiki Activation\n\nSkillwiki is active for this workspace. Below are the capability guidelines for local reference:\n\n${skill_escaped}"
|
|
25
25
|
|
|
26
26
|
# Uses printf instead of heredoc to work around bash 5.3+ heredoc hang.
|
|
27
27
|
printf '{\n "hookSpecificOutput": {\n "hookEventName": "SessionStart",\n "additionalContext": "%s"\n }\n}\n' "$session_context"
|
package/skills/package.json
CHANGED
|
@@ -3,16 +3,15 @@ version: 0.2.2
|
|
|
3
3
|
name: using-skillwiki
|
|
4
4
|
description: Invoke at session start or when knowledge-base tasks arise — maps skillwiki skills, dev-loop alignment, and PRD/TDD routing with plan-mode gate checks
|
|
5
5
|
---
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
</SUBAGENT-STOP>
|
|
6
|
+
*Note: If executing as a background subagent, skip this skill section.*
|
|
7
|
+
|
|
9
8
|
# using-skillwiki
|
|
10
9
|
You have skillwiki — a project-aware Karpathy-style knowledge base for Claude Code.
|
|
11
10
|
|
|
12
11
|
## Last Hook Gate (SessionStart)
|
|
13
12
|
|
|
14
|
-
This skill is
|
|
15
|
-
|
|
13
|
+
This skill is activated by the plugin during `startup|clear|compact` lifecycle events.
|
|
14
|
+
Use this section as procedural planning guidelines:
|
|
16
15
|
|
|
17
16
|
1. If the task requires spec/plan work, route through PRD skills (not built-in plan mode).
|
|
18
17
|
2. If `prd_layer` is `superpowers` or `tdd`, ensure `EnterPlanMode` is gated (`wiki-gate-plan-mode on` or `status` if uncertain).
|