← ClaudeAtlas

buildd-workflowlisted

Workflow skill that helps agents work effectively in buildd. Enforces disciplined development — TDD, quality gates, proper planning, progress reporting, and no shortcuts.
buildd-ai/buildd · ★ 1 · AI & Automation · score 70
Install: claude install-skill buildd-ai/buildd
# Buildd Workflow Skill Enforced workflow for agents working in buildd. Not suggestions — process. ## When to Use This Skill - Starting work on a buildd task - Need a refresher on the claim → work → ship lifecycle - Unsure about quality gates, TDD enforcement, or escalation rules ## Task Lifecycle ``` claim → understand → plan → implement (TDD) → verify → PR → document → complete ``` --- ## Step 1: Claim a Task ``` buildd action=claim_task ``` You'll receive: - **Worker ID** — your identity for all subsequent calls - **Branch name** — the git branch to work on - **Task description** — what to build/fix - **Relevant memories** — prior context from workspace knowledge base - **Open PRs** — concurrent work by other agents (avoid conflicting files) Save the worker ID. You need it for every subsequent call. ## Step 2: Understand Before Acting **Gate: Do not write any code until you understand the problem and the codebase.** 1. Read the task description fully 2. Search workspace memory for relevant context: ``` recall query="relevant topic" scope=["memory","task"] ``` 3. Read every file you plan to modify 4. Read related tests 5. Check how similar features are implemented 6. If Open PRs were returned, check which files they touch Report understanding: ``` buildd action=update_progress params={ "progress": 10, "message": "Reviewed codebase, identified files to change" } ``` ## Step 3: Plan the Work **Gate: Have a concrete plan before writing code.** For any