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.5",
3
+ "version": "0.8.1-beta.6",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "skillwiki": "dist/cli.js"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillwiki",
3
- "version": "0.8.1-beta.5",
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": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillwiki",
3
- "version": "0.8.1-beta.5",
3
+ "version": "0.8.1-beta.6",
4
4
  "description": "Project-aware Karpathy-style knowledge base for Codex with 18 prompt-only skills backed by the deterministic skillwiki CLI.",
5
5
  "author": {
6
6
  "name": "karlorz",
@@ -21,7 +21,7 @@ escape_for_json() {
21
21
  }
22
22
 
23
23
  skill_escaped=$(escape_for_json "$skill_content")
24
- session_context="<EXTREMELY_IMPORTANT>\nYou have skillwiki.\n\n**Below is the full content of your 'skillwiki:using-skillwiki' skill - your introduction to the skillwiki skills. For all other skills, use the 'Skill' tool:**\n\n${skill_escaped}\n</EXTREMELY_IMPORTANT>"
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"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillwiki/skills",
3
- "version": "0.8.1-beta.5",
3
+ "version": "0.8.1-beta.6",
4
4
  "private": true,
5
5
  "files": [
6
6
  "wiki-*",
@@ -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
- <SUBAGENT-STOP>
7
- If you were dispatched as a subagent to execute a specific task, skip this skill.
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 injected by the plugin SessionStart hook on `startup|clear|compact`.
15
- Treat this section as the final gate before planning work:
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).