refactor: complete bootstrap of ARNES agent harness framework
- 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.
This commit is contained in:
@@ -1,24 +1,33 @@
|
||||
{
|
||||
"project": "nuevo-proyecto",
|
||||
"description": "Backlog inicial del proyecto",
|
||||
"project": "template-project",
|
||||
"description": "Template ARNES agnóstico para cualquier proyecto",
|
||||
"rules": {
|
||||
"one_feature_at_a_time": true,
|
||||
"require_review_gate": true,
|
||||
"require_security_gate": true,
|
||||
"require_qa_gate": true,
|
||||
"valid_status": ["pending", "in_progress", "blocked", "done"]
|
||||
"valid_status": [
|
||||
"pending",
|
||||
"in_progress",
|
||||
"blocked",
|
||||
"done"
|
||||
]
|
||||
},
|
||||
"features": [
|
||||
{
|
||||
"id": "F-001",
|
||||
"title": "Definir estructura inicial",
|
||||
"description": "Bootstrap del proyecto con estructura base.",
|
||||
"acceptance": [
|
||||
"Estructura base creada",
|
||||
"Tests o checks iniciales definidos",
|
||||
"Artefactos de gate configurados"
|
||||
],
|
||||
"status": "pending"
|
||||
"template_feature_schema": {
|
||||
"id": "F-001",
|
||||
"title": "Título de la feature",
|
||||
"description": "Descripción funcional",
|
||||
"acceptance": [
|
||||
"Criterio 1",
|
||||
"Criterio 2"
|
||||
],
|
||||
"status": "pending",
|
||||
"created_at": "YYYY-MM-DD",
|
||||
"gates": {
|
||||
"review": false,
|
||||
"security": false,
|
||||
"qa": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"features": []
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user