@follenfang/wowdoc 0.0.5 → 0.0.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 +1 -1
- package/skill/SKILL.md +2 -0
- package/skill/references/commands.md +29 -0
package/package.json
CHANGED
package/skill/SKILL.md
CHANGED
|
@@ -15,4 +15,6 @@ Translate the user's wording into explicit `source`, `product`, `ref`, `topic`,
|
|
|
15
15
|
6. Do not apply latest fallback to `ambiguous_version`, `unsupported_build`, `ref_not_found`, or update failures.
|
|
16
16
|
7. Cite `sourceId`, product, Tag when present, resolved Commit, path, line, and the returned excerpt. Treat `dynamic-unresolved` edges as unresolved, not exact.
|
|
17
17
|
|
|
18
|
+
The data directory defaults to `~/.wowdoc`. `WOWDOC_HOME` may override it with another writable path for an isolated workspace, another drive, or a server deployment. This changes only wowdoc's source, index, object, lock, and log storage; it does not change the npm installation directory or the Skill directory. Run `wowdoc doctor` to see the resolved data directory.
|
|
19
|
+
|
|
18
20
|
Read [source-catalog.md](references/source-catalog.md) for source/product names and [commands.md](references/commands.md) for command selection.
|
|
@@ -13,6 +13,35 @@ wowdoc source sync --source SOURCE --product PRODUCT
|
|
|
13
13
|
wowdoc index build --source SOURCE --product PRODUCT --ref REF
|
|
14
14
|
wowdoc index refresh --source SOURCE --product PRODUCT --ref REF
|
|
15
15
|
wowdoc index status --source SOURCE --product PRODUCT
|
|
16
|
+
wowdoc init
|
|
17
|
+
wowdoc doctor
|
|
18
|
+
wowdoc update --dry-run
|
|
19
|
+
wowdoc clean
|
|
20
|
+
wowdoc clean --yes
|
|
21
|
+
wowdoc uninstall
|
|
22
|
+
wowdoc uninstall --yes
|
|
16
23
|
```
|
|
17
24
|
|
|
18
25
|
Use exact qualified identifiers when known. For natural-language questions, select a topic and use the narrowest stable identifier, event, template, TOC field, asset path, or API name present in the question. Prefer results marked `exact_symbol`; verify relationship confidence and retain the returned excerpt as evidence.
|
|
26
|
+
|
|
27
|
+
## Data directory
|
|
28
|
+
|
|
29
|
+
Without configuration, all source mirrors, objects, indexes, manifests, locks, logs, and temporary worktrees live under `~/.wowdoc`.
|
|
30
|
+
|
|
31
|
+
Use another writable directory by setting `WOWDOC_HOME` before invoking wowdoc. PowerShell:
|
|
32
|
+
|
|
33
|
+
```powershell
|
|
34
|
+
$env:WOWDOC_HOME = 'D:\WOWData\wowdoc'
|
|
35
|
+
wowdoc doctor
|
|
36
|
+
wowdoc init
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Bash or zsh:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
export WOWDOC_HOME="$HOME/wowdoc-data"
|
|
43
|
+
wowdoc doctor
|
|
44
|
+
wowdoc init
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
The override applies to every wowdoc command launched from that environment. `wowdoc doctor` reports the resolved `home`. The npm package remains in the npm global prefix, and the Skill remains in `~/.agents/skills/wowdoc`.
|