Install
openclaw skills install battle-tested-agent19 production-hardened patterns for AI agents — memory, verification, ambiguity handling, compaction survival, delegation, proof-based handoffs, stale-worker...
openclaw skills install battle-tested-agent19 production-hardened patterns for AI agents. Every one earned from failure.
Use this skill when you are:
Do not use this skill for:
Audit first
Run bash scripts/audit.sh <workspace> to see which patterns are present.
The script checks for all 16 patterns and tells you what to fix first.
Start with the smallest tier that fits Implement starter patterns first, then intermediate, then advanced. Do not cargo-cult every pattern into every agent.
Patch the actual failure mode Change the mechanism, not just the wording. "ALWAYS check X" is not a fix — a verification gate is a fix.
Keep patterns lightweight Add only the pieces that materially reduce failures or operator burden.
Some patterns reinforce each other naturally. Adopt them together when the failure mode calls for it:
If two patterns seem to give contradictory advice:
The assets/ folder contains starter files you copy into your workspace and customize.
They are templates, not drop-in replacements.
# Merge delegation and decision log rules into your existing AGENTS.md
cp assets/AGENTS-additions.md ~/workspace/ # Review, then merge
# Add QA gates
cp assets/QA-gates.md ~/workspace/QA.md
# Set up self-improvement tracking
mkdir -p ~/workspace/.learnings
cp assets/learnings-template.md ~/workspace/.learnings/LEARNINGS.md
cp assets/errors-template.md ~/workspace/.learnings/ERRORS.md
cp assets/features-template.md ~/workspace/.learnings/FEATURE_REQUESTS.md
Read references/audit-usage.md for the full rollout order and bootstrap workflow.
references/starter-patterns.md — WAL, anti-hallucination, ambiguity, simple-path-first, unblock-before-shelvereferences/intermediate-patterns.md — verification, working buffer, QA gates, decision logs, verify implementationreferences/advanced-patterns.md — delegation, brief quality, proof-based handoffs, acceptance gates, orchestration, stale-worker recovery, compaction hardening, recurrence trackingreferences/audit-usage.md — audit script usage, install/copy snippets, and expected outcomesscripts/audit.sh — workspace audit for all 19 patterns (supports AGENTS.md, CLAUDE.md, SOUL.md, and system.md)A leaner, more resilient agent that survives compaction, hands work off cleanly, reports only what is verified, and improves without spiraling into bureaucracy.