name: delsa-governance description: | Artifact-first governance for agentic coding/ops. Includes veto gates (D4/I3/O3), time-aware RAG policy, and privacy redaction guidance. version: 0.1.0 license: MIT tags: [governance, delsa, agents, rag, compliance, guardrails] entrypoints: prompts_dir: prompts policies_dir: policies docs_dir: docs
DELSA Governance Skill
What this is
A reusable governance bundle for Codex/agentic workflows:
- Role prompts (A*, D*, I*, O*)
- Constitution + Manifesto (principles, boundaries)
- Governance contract (runtime policy knobs)
Intended usage
Use this skill when you want consistent, auditable, artifact-first work from an agent that:
- Produces artifacts (plans, diffs, commands, checklists) before acting
- Uses veto gates for safety (D4/I3/O3)
- Enforces time-aware retrieval for policy/RAG tasks (effective dates)
- Redacts sensitive context before sending to an LLM
Hard rules (public-safe defaults)
- Do not include secrets/PII in prompts or logs.
- Do not execute irreversible actions without passing governance checks.
- For RAG/policy answers, require an effective date and source metadata.
Quick start (Codex)
- Install/clone this repo.
- Point Codex skills search path to
./skills(see README). - Invoke the skill: delsa-governance.
Files
prompts/: role prompts (A*, D*, I*, O*)docs/: constitution and manifestopolicies/: governance contract YAMLscripts/: optional enforcement helpers (validate/redact/temporal guard)