Agent skill
commit-queue
Install this agent skill to your Project
npx add-skill https://github.com/Reneromero08/agent-governance-system/tree/main/MEMORY/ARCHIVE/skills-deprecated/commit-queue
SKILL.md
required_canon_version: >=3.0.0
Skill: commit-queue
Version: 0.1.0
Status: Deprecated
DEPRECATED: This skill has been consolidated into
commit-manager. Use{"operation": "queue", ...}with the commit-manager instead.
Trigger
Use when managing a queued commit workflow (enqueue, list, process) that coordinates multiple local agents and produces deterministic queue artifacts.
Overview
Provide a deterministic commit queue stored under CONTRACTS/_runs/commit_queue/ and a process step that stages files for the next queued entry without performing git commit.
Workflow
- Enqueue a commit request with
action: "enqueue"and required metadata. - List the queue with
action: "list". - Process the next entry with
action: "process"to stage files and emit a status payload. - If staging succeeds, follow the normal commit ceremony manually.
Input schema (run.py)
action: "enqueue" | "list" | "process"queue_id: optional string (default: "default")entry: object for enqueue:message: commit messagefiles: array of repo-relative pathsauthor: optional stringnotes: optional stringcreated_at: required string timestamp
max_items: integer for list
Output schema
ok: booleanqueue_id: stringaction: stringentries: array (for list)staged: array (for process)status: string ("pending" | "staged" | "error")error: string (if any)
Constraints
- Append-only queue at
CONTRACTS/_runs/commit_queue/<queue_id>.jsonl. - No automatic
git commitinside the skill; commits remain manual and ceremony-gated. - Repo-relative paths only.
required_canon_version: >=3.0.0
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
mcp-adapter
pipeline-dag-scheduler
cortex-summaries
llm-packer-smoke
artifact-escape-hatch
mcp-message-board
Didn't find tool you were looking for?