English | 简体中文
A GitHub-ready suite of four OpenClaw skills for turning ad hoc agent usage into a governed, reusable system.
Copy the skill folder you want into:
~/.openclaw/workspace/skills/Example:
cp -R skills/context-manifest ~/.openclaw/workspace/skills/Keep this repository as a source-of-truth collection, then copy or sync specific skills into your local OpenClaw workspace when needed.
Govern project context with MANIFEST.md.
Key capabilities:
- define project truth with Canonical / Domain Map / Archive / Ignore / Sensitive
- route tasks into the minimum useful context
- support scoped task packages for sub-agents
- standardize project-level
Operating Rules - apply plan / approve / execute and uncertainty handling patterns
Isolate untrusted input and resist prompt injection.
Key capabilities:
- classify trusted / semi-trusted / untrusted inputs
- handle webpages, emails, PDFs, OCR, external repos, and logs safely
- prevent untrusted content from authorizing high-impact actions
- keep evidence separate from approval, trust, and project truth
Design artifact-first recurring automations.
Key capabilities:
- model durable scheduled workflows with clear trigger / input / process / output / delivery / failure boundaries
- standardize artifact naming and retention
- support notify-on-change, notify-on-failure, and low-noise delivery
- handle retry, degradation, and partial-success states explicitly
Route, compose, extend, and fall back across skills.
Key capabilities:
- prefer reuse -> combine -> extend -> create
- design explicit skill stacks for complex tasks
- decide when to extend an existing skill versus creating a new one
- handle stack conflicts and graceful fallback paths
- Start with
context-manifest - Add
trust-boundarywhen external inputs are involved - Use
scheduled-workflowsfor recurring automations - Use
skill-orchestratorwhen work spans multiple skills or new-skill decisions
Start here if this is your first time adopting the suite:
Reusable starter files:
This repository is a skill suite repository, not a single packaged .skill.
Typical usage flow:
- clone or download this repository
- choose the skill you need from
skills/ - copy that skill folder into your OpenClaw workspace
- iterate locally as needed
Example trigger patterns:
- “Use
trust-boundarybefore handling external PDFs or webpages.” - “Use
context-manifestto define project truth and reduce context bloat.” - “Use
skill-orchestratorbefore creating a new skill from scratch.” - “Use
scheduled-workflowsto design a recurring artifact-first automation.”
openclaw-governance-skill-suite/
├── LICENSE
├── README.md
├── README.zh-CN.md
├── ROADMAP.md
├── .gitignore
└── skills/
├── context-manifest/
├── trust-boundary/
├── scheduled-workflows/
└── skill-orchestrator/
These skills are currently validated draft skills.
They were iteratively refined for:
- clearer scope boundaries
- reusable references
- safer execution patterns
- lower-noise automation design
They are ready for real-world trial use and further iteration.
This repository is an exported copy for GitHub publication.
It does not replace or modify the original local skills in:
~/.openclaw/workspace/skills/Each skill remains self-contained, with its own SKILL.md and references/ directory.
- Latest release: https://github.com/ziiinian/openclaw-governance-skill-suite/releases/latest
- First public release: https://github.com/ziiinian/openclaw-governance-skill-suite/releases/tag/v1.0.0
This repository currently uses the MIT License for easy public sharing. Change it before publishing if you want a different licensing model.