skillwiki 0.10.64 → 0.10.65
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 +1 -1
- package/skills/.claude-plugin/plugin.json +1 -1
- package/skills/.codex-plugin/plugin.json +1 -1
- package/skills/README.md +6 -0
- package/skills/package.json +1 -1
- package/skills/skills/using-skillwiki/SKILL.md +1 -1
- package/skills/skills/wiki-freshness-repair/SKILL.md +1 -1
- package/skills/skills/wiki-sync/SKILL.md +1 -1
- package/skills/using-skillwiki/SKILL.md +1 -1
- package/skills/wiki-freshness-repair/SKILL.md +1 -1
- package/skills/wiki-sync/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.65",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 20 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|
package/skills/README.md
CHANGED
|
@@ -38,6 +38,12 @@ Each top-level skill subdirectory holds one canonical `SKILL.md`. The nested
|
|
|
38
38
|
`skills/<skill>/SKILL.md` tree mirrors those files for Codex plugin discovery;
|
|
39
39
|
keep it byte-for-byte in sync with the canonical top-level files.
|
|
40
40
|
|
|
41
|
+
`description` is routing metadata for every skill, not a README. Author to
|
|
42
|
+
180 characters (CI fails above 220). Unique-canonical totals are capped with
|
|
43
|
+
agent-skills so the combined Codex catalog stays at 8,000 characters. See
|
|
44
|
+
vault concept `concepts/codex-skill-catalog-budget.md`. Run
|
|
45
|
+
`python3 scripts/lint-skill-descriptions.py --layout llm-wiki --max-total-chars 3200`.
|
|
46
|
+
|
|
41
47
|
Codex installs through `packages/codex-skills`, a materialized plugin root that
|
|
42
48
|
copies this package's `.codex-plugin/` manifest, `skills/` mirror, and
|
|
43
49
|
Codex-specific hook files. That root exposes `hooks/hooks-codex.json` and
|
package/skills/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: using-skillwiki
|
|
3
|
-
description: Invoke
|
|
3
|
+
description: Invoke for vault, wiki, or SkillWiki setup. Maps skills, workflow profiles, and vault routing. Skip unrelated coding.
|
|
4
4
|
---
|
|
5
5
|
*Note: If executing as a background subagent, skip this skill section.*
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiki-freshness-repair
|
|
3
|
-
description: Repair stale vault sources
|
|
3
|
+
description: Repair stale vault sources via drift, reingest, and attended republish. Use when skillwiki drift lists affected pages.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# wiki-freshness-repair
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiki-sync
|
|
3
|
-
description: Safely sync
|
|
3
|
+
description: Safely sync vault git with a lockfile and lint guards. Use to push or pull wiki changes across sessions.
|
|
4
4
|
---
|
|
5
5
|
# wiki-sync
|
|
6
6
|
## When This Skill Activates
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: using-skillwiki
|
|
3
|
-
description: Invoke
|
|
3
|
+
description: Invoke for vault, wiki, or SkillWiki setup. Maps skills, workflow profiles, and vault routing. Skip unrelated coding.
|
|
4
4
|
---
|
|
5
5
|
*Note: If executing as a background subagent, skip this skill section.*
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiki-freshness-repair
|
|
3
|
-
description: Repair stale vault sources
|
|
3
|
+
description: Repair stale vault sources via drift, reingest, and attended republish. Use when skillwiki drift lists affected pages.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# wiki-freshness-repair
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: wiki-sync
|
|
3
|
-
description: Safely sync
|
|
3
|
+
description: Safely sync vault git with a lockfile and lint guards. Use to push or pull wiki changes across sessions.
|
|
4
4
|
---
|
|
5
5
|
# wiki-sync
|
|
6
6
|
## When This Skill Activates
|