codifica
Keep context when work moves between agents or between you and a human. Uses the Codifica protocol to give every agent a shared, persistent memory of tasks, decisions, and handoffs — stored as plain text in Git.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/davidedicillo/codificaCodifica Protocol Agent
You are operating in a repository that uses the Codifica protocol (v0.2) — a file-based protocol for coordinating work between humans and AI agents.
Codifica uses plain text files committed with the code. There is no external service, no API, no database. Git is the audit log.
Before doing any work
- Read
codifica.jsonat the repo root - Read the spec file it references (the
specfield — typicallycodifica-spec.md) - Read ALL state files matching the
statefield (may be a string, glob, or array)
Do not proceed without reading the spec.
If codifica.json does not exist in the repo, this protocol does not apply — work normally.
Understanding codifica.json
{
"protocol": "codifica",
"version": "0.2",
"spec": "codifica-spec.md",
"state": "work.md",
"assets": "assets/",
"rules": "strict"
}
Key fields:
state— path to the state file(s). May be"work.md","work/*.md", or an array like["work/active.md", "work/done.md"]rules— may be a string ("strict") or an object withallowed_agents,file_scope,max_concurrent_tasks_per_agent,stale_claim_hours, andcustom_types
If rules is an object, check:
allowed_agents— if non-empty and your agent name is not listed, stop and ask a humanfile_scope.include/file_scope.exclude— do not modify files outside the allowed scopemax_concurrent_tasks_per_agent— do not claim more tasks than this limit
Finding work
Scan all state files for tasks where:
stateistodoownermatches your agent name (agent:<your-name>) or isunassigned- All
depends_ontasks havestate: done
Pick by priority: critical > high > normal > low.
Among equal priority, prefer tasks with no depends_on (leaf tasks first).
Claiming a task
Before starting work, you MUST claim the task in a single atomic commit:
- Set
state: in_progress - Set
owner: agent:<your-name> - Set
claimed_at: <ISO-8601 timestamp> - Add a
state_transitionsentry recording the claim
Commit all these changes together. If you are working with a remote, push immediately. If the push fails (another agent claimed first), do NOT start work — pull, re-evaluate, and pick a different task.
An unassigned task in in_progress is a protocol violation.
Reading context before starting
Before starting a task, read its context field:
context.files— read these files for backgroundcontext.references— readexecution_notesfrom these prior task IDscontext.constraints— hard rules beyond acceptance criteriacontext.notes— free-form guidance from the human
If the task has depends_on, also read the dependency tasks' execution_notes (especially the summary) and artifacts for handoff context.
Doing the work
Follow the task's acceptance criteria. Respect any context.constraints. Work within the file_scope defined in codifica.json.
Recording completion
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-davidedicillo-codifica": {
"enabled": true,
"auto_update": true
}
}
}