-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.manifest.json
More file actions
48 lines (48 loc) · 1.37 KB
/
plugin.manifest.json
File metadata and controls
48 lines (48 loc) · 1.37 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
{
"name": "ai-maestro",
"version": "1.0.0",
"description": "AI agent orchestration — memory search, code graph, AMP messaging, docs search, task planning",
"output": "./plugins/ai-maestro",
"plugin": {
"name": "ai-maestro",
"version": "1.0.0",
"author": { "name": "23blocks" },
"homepage": "https://github.com/23blocks-OS/ai-maestro",
"license": "MIT"
},
"sources": [
{
"name": "core",
"description": "AI Maestro core skills, scripts, and hooks",
"type": "local",
"path": "./src",
"map": {
"skills/*": "skills/",
"scripts/*": "scripts/",
"hooks/*": "hooks/"
}
},
{
"name": "amp-messaging",
"description": "Agent Messaging Protocol (AMP) — email for AI agents",
"type": "git",
"repo": "https://github.com/agentmessaging/claude-plugin.git",
"ref": "main",
"map": {
"skills/agent-messaging": "skills/agent-messaging",
"scripts/*.sh": "scripts/"
}
},
{
"name": "agent-identity",
"description": "Agent Identity (AID) — OAuth 2.0 authentication using AMP Ed25519 identity",
"type": "git",
"repo": "https://github.com/agentmessaging/agent-identity.git",
"ref": "main",
"map": {
"skills/agent-identity": "skills/agent-identity",
"scripts/*.sh": "scripts/"
}
}
]
}