@veewo/claw-core 0.2.12 → 0.2.14
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/dist/src/resources/cindy-delegate-writer/TEMPLATE.json +1 -1
- package/dist/src/resources/delegate-writer/TEMPLATE.json +1 -1
- package/dist/src/resources/doc-updater/FALLBACK.md +16 -0
- package/dist/src/resources/doc-updater/SKILL.md +6 -4
- package/dist/src/resources/doc-updater/TEMPLATE.json +1 -1
- package/dist/src/resources/knowledge-writer/TEMPLATE.json +1 -1
- package/dist/src/templates/plans/default.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Doc updater fallback
|
|
2
|
+
|
|
3
|
+
Use the supplied finalization evidence and resulting canonical Truth/ADR state
|
|
4
|
+
to update only existing documents inside the frozen external documentation
|
|
5
|
+
paths. Do not create, move, rename, standardize, or otherwise expand the
|
|
6
|
+
external documentation corpus.
|
|
7
|
+
|
|
8
|
+
Inspect candidate documents before editing. Distinguish current-state claims
|
|
9
|
+
from requirements, history, examples, and future design; update only safely
|
|
10
|
+
resolved stale or conflicting current-state claims. Preserve each document's
|
|
11
|
+
language, structure, conventions, and unrelated user edits.
|
|
12
|
+
|
|
13
|
+
Verify the affected corpus with focused and exact identifier searches. It is a
|
|
14
|
+
valid no-edit result when no existing document is affected or an ambiguity
|
|
15
|
+
cannot be resolved safely. Return changed paths or the evidence-backed no-edit
|
|
16
|
+
reason.
|
|
@@ -8,10 +8,12 @@ description: Update configured existing external documentation as the dependent
|
|
|
8
8
|
Resolve `<skill-dir>` as the directory containing this file.
|
|
9
9
|
|
|
10
10
|
Use this skill only when it owns the external-document stage of an active
|
|
11
|
-
knowledge-finalization plan.
|
|
11
|
+
knowledge-finalization plan.
|
|
12
12
|
|
|
13
|
-
`claw subplan create --parent <parent-task-name> --task-id <id> --template-file "<skill-dir>/TEMPLATE.json"
|
|
13
|
+
- When this skill owns the supplied finalization assignment as a stage of an active plan, run `claw subplan create --parent <parent-task-name> --task-id <id> --template-file "<skill-dir>/TEMPLATE.json"`.
|
|
14
|
+
- When explicitly invoked with supplied materials outside an active parent plan, run `claw plan create --template-file "<skill-dir>/TEMPLATE.json" --title "doc-updater"`.
|
|
14
15
|
|
|
15
16
|
The parent stage supplies the frozen external documentation paths, finalization
|
|
16
|
-
materials, and the resulting canonical knowledge state.
|
|
17
|
-
|
|
17
|
+
materials, and the resulting canonical knowledge state.
|
|
18
|
+
|
|
19
|
+
If the template or claw CLI is unavailable, follow `FALLBACK.md` directly.
|