skillwiki 0.10.29 → 0.10.30

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.10.29",
3
+ "version": "0.10.30",
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.10.29",
3
+ "version": "0.10.30",
4
4
  "skills": "./",
5
5
  "description": "Project-aware Karpathy-style knowledge base for Claude Code: 19 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.10.29",
3
+ "version": "0.10.30",
4
4
  "description": "Project-aware Karpathy-style knowledge base for Codex with 19 prompt-only skills backed by the deterministic skillwiki CLI.",
5
5
  "author": {
6
6
  "name": "karlorz",
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: proj-decide
3
3
  description: Use this agent when recording architectural decisions during automated maintenance cycles. Typical triggers include dev-loop IDLE DISCOVERY maintenance, capturing design decisions from work items, or generalizing decisions into concept pages. See "When to invoke" in the agent body for worked scenarios.
4
- model: sonnet
4
+ model: inherit
5
5
  color: yellow
6
6
  tools: ["Read", "Write", "Edit", "Bash", "Grep", "Glob"]
7
7
  ---
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: proj-work
3
3
  description: Use this agent when creating or executing work items during automated development cycles. Typical triggers include dev-loop work item creation from captured tasks, executing existing work items, or managing status transitions. See "When to invoke" in the agent body for worked scenarios.
4
- model: sonnet
4
+ model: inherit
5
5
  color: green
6
6
  tools: ["Read", "Write", "Edit", "Bash", "Grep", "Glob"]
7
7
  ---
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillwiki/skills",
3
- "version": "0.10.29",
3
+ "version": "0.10.30",
4
4
  "private": true,
5
5
  "files": [
6
6
  "wiki-*",
@@ -5,6 +5,14 @@ description: Write an Architectural Decision Record (ADR). If the decision gener
5
5
 
6
6
  # proj-decide
7
7
 
8
+ ## Model routing
9
+
10
+ `proj-decide` authors architectural decisions and ADRs, so its companion
11
+ agent must run at the invoking main-agent model. Keep `model: inherit` in
12
+ `packages/skills/agents/proj-decide.md`; do not pin decision-making work to
13
+ `sonnet`, `haiku`, or `opus`. Do not add a `model` field to this `SKILL.md`
14
+ frontmatter.
15
+
8
16
  ## When to invoke
9
17
  - User commits to an architectural decision worth recording for future reference.
10
18
 
@@ -5,6 +5,13 @@ description: Open or run a work item under projects/{slug}/work/YYYY-MM-DD-{slug
5
5
 
6
6
  # proj-work
7
7
 
8
+ ## Model routing
9
+
10
+ `proj-work` authors implementation specifications and plans, so its companion
11
+ agent must run at the invoking main-agent model. Keep `model: inherit` in
12
+ `packages/skills/agents/proj-work.md`; do not pin planning work to `sonnet`,
13
+ `haiku`, or `opus`. Do not add a `model` field to this `SKILL.md` frontmatter.
14
+
8
15
  ## When to invoke
9
16
  - User starts a feature, issue, refactor, or decision inside an existing project.
10
17
  - User asks to "get work of X" or "run work item Y" to review/execute an existing item.
@@ -5,6 +5,14 @@ description: Write an Architectural Decision Record (ADR). If the decision gener
5
5
 
6
6
  # proj-decide
7
7
 
8
+ ## Model routing
9
+
10
+ `proj-decide` authors architectural decisions and ADRs, so its companion
11
+ agent must run at the invoking main-agent model. Keep `model: inherit` in
12
+ `packages/skills/agents/proj-decide.md`; do not pin decision-making work to
13
+ `sonnet`, `haiku`, or `opus`. Do not add a `model` field to this `SKILL.md`
14
+ frontmatter.
15
+
8
16
  ## When to invoke
9
17
  - User commits to an architectural decision worth recording for future reference.
10
18
 
@@ -5,6 +5,13 @@ description: Open or run a work item under projects/{slug}/work/YYYY-MM-DD-{slug
5
5
 
6
6
  # proj-work
7
7
 
8
+ ## Model routing
9
+
10
+ `proj-work` authors implementation specifications and plans, so its companion
11
+ agent must run at the invoking main-agent model. Keep `model: inherit` in
12
+ `packages/skills/agents/proj-work.md`; do not pin planning work to `sonnet`,
13
+ `haiku`, or `opus`. Do not add a `model` field to this `SKILL.md` frontmatter.
14
+
8
15
  ## When to invoke
9
16
  - User starts a feature, issue, refactor, or decision inside an existing project.
10
17
  - User asks to "get work of X" or "run work item Y" to review/execute an existing item.