-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent-bundle.json
More file actions
67 lines (67 loc) · 2.11 KB
/
agent-bundle.json
File metadata and controls
67 lines (67 loc) · 2.11 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
{
"schemaVersion": 1,
"name": "agents",
"displayName": "Agents",
"description": "Portable AI agent skills, bundled agent definitions, MCP configuration, and shared instructions for coding agents.",
"source": {
"type": "github",
"repository": "wyattowalsh/agents",
"defaultRef": "main",
"skillsSource": "github:wyattowalsh/agents"
},
"components": {
"skills": "./skills/",
"agents": "./agents/",
"mcpServers": "./mcp.json",
"instructions": "./instructions/",
"openspec": "./openspec/"
},
"adapters": {
"claude-code": {
"pluginManifest": "./.claude-plugin/plugin.json",
"marketplace": "./.claude-plugin/marketplace.json",
"addMarketplace": "claude plugin marketplace add wyattowalsh/agents",
"install": "claude plugin install agents@agents",
"update": "claude plugin marketplace update agents"
},
"codex": {
"pluginManifest": "./.codex-plugin/plugin.json",
"marketplace": "./.agents/plugins/marketplace.json",
"install": "Open /plugins in Codex and install agents from the Agents marketplace",
"update": "codex plugin marketplace upgrade agents"
},
"agent-skills-cli": {
"install": "npx skills add github:wyattowalsh/agents --all -y -g --agent claude-code --agent codex --agent gemini-cli --agent antigravity --agent github-copilot --agent opencode",
"update": "npx skills update",
"supportedAgents": [
"antigravity",
"claude-code",
"codex",
"crush",
"cursor",
"gemini-cli",
"github-copilot",
"opencode"
]
},
"openspec": {
"package": "@fission-ai/openspec@latest",
"minimumNode": "20.19.0",
"doctor": "uv run wagents openspec doctor",
"validate": "uv run wagents openspec validate",
"init": "uv run wagents openspec init --apply",
"update": "uv run wagents openspec update --apply",
"telemetry": "Wrapper commands set OPENSPEC_TELEMETRY=0 unless the user opts in.",
"toolMapping": {
"antigravity": "antigravity",
"claude-code": "claude",
"codex": "codex",
"crush": "crush",
"cursor": "cursor",
"gemini-cli": "gemini",
"github-copilot": "github-copilot",
"opencode": "opencode"
}
}
}
}