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:
@@ -2,15 +2,27 @@ version: 1
|
||||
|
||||
roles:
|
||||
leader:
|
||||
can_edit: ["work/", "backlog/", "spec/", "harness/"]
|
||||
emoji: "🧭"
|
||||
can_edit: ["work/", "backlog/", "spec/", "harness/", "AGENTS.md", "CHECKPOINTS.md"]
|
||||
cannot_edit: ["src/", "tests/"]
|
||||
responsibilities:
|
||||
- plan
|
||||
- orchestrate
|
||||
- enforce_gates
|
||||
- close_feature
|
||||
- issue_orders_in_english_caveman
|
||||
|
||||
triager:
|
||||
emoji: "🧩"
|
||||
can_edit: ["backlog/", "work/artifacts/", "spec/"]
|
||||
cannot_edit: ["src/", "tests/", "backlog/features.json:status=done"]
|
||||
responsibilities:
|
||||
- normalize_requests
|
||||
- create_tickets_in_english_caveman
|
||||
- define_scope_acceptance
|
||||
|
||||
architect:
|
||||
emoji: "🏗️"
|
||||
can_edit: ["spec/", "harness/contracts/", "docs/"]
|
||||
cannot_edit: ["src/", "tests/", "backlog/features.json:status"]
|
||||
responsibilities:
|
||||
@@ -18,6 +30,7 @@ roles:
|
||||
- update_contracts
|
||||
|
||||
implementer:
|
||||
emoji: "🛠️"
|
||||
can_edit: ["src/", "tests/", "work/artifacts/"]
|
||||
cannot_edit:
|
||||
- "backlog/features.json:done"
|
||||
@@ -32,6 +45,7 @@ roles:
|
||||
- produce_implementer_evidence
|
||||
|
||||
reviewer:
|
||||
emoji: "🔍"
|
||||
can_edit: ["work/artifacts/"]
|
||||
cannot_edit: ["src/", "tests/", "backlog/"]
|
||||
responsibilities:
|
||||
@@ -39,6 +53,7 @@ roles:
|
||||
- emit_reviewer_verdict
|
||||
|
||||
security:
|
||||
emoji: "🔒"
|
||||
can_edit: ["work/artifacts/"]
|
||||
cannot_edit: ["src/", "tests/", "backlog/"]
|
||||
responsibilities:
|
||||
@@ -48,6 +63,7 @@ roles:
|
||||
- emit_security_verdict
|
||||
|
||||
qa:
|
||||
emoji: "🧪"
|
||||
can_edit: ["work/artifacts/"]
|
||||
cannot_edit: ["src/", "tests/", "backlog/"]
|
||||
responsibilities:
|
||||
@@ -56,8 +72,18 @@ roles:
|
||||
- regression_checks
|
||||
- emit_qa_verdict
|
||||
|
||||
documenter:
|
||||
emoji: "📚"
|
||||
can_edit: ["docs/", "spec/", "README.md", "HOWTO.md", "work/artifacts/"]
|
||||
cannot_edit: ["src/", "tests/", "backlog/features.json:status"]
|
||||
responsibilities:
|
||||
- document_feature_changes
|
||||
- update_user_docs
|
||||
- emit_documenter_summary
|
||||
|
||||
anti_cheat:
|
||||
- "Implementer cannot promote feature to done"
|
||||
- "Done requires reviewer/security/qa approved artifacts"
|
||||
- "Done requires documenter evidence"
|
||||
- "Leader close requires verify.sh success"
|
||||
- "Evidence must be on disk; chat-only claims are invalid"
|
||||
|
||||
Reference in New Issue
Block a user