OpenClaw internal skill for workspace documentation governance.
This skill standardizes OpenClaw workspace documents using executable rules in four domains:
- Directory naming
- Archive layer placement
- Index file requirements
- Cross-directory reference normalization
Not included: tar/zip packaging, backup snapshots, restore pipelines.
Primary sources:
- https://docs.openclaw.ai/tools/skills.md
- https://docs.openclaw.ai/tools/creating-skills.md
- https://docs.openclaw.ai/tools/skills-config.md
workspace-archiver/
├── SKILL.md
├── README.md
├── SPEC.yaml
├── rules/
│ ├── openclaw-doc-governance.yaml
│ └── docs-rag-sync.json
├── scripts/
│ └── sync_rules_from_docs_rag.sh
├── references/
│ ├── openclaw-skill-architecture.md
│ ├── archive-manifest-template.md
│ └── repo-dedup-checklist.md
└── tests/
└── test_skill_contract.py
- Rules are stored locally in
rules/openclaw-doc-governance.yaml. - Source pattern sync metadata is stored in
rules/docs-rag-sync.json. - Refresh command:
bash scripts/sync_rules_from_docs_rag.shDefault refresh cadence: every 14 days.
python3 -m pytest -qThe contract tests verify:
- skill scope excludes backup/packaging behavior
- four governance domains are present
- rules + sync mechanism files exist
- docs links and cadence are documented
- Skill audit upgrade: normalized
SKILL.mdfrontmatter toname+description - Revalidated trigger wording and OpenClaw compatibility checks
- Removed backup/package scope from skill definition
- Reframed skill as documentation governance engine
- Added executable ruleset (
rules/openclaw-doc-governance.yaml) - Added Docs-RAG sync metadata + sync script scaffold
- Updated TDD/SDD specs and contract tests
MIT