-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathragbaz.component.json
More file actions
174 lines (174 loc) · 4.6 KB
/
Copy pathragbaz.component.json
File metadata and controls
174 lines (174 loc) · 4.6 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"$schema": "../docs/schemas/ragbaz.component.schema.json",
"schemaVersion": "0.1.0",
"identity": {
"id": "ragbaz.frog",
"name": "RAGBAZ Frog",
"version": "0.1.0",
"repoPath": "ragbaz-frog",
"owner": "ragbaz",
"lifecycle": "production"
},
"commercial": {
"packageTags": ["managed-operations", "agent-coordination"],
"personas": ["internal-operator", "agent-team", "platform-owner"],
"supportTier": "managed",
"salesStatus": "internal",
"pricingTags": ["included-platform"]
},
"capabilities": {
"provides": [
{
"id": "ops.coordination",
"label": "Task, lock, repo, and unit coordination",
"version": "0.1.0",
"supportTier": "production",
"description": "Maintains AGENTS.db task slices, locks, repo metadata, unit discovery, event logs, and workspace status."
},
{
"id": "ops.mcp",
"label": "Frog MCP tools",
"version": "0.1.0",
"supportTier": "production",
"sensitive": true,
"description": "Exposes coordination operations as MCP tools for cooperating agents."
}
]
},
"requires": {
"storage": [
{
"name": "AGENTS.db",
"reason": "Shared SQLite coordination state."
}
],
"approvals": [
{
"capability": "approval.coordination.write",
"reason": "Task and lock writes affect all cooperating agents."
}
]
},
"provides": {
"cli": [
{
"name": "frog",
"command": "/data/src/ragbaz-frog/bin/frog",
"capabilities": ["ops.coordination"]
},
{
"name": "frog-mcp",
"command": "/data/src/ragbaz-frog/bin/frog-mcp",
"capabilities": ["ops.mcp"]
}
],
"mcpTools": [
{
"name": "frog.repo.list",
"capabilities": ["ops.coordination"],
"permissions": ["repo:read"],
"dryRun": true
},
{
"name": "frog.task.claim",
"capabilities": ["ops.coordination"],
"permissions": ["task:write", "lock:write"]
},
{
"name": "frog.lock.audit",
"capabilities": ["ops.coordination"],
"permissions": ["lock:read"],
"dryRun": true
}
],
"events": [
{
"type": "frog.task.changed",
"schemaVersion": "0.1.0",
"description": "Task lifecycle, assignment, and status changes."
},
{
"type": "frog.lock.changed",
"schemaVersion": "0.1.0",
"description": "Lock acquisition, renewal, release, and audit events."
}
],
"metrics": [
{
"name": "lock-audit",
"description": "Working-tree changes not covered by active locks.",
"capabilities": ["ops.coordination"]
}
],
"adminSurfaces": [
{
"name": "frog-cli",
"description": "Human-facing coordination CLI.",
"capabilities": ["ops.coordination"]
}
]
},
"config": {
"knobs": [
{
"name": "workspace-root",
"env": "FROG_WORKSPACE",
"type": "string",
"required": false,
"control": "operator",
"description": "Workspace root used for repo and unit resolution."
},
{
"name": "agent-name",
"env": "FROG_AGENT",
"type": "string",
"required": false,
"control": "operator",
"description": "Acting agent identity used for locks and task ownership."
}
]
},
"security": {
"authMethods": ["ssh", "mcp"],
"tokenScopes": ["repo:read", "task:write", "lock:write", "workspace:read"],
"tenantBoundary": "host-level",
"dataClasses": ["logs", "metrics"],
"secretAccess": "references-only",
"revocation": "Revoke workspace access by disabling the operator account, SSH path, or MCP client grant.",
"auditEvents": ["frog.task.changed", "frog.lock.changed"]
},
"health": {
"checks": [
{
"name": "cli-status",
"type": "command",
"target": "/data/src/ragbaz-frog/bin/frog status --json",
"intervalSeconds": 300,
"timeoutSeconds": 20,
"required": true
}
]
},
"compatibility": {
"contracts": [
{
"name": "frog-cli",
"version": "0.1.0",
"test": "python3 -m unittest discover -s tests"
},
{
"name": "frog-mcp",
"version": "0.1.0",
"test": "/data/src/ragbaz-frog/bin/frog mcp tools --json"
}
]
},
"docs": {
"readme": "README.md",
"runbook": "docs/DEPLOY.md",
"architecture": "docs/FEDERATION.md"
},
"metadata": {
"candidateWave": "component-manifest-candidate-wave"
}
}