docs: agents

This commit is contained in:
Dax Raad
2025-07-24 22:16:16 -04:00
parent 529a171d51
commit 5d871b2075

View File

@@ -21,33 +21,25 @@ Agents are automatically available through the Task tool when configured. The ma
### Documentation Agent ### Documentation Agent
```json ```markdown
{ ---
"agent": { description: Writes and maintains project documentation
"docs-writer": { tools:
"description": "Writes and maintains project documentation", bash: false
"prompt": "You are a technical writer. Create clear, comprehensive documentation.", ---
"tools": {
"bash": false You are a technical writer. Create clear, comprehensive documentation.
}
}
}
}
``` ```
### Security Auditor ### Security Auditor
```json ```markdown
{ ---
"agent": { description: Performs security audits and identifies vulnerabilities
"security-auditor": { tools:
"description": "Performs security audits and identifies vulnerabilities", write: false
"prompt": "You are a security expert. Focus on identifying potential security issues.", edit: false
"tools": { ---
"write": false,
"edit": false You are a security expert. Focus on identifying potential security issues.
}
}
}
}
``` ```