skillwiki 0.4.1 → 0.4.2
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.4.
|
|
3
|
+
"version": "0.4.2",
|
|
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": {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "skillwiki",
|
|
3
|
+
"version": "0.4.2",
|
|
4
|
+
"description": "Project-aware Karpathy-style knowledge base for Codex with 18 prompt-only skills backed by the deterministic skillwiki CLI.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "karlorz",
|
|
7
|
+
"url": "https://github.com/karlorz"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/karlorz/llm-wiki",
|
|
10
|
+
"repository": "https://github.com/karlorz/llm-wiki",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"knowledge-base",
|
|
14
|
+
"wiki",
|
|
15
|
+
"codex",
|
|
16
|
+
"skills",
|
|
17
|
+
"obsidian",
|
|
18
|
+
"karpathy"
|
|
19
|
+
],
|
|
20
|
+
"skills": "./",
|
|
21
|
+
"interface": {
|
|
22
|
+
"displayName": "SkillWiki",
|
|
23
|
+
"shortDescription": "Project-aware wiki skills for Codex agents",
|
|
24
|
+
"longDescription": "18 prompt-only skills (wiki-*, proj-*, using-skillwiki) for deterministic, project-aware knowledge workflows.",
|
|
25
|
+
"developerName": "karlorz",
|
|
26
|
+
"category": "Productivity",
|
|
27
|
+
"capabilities": [
|
|
28
|
+
"Read",
|
|
29
|
+
"Write"
|
|
30
|
+
],
|
|
31
|
+
"websiteURL": "https://github.com/karlorz/llm-wiki",
|
|
32
|
+
"defaultPrompt": [
|
|
33
|
+
"Initialize a project wiki and schema for this repository.",
|
|
34
|
+
"Ingest this PRD and produce typed knowledge pages with provenance.",
|
|
35
|
+
"Run a vault lint pass and summarize the highest priority fixes."
|
|
36
|
+
],
|
|
37
|
+
"brandColor": "#1f6feb"
|
|
38
|
+
}
|
|
39
|
+
}
|
package/skills/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skillwiki/skills",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"private": true,
|
|
5
5
|
"files": [
|
|
6
6
|
"wiki-*",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"dev-loop-research",
|
|
9
9
|
"using-skillwiki",
|
|
10
10
|
".claude-plugin",
|
|
11
|
+
".codex-plugin",
|
|
11
12
|
"hooks",
|
|
12
13
|
"README.md"
|
|
13
14
|
]
|
package/templates/SCHEMA.md
CHANGED
|
@@ -64,6 +64,40 @@ Obsidian-compatible Mermaid rules:
|
|
|
64
64
|
- Avoid `\n` in labels; use `<br/>` or single-line labels.
|
|
65
65
|
- Keep node IDs ASCII and simple (`CMUX_DB`, `OC_GW`).
|
|
66
66
|
|
|
67
|
+
## Ad-Hoc Capture Format
|
|
68
|
+
|
|
69
|
+
Ad-hoc captures are mutable working notes created during development
|
|
70
|
+
(via `/wiki-add-task` or filesystem drop). They live in `raw/transcripts/`.
|
|
71
|
+
|
|
72
|
+
### Frontmatter
|
|
73
|
+
|
|
74
|
+
```yaml
|
|
75
|
+
---
|
|
76
|
+
source_url: # null for ad-hoc (locally originated)
|
|
77
|
+
created: YYYY-MM-DD # when capture was written
|
|
78
|
+
ingested: # filled by ingest pipeline (empty at creation)
|
|
79
|
+
kind: # idea | bug | task | note | other
|
|
80
|
+
project: # optional: "[[slug]]" for cross-reference
|
|
81
|
+
---
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### Fields
|
|
85
|
+
|
|
86
|
+
- `created`: Date the ad-hoc capture was created. Set by `/wiki-add-task` or filesystem.
|
|
87
|
+
- `ingested`: Date processed into typed knowledge. **Empty at creation.** Filled by `wiki-ingest`, `wiki-crystallize`.
|
|
88
|
+
- `kind`: Capture type. Affects dev-loop routing (`bug`/`task` → work items; `idea` → knowledge development).
|
|
89
|
+
- `project`: Optional project cross-reference. Enables `provenance_projects:` auto-linking.
|
|
90
|
+
|
|
91
|
+
### vs Ingested Sources
|
|
92
|
+
|
|
93
|
+
| Aspect | Ad-Hoc Capture | Ingested Source |
|
|
94
|
+
|--------|----------------|-----------------|
|
|
95
|
+
| Location | `raw/transcripts/` | `raw/articles/`, `raw/papers/`, etc. |
|
|
96
|
+
| Mutability | Mutable (working notes) | Immutable after ingest |
|
|
97
|
+
| `sha256` | **Omitted** | Required |
|
|
98
|
+
| `created` | Required | Use `ingested` |
|
|
99
|
+
| Entry | `/wiki-add-task`, filesystem drop | `wiki-ingest`, `skillwiki fetch` |
|
|
100
|
+
|
|
67
101
|
## Obsidian Integration
|
|
68
102
|
|
|
69
103
|
- **Attachment folder:** `raw/assets/` — binary assets (images, diagrams) live here.
|