sdtk-wiki-kit 0.1.4 → 0.2.1
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/README.md +7 -0
- package/assets/atlas/build_atlas.py +775 -775
- package/assets/atlas/doc_atlas_viewer_template.html +3796 -3796
- package/assets/atlas/vendor/mermaid.min.js +2029 -2029
- package/bin/sdtk-wiki.js +0 -0
- package/package.json +2 -2
- package/src/commands/context.js +67 -0
- package/src/commands/help.js +7 -0
- package/src/commands/update.js +11 -0
- package/src/index.js +8 -0
- package/src/lib/update.js +217 -0
- package/src/lib/wiki-context-pack.js +267 -0
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
project-local wiki, document graph, provenance, lint/gap analysis, local source
|
|
5
5
|
intake, grounded Ask, and report-first local wiki maintenance workflows.
|
|
6
6
|
|
|
7
|
+
Package version in this source snapshot: `0.1.4`
|
|
8
|
+
CLI command: `sdtk-wiki`
|
|
9
|
+
|
|
7
10
|
SDTK-WIKI is the canonical home for new SDTK wiki work. The older
|
|
8
11
|
`sdtk-spec atlas` commands remain a compatibility path for free graph/viewer
|
|
9
12
|
workflows and keep using `.sdtk/atlas`.
|
|
@@ -39,6 +42,7 @@ Implemented in the Foundation/Beta package:
|
|
|
39
42
|
| Generate local discovery plan from gap evidence | `sdtk-wiki wiki discover --plan` |
|
|
40
43
|
| Generate local discovery plan with beginner facade | `sdtk-wiki discover --plan` |
|
|
41
44
|
| Run report-first maintenance cycle | `sdtk-wiki maintain --mode safe` |
|
|
45
|
+
| Write opt-in GitHub enrichment review report | `sdtk-wiki enrich --source github --mode review` |
|
|
42
46
|
| Generate semantic extraction dry-run report | `sdtk-wiki wiki extract --dry-run` |
|
|
43
47
|
| Generate compile dry-run preview and JSON sidecar | `sdtk-wiki wiki compile --dry-run` |
|
|
44
48
|
| Apply an approved compile JSON sidecar | `sdtk-wiki wiki compile --apply --yes` |
|
|
@@ -111,6 +115,7 @@ sdtk-wiki query "multi-agent"
|
|
|
111
115
|
sdtk-wiki lint
|
|
112
116
|
sdtk-wiki discover --plan
|
|
113
117
|
sdtk-wiki maintain --mode safe
|
|
118
|
+
sdtk-wiki enrich --source github --mode review
|
|
114
119
|
```
|
|
115
120
|
|
|
116
121
|
Behavior:
|
|
@@ -123,6 +128,8 @@ Behavior:
|
|
|
123
128
|
does not use premium Ask, LLM/RAG, web fetch, or query history.
|
|
124
129
|
- `discover` and `maintain` are report-first and do not apply, delete, archive,
|
|
125
130
|
fetch web sources, or mutate `.sdtk/atlas`.
|
|
131
|
+
- `enrich` is explicit opt-in review mode. It writes local review evidence and
|
|
132
|
+
does not fetch GitHub or apply changes.
|
|
126
133
|
|
|
127
134
|
Interactive viewer flow:
|
|
128
135
|
|