Skip to content

Commit 91e077b

Browse files
authored
feat: Add Claude Code Plugins Marketplace (#40)
Add comprehensive plugin marketplace with 11 production-ready plugins for systematic development, documentation, security, testing, and more. **What's Added:** - Marketplace configuration at repository root (.claude-plugin/) - 11 self-contained plugins in assets/claude-code-plugins/plugins/ - Complete documentation (tutorials, how-to guides, QA checklists) - Plugin-specific README, LICENSE, CONTRIBUTING, and SECURITY files **Plugin Categories:** - Workflows: EPCC, TDD - Quality: Security, Testing, Performance - Documentation: Diataxis framework - Architecture: Design, review, C4 diagrams - Development: Agile tools, UX design, Deployment, Code analysis **Files Added:** 124 files - 1 marketplace configuration - 11 plugin directories with 80 agent definitions - 4 documentation files - Supporting files (README, LICENSE, CONTRIBUTING, SECURITY) **Installation:** /plugin marketplace add aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock **Documentation:** See assets/claude-code-plugins/README.md
1 parent b24a861 commit 91e077b

File tree

122 files changed

+29327
-0
lines changed

Some content is hidden

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

122 files changed

+29327
-0
lines changed

.claude-plugin/marketplace.json

Lines changed: 308 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,308 @@
1+
{
2+
"name": "claude-code-plugins",
3+
"owner": {
4+
"name": "AWS Solutions Library",
5+
"url": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock"
6+
},
7+
"description": "Production-ready plugins for Claude Code: agents, hooks, and workflows",
8+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
9+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
10+
"license": "MIT-0",
11+
"plugins": [
12+
{
13+
"name": "epcc-workflow",
14+
"version": "1.0.0",
15+
"source": "./assets/claude-code-plugins/plugins/epcc-workflow",
16+
"description": "EPCC (Explore-Plan-Code-Commit) systematic development workflow with 12 specialized agents for exploration, planning, coding, and commit phases",
17+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/epcc-workflow",
18+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
19+
"license": "MIT-0",
20+
"category": "workflow",
21+
"keywords": [
22+
"epcc",
23+
"workflow",
24+
"methodology",
25+
"systematic",
26+
"explore-plan-code",
27+
"development-process"
28+
],
29+
"tags": [
30+
"workflow",
31+
"best-practices",
32+
"development-process",
33+
"systematic-development"
34+
],
35+
"commands": ["commands/"],
36+
"agents": ["agents/"],
37+
"hooks": ["hooks/"]
38+
},
39+
{
40+
"name": "documentation",
41+
"version": "1.0.0",
42+
"source": "./assets/claude-code-plugins/plugins/documentation",
43+
"description": "Complete Diataxis documentation framework with 12 specialized agents for tutorials, how-tos, references, explanations, and analysis",
44+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/documentation",
45+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
46+
"license": "MIT-0",
47+
"category": "documentation",
48+
"keywords": [
49+
"docs",
50+
"diataxis",
51+
"documentation",
52+
"tutorial",
53+
"how-to",
54+
"reference",
55+
"explanation",
56+
"technical-writing"
57+
],
58+
"tags": [
59+
"technical-writing",
60+
"documentation-framework",
61+
"knowledge-management",
62+
"diataxis"
63+
],
64+
"commands": ["commands/"],
65+
"agents": ["agents/"]
66+
},
67+
{
68+
"name": "architecture",
69+
"version": "1.0.0",
70+
"source": "./assets/claude-code-plugins/plugins/architecture",
71+
"description": "Architecture design, review, and documentation with 10 specialized agents for C4 diagrams, ADRs, and quality analysis",
72+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/architecture",
73+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
74+
"license": "MIT-0",
75+
"category": "architecture",
76+
"keywords": [
77+
"architecture",
78+
"design",
79+
"system-design",
80+
"c4",
81+
"adr",
82+
"diagrams",
83+
"architecture-review"
84+
],
85+
"tags": [
86+
"system-architecture",
87+
"design-patterns",
88+
"architecture-docs",
89+
"c4-diagrams"
90+
],
91+
"commands": ["commands/"],
92+
"agents": ["agents/"],
93+
"hooks": ["hooks/"]
94+
},
95+
{
96+
"name": "security",
97+
"version": "1.0.0",
98+
"source": "./assets/claude-code-plugins/plugins/security",
99+
"description": "Security scanning, auditing, and compliance validation with 4 specialized agents for automated security gates and analysis",
100+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/security",
101+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
102+
"license": "MIT-0",
103+
"category": "security",
104+
"keywords": [
105+
"security",
106+
"audit",
107+
"compliance",
108+
"scanning",
109+
"vulnerability",
110+
"owasp",
111+
"security-gates"
112+
],
113+
"tags": [
114+
"security-scanning",
115+
"compliance-automation",
116+
"security-gates",
117+
"vulnerability-detection"
118+
],
119+
"commands": ["commands/"],
120+
"agents": ["agents/"],
121+
"hooks": ["hooks/"]
122+
},
123+
{
124+
"name": "testing",
125+
"version": "1.0.0",
126+
"source": "./assets/claude-code-plugins/plugins/testing",
127+
"description": "Testing, QA, and quality gates with 3 specialized agents for automated validation and code quality checks",
128+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/testing",
129+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
130+
"license": "MIT-0",
131+
"category": "testing",
132+
"keywords": [
133+
"testing",
134+
"qa",
135+
"quality",
136+
"quality-gates",
137+
"validation",
138+
"linting",
139+
"test-automation"
140+
],
141+
"tags": [
142+
"test-automation",
143+
"quality-assurance",
144+
"code-quality",
145+
"quality-gates"
146+
],
147+
"commands": ["commands/"],
148+
"agents": ["agents/"],
149+
"hooks": ["hooks/"]
150+
},
151+
{
152+
"name": "performance",
153+
"version": "1.0.0",
154+
"source": "./assets/claude-code-plugins/plugins/performance",
155+
"description": "Performance profiling, optimization, and monitoring with 5 specialized agents for comprehensive performance analysis",
156+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/performance",
157+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
158+
"license": "MIT-0",
159+
"category": "performance",
160+
"keywords": [
161+
"performance",
162+
"optimization",
163+
"profiling",
164+
"benchmarking",
165+
"monitoring",
166+
"performance-analysis"
167+
],
168+
"tags": [
169+
"performance-optimization",
170+
"profiling-tools",
171+
"performance-monitoring",
172+
"benchmarking"
173+
],
174+
"commands": ["commands/"],
175+
"agents": ["agents/"],
176+
"hooks": ["hooks/"]
177+
},
178+
{
179+
"name": "tdd-workflow",
180+
"version": "1.0.0",
181+
"source": "./assets/claude-code-plugins/plugins/tdd-workflow",
182+
"description": "TDD workflow with 6 specialized agents for test-first development, red-green-refactor cycle, and comprehensive quality analysis",
183+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/tdd-workflow",
184+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
185+
"license": "MIT-0",
186+
"category": "workflow",
187+
"keywords": [
188+
"tdd",
189+
"test-driven",
190+
"testing",
191+
"red-green-refactor",
192+
"test-first",
193+
"test-driven-development"
194+
],
195+
"tags": [
196+
"test-driven-development",
197+
"testing-workflow",
198+
"quality",
199+
"tdd-workflow"
200+
],
201+
"commands": ["commands/"],
202+
"agents": ["agents/"]
203+
},
204+
{
205+
"name": "agile-tools",
206+
"version": "1.0.0",
207+
"source": "./assets/claude-code-plugins/plugins/agile-tools",
208+
"description": "Agile team roles: Scrum Master, Product Owner, Business Analyst, and Project Manager agents",
209+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/agile-tools",
210+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
211+
"license": "MIT-0",
212+
"category": "agile",
213+
"keywords": [
214+
"agile",
215+
"scrum",
216+
"product-management",
217+
"business-analysis",
218+
"project-management",
219+
"scrum-master"
220+
],
221+
"tags": [
222+
"agile-development",
223+
"team-roles",
224+
"project-management",
225+
"scrum"
226+
],
227+
"agents": ["agents/"],
228+
"hooks": ["hooks/"]
229+
},
230+
{
231+
"name": "ux-design",
232+
"version": "1.0.0",
233+
"source": "./assets/claude-code-plugins/plugins/ux-design",
234+
"description": "UX optimization and UI design tools with accessibility validation and WCAG compliance",
235+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/ux-design",
236+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
237+
"license": "MIT-0",
238+
"category": "design",
239+
"keywords": [
240+
"ux",
241+
"ui",
242+
"design",
243+
"accessibility",
244+
"wcag",
245+
"user-experience",
246+
"interface-design"
247+
],
248+
"tags": [
249+
"user-experience",
250+
"interface-design",
251+
"accessibility",
252+
"wcag"
253+
],
254+
"agents": ["agents/"]
255+
},
256+
{
257+
"name": "deployment",
258+
"version": "1.0.0",
259+
"source": "./assets/claude-code-plugins/plugins/deployment",
260+
"description": "Deployment orchestration and compliance automation with progressive rollout strategies",
261+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/deployment",
262+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
263+
"license": "MIT-0",
264+
"category": "devops",
265+
"keywords": [
266+
"deployment",
267+
"devops",
268+
"ci-cd",
269+
"automation",
270+
"compliance",
271+
"continuous-deployment"
272+
],
273+
"tags": [
274+
"deployment-automation",
275+
"continuous-deployment",
276+
"devops-tools",
277+
"ci-cd"
278+
],
279+
"agents": ["agents/"],
280+
"hooks": ["hooks/"]
281+
},
282+
{
283+
"name": "code-analysis",
284+
"version": "1.0.0",
285+
"source": "./assets/claude-code-plugins/plugins/code-analysis",
286+
"description": "Code archaeology and technology evaluation for legacy systems and technical debt assessment",
287+
"homepage": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock/tree/main/assets/claude-code-plugins/plugins/code-analysis",
288+
"repository": "https://github.com/aws-solutions-library-samples/guidance-for-claude-code-with-amazon-bedrock",
289+
"license": "MIT-0",
290+
"category": "analysis",
291+
"keywords": [
292+
"analysis",
293+
"legacy",
294+
"evaluation",
295+
"archaeology",
296+
"technical-debt",
297+
"code-review"
298+
],
299+
"tags": [
300+
"code-analysis",
301+
"legacy-systems",
302+
"tech-evaluation",
303+
"technical-debt"
304+
],
305+
"agents": ["agents/"]
306+
}
307+
]
308+
}

0 commit comments

Comments
 (0)