- Add complete agent harness structure with 8 roles (leader, triager, architect, implementer, reviewer, security, qa, documenter) - Implement strict workflow with 9 stages and mandatory gates - Add comprehensive verification script and runtime status tracking - Create artifact-based evidence system with contracts and schemas - Add agent policy matrix with permissions and anti-cheat rules - Include test suite (44 tests passing) and CI-ready structure - Add documentation: README, HOWTO, CHECKPOINTS, templates - Configure model routing policies and token-aware task assignment - Add BDD/SDD specification guides and feature templates - Include starter pack for quick project onboarding All verification checks pass. Framework ready for production use.
74 lines
1.1 KiB
Markdown
74 lines
1.1 KiB
Markdown
# Component: <Nombre>
|
|
|
|
## Responsabilidad
|
|
Descripción clara de qué hace este componente.
|
|
|
|
## Tipo
|
|
- [ ] Microservicio
|
|
- [ ] Library/Biblioteca
|
|
- [ ] Shared Component
|
|
- [ ] External Integration
|
|
|
|
## Interfaces
|
|
|
|
### API (si aplica)
|
|
```
|
|
Method: GET/POST/PUT/DELETE /endpoint
|
|
Input: { ... }
|
|
Output: { ... }
|
|
Errors: 400, 401, 404, 500
|
|
```
|
|
|
|
### Eventos (si aplica)
|
|
- `topic.name.v1` — descripción del evento
|
|
|
|
## Dependencias
|
|
|
|
| Servicio/Biblioteca | Tipo | Notas |
|
|
|---------------------|------|-------|
|
|
| | | |
|
|
|
|
## Límites
|
|
|
|
### Alcance
|
|
- ✅ Qué hace
|
|
- ❌ Qué NO hace
|
|
|
|
### Constraints
|
|
- Timeout máximo: Xms
|
|
- Rate limit: Y req/min
|
|
|
|
## Criterios de éxito
|
|
|
|
| Criterio | Métrica | Target |
|
|
|----------|---------|--------|
|
|
| Disponibilidad | uptime | 99.9% |
|
|
| Latencia | p99 | < 200ms |
|
|
|
|
## Diagrama
|
|
|
|
```mermaid
|
|
graph LR
|
|
A[Input] --> B[Component]
|
|
B --> C[Output]
|
|
```
|
|
|
|
## Estados
|
|
|
|
| Estado | Trigger | Acción |
|
|
|--------|---------|--------|
|
|
| Initial | created | ... |
|
|
| Active | running | ... |
|
|
| Error | failure | ... |
|
|
|
|
## Seguridad
|
|
|
|
- Authentication: ...
|
|
- Authorization: ...
|
|
- Rate limiting: ...
|
|
|
|
## Observabilidad
|
|
|
|
- Metrics: ...
|
|
- Logs: ...
|
|
- Traces: ... |