Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.07 KB

File metadata and controls

23 lines (17 loc) · 1.07 KB

Step 6: Add a Document Agent

Establish a full workflow by adding a documentation-focused agent that finalizes and updates project docs after code implementation.

Workflow sequence:

  1. Planning: Plan agent creates detailed plan
  2. Implementation: TDD agent writes code + tests
  3. Documentation: Document agent updates README + docs (added in this step)

Create the document agent:

  1. File: Create .github/agents/document.agent.md or add it from agents picker in the chat
  2. Role: Focus ONLY on documentation
  3. Handoff: Configure it to receive from tdd (implementation) agent
  4. Test: Run the workflow (Plan → Implement → Document) or invoke the document agent directly for a quick trial
  5. Inspiration: your first documentation agent

Visual Guide

Custom Agent Creation


Previous: Step 5 — Build and Test the Application
Next: Step 7 — Commit changes and create a PR