Skip to content

Commit 905dbe8

Browse files
authored
Merge pull request #117 from shinpr/fix/marketplace-flatten-source
fix: flatten plugin sources to avoid installer dropping cross-dir symlinks
2 parents afbe404 + 6f01598 commit 905dbe8

92 files changed

Lines changed: 165 additions & 227 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.claude-plugin/marketplace.json

Lines changed: 163 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,175 @@
1010
"plugins": [
1111
{
1212
"name": "dev-workflows",
13-
"source": "./backend",
14-
"description": "Skills + Subagents for backend development - Use skills for coding guidance, or run recipe workflows for full orchestrated agentic coding with specialized agents"
13+
"source": "./",
14+
"strict": false,
15+
"version": "0.16.15",
16+
"description": "Skills + Subagents for backend development - Use skills for coding guidance, or run recipe workflows for full orchestrated agentic coding with specialized agents",
17+
"author": {
18+
"name": "Shinsuke Kagawa",
19+
"url": "https://github.com/shinpr"
20+
},
21+
"homepage": "https://github.com/shinpr/claude-code-workflows",
22+
"repository": "https://github.com/shinpr/claude-code-workflows.git",
23+
"license": "MIT",
24+
"keywords": [
25+
"workflows",
26+
"best-practices",
27+
"sub-agents",
28+
"quality",
29+
"development",
30+
"coding-standards",
31+
"testing",
32+
"architecture",
33+
"backend"
34+
],
35+
"agents": [
36+
"./agents/acceptance-test-generator.md",
37+
"./agents/code-reviewer.md",
38+
"./agents/codebase-analyzer.md",
39+
"./agents/code-verifier.md",
40+
"./agents/design-sync.md",
41+
"./agents/document-reviewer.md",
42+
"./agents/integration-test-reviewer.md",
43+
"./agents/investigator.md",
44+
"./agents/prd-creator.md",
45+
"./agents/quality-fixer.md",
46+
"./agents/requirement-analyzer.md",
47+
"./agents/rule-advisor.md",
48+
"./agents/scope-discoverer.md",
49+
"./agents/security-reviewer.md",
50+
"./agents/solver.md",
51+
"./agents/task-decomposer.md",
52+
"./agents/task-executor.md",
53+
"./agents/technical-designer.md",
54+
"./agents/verifier.md",
55+
"./agents/work-planner.md"
56+
],
57+
"skills": [
58+
"./skills/ai-development-guide",
59+
"./skills/coding-principles",
60+
"./skills/documentation-criteria",
61+
"./skills/implementation-approach",
62+
"./skills/integration-e2e-testing",
63+
"./skills/recipe-add-integration-tests",
64+
"./skills/recipe-build",
65+
"./skills/recipe-design",
66+
"./skills/recipe-diagnose",
67+
"./skills/recipe-fullstack-build",
68+
"./skills/recipe-fullstack-implement",
69+
"./skills/recipe-implement",
70+
"./skills/recipe-plan",
71+
"./skills/recipe-reverse-engineer",
72+
"./skills/recipe-review",
73+
"./skills/recipe-task",
74+
"./skills/recipe-update-doc",
75+
"./skills/subagents-orchestration-guide",
76+
"./skills/task-analyzer",
77+
"./skills/testing-principles"
78+
]
1579
},
1680
{
1781
"name": "dev-workflows-frontend",
18-
"source": "./frontend",
19-
"description": "Skills + Subagents for React/TypeScript - Use skills for coding guidance, or run recipe workflows for full orchestrated agentic coding with specialized agents"
82+
"source": "./",
83+
"strict": false,
84+
"version": "0.16.15",
85+
"description": "Skills + Subagents for React/TypeScript - Use skills for coding guidance, or run recipe workflows for full orchestrated agentic coding with specialized agents",
86+
"author": {
87+
"name": "Shinsuke Kagawa",
88+
"url": "https://github.com/shinpr"
89+
},
90+
"homepage": "https://github.com/shinpr/claude-code-workflows",
91+
"repository": "https://github.com/shinpr/claude-code-workflows.git",
92+
"license": "MIT",
93+
"keywords": [
94+
"react",
95+
"frontend",
96+
"workflows",
97+
"typescript",
98+
"testing",
99+
"quality",
100+
"sub-agents",
101+
"tdd",
102+
"react-testing-library",
103+
"best-practices"
104+
],
105+
"agents": [
106+
"./agents/acceptance-test-generator.md",
107+
"./agents/code-reviewer.md",
108+
"./agents/codebase-analyzer.md",
109+
"./agents/code-verifier.md",
110+
"./agents/design-sync.md",
111+
"./agents/document-reviewer.md",
112+
"./agents/integration-test-reviewer.md",
113+
"./agents/investigator.md",
114+
"./agents/prd-creator.md",
115+
"./agents/quality-fixer-frontend.md",
116+
"./agents/requirement-analyzer.md",
117+
"./agents/rule-advisor.md",
118+
"./agents/security-reviewer.md",
119+
"./agents/solver.md",
120+
"./agents/task-decomposer.md",
121+
"./agents/task-executor-frontend.md",
122+
"./agents/technical-designer-frontend.md",
123+
"./agents/ui-spec-designer.md",
124+
"./agents/verifier.md",
125+
"./agents/work-planner.md"
126+
],
127+
"skills": [
128+
"./skills/ai-development-guide",
129+
"./skills/coding-principles",
130+
"./skills/documentation-criteria",
131+
"./skills/frontend-ai-guide",
132+
"./skills/implementation-approach",
133+
"./skills/integration-e2e-testing",
134+
"./skills/recipe-diagnose",
135+
"./skills/recipe-front-build",
136+
"./skills/recipe-front-design",
137+
"./skills/recipe-front-plan",
138+
"./skills/recipe-front-review",
139+
"./skills/recipe-task",
140+
"./skills/recipe-update-doc",
141+
"./skills/subagents-orchestration-guide",
142+
"./skills/task-analyzer",
143+
"./skills/test-implement",
144+
"./skills/testing-principles",
145+
"./skills/typescript-rules"
146+
]
20147
},
21148
{
22149
"name": "dev-skills",
23-
"source": "./skills-only",
24-
"description": "Lightweight skills for users with existing workflows - coding best practices, testing principles, and design guidelines without recipe workflows or agents"
150+
"source": "./",
151+
"strict": false,
152+
"version": "0.16.15",
153+
"description": "Lightweight skills for users with existing workflows - coding best practices, testing principles, and design guidelines without recipe workflows or agents",
154+
"author": {
155+
"name": "Shinsuke Kagawa",
156+
"url": "https://github.com/shinpr"
157+
},
158+
"homepage": "https://github.com/shinpr/claude-code-workflows",
159+
"repository": "https://github.com/shinpr/claude-code-workflows.git",
160+
"license": "MIT",
161+
"keywords": [
162+
"skills",
163+
"best-practices",
164+
"coding-standards",
165+
"testing",
166+
"tdd",
167+
"design-docs",
168+
"development",
169+
"quality"
170+
],
171+
"skills": [
172+
"./skills/ai-development-guide",
173+
"./skills/coding-principles",
174+
"./skills/documentation-criteria",
175+
"./skills/frontend-ai-guide",
176+
"./skills/implementation-approach",
177+
"./skills/integration-e2e-testing",
178+
"./skills/test-implement",
179+
"./skills/testing-principles",
180+
"./skills/typescript-rules"
181+
]
25182
},
26183
{
27184
"name": "metronome",

README.md

Lines changed: 2 additions & 21 deletions

backend/.claude-plugin/plugin.json

Lines changed: 0 additions & 45 deletions
This file was deleted.

backend/agents/acceptance-test-generator.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/agents/code-reviewer.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/agents/code-verifier.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/agents/codebase-analyzer.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/agents/design-sync.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/agents/document-reviewer.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/agents/integration-test-reviewer.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)