-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbundle-manifest.json
More file actions
74 lines (74 loc) · 2.12 KB
/
Copy pathbundle-manifest.json
File metadata and controls
74 lines (74 loc) · 2.12 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
{
"name": "webdev-agent-kit",
"version": "0.4.0",
"license": "Apache-2.0",
"description": "Internal source and distribution inventory for the WebDev Agent Kit skill bundle.",
"portable_core": "common/core/runtime-core-policy.md",
"default_profile": "react-typescript",
"profiles": {
"react-typescript": "profiles/react-typescript/PROFILE.md"
},
"adapters": {
"claude-code": "adapters/claude-code.md",
"codex": "adapters/codex.md",
"cursor": "adapters/cursor.md"
},
"skills": [
"agent-rules-skill-author",
"design-screenshot-spec",
"execution-plan-manager",
"frontend-architecture-planner",
"frontend-bugfix-debugger",
"frontend-design-director",
"frontend-design-intelligence",
"frontend-layout-implementer",
"frontend-linter-manager",
"frontend-quality-reviewer",
"frontend-refactor-surgeon",
"frontend-visual-qa",
"goal-planner",
"greenfield-project-builder",
"loop-workflow-planner",
"mcp-toolchain-manager",
"pattern-library-manager",
"project-context-adapter",
"project-onboarding-adapter"
],
"targets": {
"claude-code": {
"kind": "plugin",
"output": "dist/claude-code",
"install_mode": "plugin-install",
"entrypoint": ".claude-plugin/plugin.json",
"skills_root": "skills",
"validator": "scripts/validate_claude_plugin_target.py"
},
"codex": {
"kind": "project-bundle",
"output": "dist/codex",
"install_mode": "project-root-extract",
"entrypoint": ".agents/AGENTS.md",
"skills_root": ".agents/skills",
"validator": "scripts/validate_codex_project_target.py"
},
"cursor": {
"kind": "project-bundle",
"output": "dist/cursor",
"install_mode": "project-root-extract",
"entrypoint": ".cursor/rules/webdev-agent-kit.mdc",
"skills_root": ".agents/skills",
"validator": "scripts/validate_cursor_target.py"
}
},
"target_aliases": {
"claude": "claude-code",
"vs-code-claude": "claude-code",
"vs-code-codex": "codex"
},
"excludes": [
"project/**",
"dist/**",
"docs/**",
".obsidian/**"
]
}