Brief templates for OpenClaw multi-agent tasks
Library of structured brief templates for common task types.
- Feature Brief - New features
- Bugfix Brief - Bug fixes
- Refactor Brief - Code refactoring
- Research Brief - Research tasks
- Multi-Agent Brief - Parallel/sequential tasks
- API Integration Brief - API integrations
- Testing Brief - Test implementation
- Documentation Brief - Documentation
const { orchestratoredSpawn } = require('orchestrator-spawn-skill');
// Use feature template
await orchestratoredSpawn('Add user authentication', {
template: 'feature',
projectPath: '/my/project'
});
// Use bugfix template
await orchestratoredSpawn('Fix login bug', {
template: 'bugfix',
severity: 'critical'
});Each template includes:
- Task Description: Objective, problem, solution
- Context Requirements: Project, constraints, dependencies
- Success Criteria: Functional and non-functional requirements
- Output Format: Expected deliverable and format
- Example Usage: Code examples
Works with:
- orchestrator-lite: Automatic task classification
- orchestrator-spawn-skill: Structured briefs
- Any OpenClaw agent: Standardized briefs
Add new templates by:
- Copy existing template
- Customize for task type
- Add to README
- Submit PR
MIT