-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathharmony.manifest.json
More file actions
125 lines (115 loc) · 4.45 KB
/
harmony.manifest.json
File metadata and controls
125 lines (115 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "Harmony Framework",
"version": "1.0.0",
"codename": "Genesis",
"tagline": "Self-Improving AI Development Framework",
"motto": "Learn. Protect. Deliver.",
"philosophy": {
"principle": "Improvement through Prompts and Memory, not model weight modification",
"core_beliefs": [
"The LLM remains intact - no fine-tuning required",
"Intelligence emerges from the framework architecture",
"Performance is guaranteed through systematic learning",
"Quality is verifiable, not assumed"
]
},
"three_pillars": {
"guardian": {
"name": "Guardian Protocol",
"purpose": "Workflow protection and intent detection",
"features": ["intent-detection", "agent-routing", "phase-validation", "prerequisite-checking"]
},
"sentinel": {
"name": "Sentinel System",
"purpose": "Error memory and circuit breaker protection",
"features": ["error-journal", "circuit-breaker", "pattern-learning", "failure-prevention"]
},
"hqvf": {
"name": "Harmony Quality Verification Framework",
"purpose": "Quality assurance through verifiable use cases",
"features": ["ucv-generation", "ucv-validation", "coverage-tracking", "acceptance-criteria"]
}
},
"memory_architecture": {
"tier_1": {
"name": "Working Memory",
"location": "in-context",
"persistence": "current-message",
"purpose": "Active task context"
},
"tier_2": {
"name": "Session Memory",
"location": "external-compressed",
"persistence": "current-session",
"purpose": "Conversation history"
},
"tier_3": {
"name": "Long-term Memory",
"location": "persistent-storage",
"persistence": "permanent",
"purpose": "Learned patterns and errors"
}
},
"phases": {
"1": {"name": "Discovery", "description": "Requirements gathering and analysis"},
"2": {"name": "Planning", "description": "PRD creation and roadmapping"},
"3": {"name": "Solutioning", "description": "Architecture, design, and story creation"},
"4": {"name": "Implementation", "description": "Development, testing, and validation"},
"5": {"name": "Release", "description": "Deployment and monitoring"}
},
"agents": {
"core": ["guardian", "sentinel", "analyst", "architect", "developer", "tester"],
"specialists": ["ai-architect", "exploratory-qa", "ucv-writer", "ucv-validator"],
"sub_agents": ["rag-architect", "memory-architect", "orchestration-architect", "observability-architect", "graphrag-architect", "safety-architect"],
"extensible": ["game-developer", "game-designer", "legal", "security", "accessibility"]
},
"patterns": {
"P-001": "Hybrid Orchestration",
"P-002": "Three-Tier Memory",
"P-003": "JIT Context Loading",
"P-004": "Circuit Breaker",
"P-005": "Closed-Loop Learning",
"P-006": "Intent Detection",
"P-007": "Story-Based Development",
"P-008": "UCV Quality Gate",
"P-009": "Task Progress",
"P-010": "Agent Announcement"
},
"rules": {
"R-001": "Never develop without a story",
"R-002": "Strict role separation between agents",
"R-003": "UCV must be approved before development",
"R-004": "Exploratory QA before release",
"R-005": "100% verification coverage",
"R-006": "Handoff protocol between agents",
"R-007": "Circuit breaker after 3 failures"
},
"error_library": {
"name": "Global Error Library",
"purpose": "AutoLearning collective knowledge base - errors and solutions",
"path": "error-library/",
"loader": "lib/error-library-loader.sh",
"sync": {
"mcp_memory": true,
"entity_prefix": "Error_",
"procedure": "error-library/SYNC-PROCEDURE.md"
},
"categories": ["bash", "javascript", "typescript", "python"],
"contribute": "Create JSON following schema/error.schema.json"
},
"compatibility": {
"ai_assistants": ["Claude Code", "Cursor", "Windsurf", "Continue", "Cody"],
"llm_providers": ["Anthropic Claude", "OpenAI GPT", "Google Gemini", "Local LLMs"],
"platforms": ["Linux", "macOS", "Windows (WSL)"],
"languages": ["TypeScript", "JavaScript", "Python", "Go", "Rust", "Java"]
},
"installation": {
"methods": ["npm", "yarn", "pnpm", "manual"],
"commands": {
"npm": "npm install harmony-ai-framework",
"yarn": "yarn add harmony-ai-framework",
"pnpm": "pnpm add harmony-ai-framework",
"manual": "git clone https://github.com/harmony-ai-framework/framework && ./install.sh"
}
}
}