Predefined mesh configurations (dev-team, research, ops-incident, simulation, personal) let users bootstrap meshes with groups, roles, state keys, and system prompt hints. Templates are bundled at build time via Bun's JSON import support. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
689 B
JSON
18 lines
689 B
JSON
{
|
|
"name": "ops-incident",
|
|
"description": "Incident response team with oncall, comms, and engineering groups",
|
|
"groups": [
|
|
{ "name": "oncall", "roles": ["primary", "secondary"] },
|
|
{ "name": "comms", "roles": ["lead", "scribe"] },
|
|
{ "name": "engineering", "roles": ["lead", "responder"] }
|
|
],
|
|
"stateKeys": {
|
|
"incident-status": "investigating",
|
|
"severity": "unknown",
|
|
"commander": "",
|
|
"timeline": "[]"
|
|
},
|
|
"suggestedRoles": ["commander", "primary-oncall", "scribe", "responder"],
|
|
"systemPromptHint": "INCIDENT MODE. Priority: now for all messages. Update incident-status state. Commander coordinates. Scribe maintains timeline. Engineering fixes."
|
|
}
|