Files
arnes/backlog/features.json

51 lines
1.1 KiB
JSON

{
"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_types": [
"feature",
"fix",
"bug",
"chore"
]
},
"template_feature_schema": {
"id": "F-001",
"type": "feature",
"title": "Short ticket title",
"problem": "Need change",
"goal": "Make flow better",
"scope_in": [
"Core flow"
],
"scope_out": [
"No redesign"
],
"priority": "med",
"risk": "low",
"description": "Problem: ... Goal: ... Scope IN: ... Scope OUT: ... Type: ... Priority: ... Risk: ...",
"acceptance": [
"Flow works end to end",
"No break old behavior"
],
"status": "pending",
"created_at": "YYYY-MM-DD",
"gates": {
"review": false,
"security": false,
"qa": false
}
},
"features": []
}