@agentlee5/agent-skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/.leeway/config.json +133 -0
  2. package/LICENSE +21 -0
  3. package/LeeWay-Standards/LICENSE +21 -0
  4. package/LeeWay-Standards/README.md +324 -0
  5. package/LeeWay-Standards/examples/NexusButton.tsx +90 -0
  6. package/LeeWay-Standards/examples/example-agent.js +89 -0
  7. package/LeeWay-Standards/package.json +61 -0
  8. package/LeeWay-Standards/schemas/leeway-config.schema.json +81 -0
  9. package/LeeWay-Standards/schemas/leeway-header.schema.json +63 -0
  10. package/LeeWay-Standards/src/agents/discovery/architecture-map-agent.js +134 -0
  11. package/LeeWay-Standards/src/agents/discovery/docs-agent.js +126 -0
  12. package/LeeWay-Standards/src/agents/discovery/explain-agent.js +95 -0
  13. package/LeeWay-Standards/src/agents/discovery/intent-registry-agent.js +119 -0
  14. package/LeeWay-Standards/src/agents/discovery/schema-agent.js +116 -0
  15. package/LeeWay-Standards/src/agents/discovery/sitemap-agent.js +88 -0
  16. package/LeeWay-Standards/src/agents/governance/align-agent.js +155 -0
  17. package/LeeWay-Standards/src/agents/governance/assess-agent.js +161 -0
  18. package/LeeWay-Standards/src/agents/governance/audit-agent.js +185 -0
  19. package/LeeWay-Standards/src/agents/integrity/circular-dependency-agent.js +88 -0
  20. package/LeeWay-Standards/src/agents/integrity/dependency-graph-agent.js +107 -0
  21. package/LeeWay-Standards/src/agents/integrity/duplicate-logic-agent.js +108 -0
  22. package/LeeWay-Standards/src/agents/integrity/import-agent.js +83 -0
  23. package/LeeWay-Standards/src/agents/integrity/module-policy-agent.js +94 -0
  24. package/LeeWay-Standards/src/agents/integrity/refactor-scan-agent.js +113 -0
  25. package/LeeWay-Standards/src/agents/integrity/syntax-agent.js +84 -0
  26. package/LeeWay-Standards/src/agents/mcp/endpoint-agent.js +106 -0
  27. package/LeeWay-Standards/src/agents/mcp/env-agent.js +111 -0
  28. package/LeeWay-Standards/src/agents/mcp/health-agent-lite.js +119 -0
  29. package/LeeWay-Standards/src/agents/mcp/manifest-agent.js +87 -0
  30. package/LeeWay-Standards/src/agents/mcp/port-agent.js +125 -0
  31. package/LeeWay-Standards/src/agents/mcp/process-agent.js +124 -0
  32. package/LeeWay-Standards/src/agents/mcp/runtime-agent.js +108 -0
  33. package/LeeWay-Standards/src/agents/mcp/transport-agent.js +78 -0
  34. package/LeeWay-Standards/src/agents/orchestration/doctor-agent.js +149 -0
  35. package/LeeWay-Standards/src/agents/orchestration/memory-agent-lite.js +125 -0
  36. package/LeeWay-Standards/src/agents/orchestration/router-agent.js +110 -0
  37. package/LeeWay-Standards/src/agents/security/permission-agent.js +98 -0
  38. package/LeeWay-Standards/src/agents/security/policy-agent.js +100 -0
  39. package/LeeWay-Standards/src/agents/security/privacy-agent.js +83 -0
  40. package/LeeWay-Standards/src/agents/security/prompt-security-agent.js +103 -0
  41. package/LeeWay-Standards/src/agents/security/secret-scan-agent.js +108 -0
  42. package/LeeWay-Standards/src/agents/security/tool-access-agent.js +105 -0
  43. package/LeeWay-Standards/src/agents/standards/authority-agent.js +114 -0
  44. package/LeeWay-Standards/src/agents/standards/discovery-pipeline-agent.js +91 -0
  45. package/LeeWay-Standards/src/agents/standards/header-agent.js +120 -0
  46. package/LeeWay-Standards/src/agents/standards/placement-agent.js +96 -0
  47. package/LeeWay-Standards/src/agents/standards/region-agent.js +99 -0
  48. package/LeeWay-Standards/src/agents/standards/registry-agent.js +153 -0
  49. package/LeeWay-Standards/src/agents/standards/tag-agent.js +111 -0
  50. package/LeeWay-Standards/src/cli/leeway.js +225 -0
  51. package/LeeWay-Standards/src/core/compliance-scorer.js +168 -0
  52. package/LeeWay-Standards/src/core/compliance-scorer.test.js +121 -0
  53. package/LeeWay-Standards/src/core/header-parser.js +207 -0
  54. package/LeeWay-Standards/src/core/header-parser.test.js +198 -0
  55. package/LeeWay-Standards/src/core/region-classifier.js +137 -0
  56. package/LeeWay-Standards/src/core/region-classifier.test.js +100 -0
  57. package/LeeWay-Standards/src/core/tag-validator.js +139 -0
  58. package/LeeWay-Standards/src/core/tag-validator.test.js +109 -0
  59. package/LeeWay-Standards/src/index.js +83 -0
  60. package/README.md +217 -0
  61. package/agent-config.yaml +456 -0
  62. package/agentbage.png.png +0 -0
  63. package/bin/leeway-skills-badge.js +52 -0
  64. package/bin/leeway-skills-mcp.js +48 -0
  65. package/bin/leeway-skills.js +160 -0
  66. package/bin/leeway-standards.js +49 -0
  67. package/config/.skillsignore +63 -0
  68. package/config/skills-config.json +70 -0
  69. package/documents/AGENT_LEARNING_REFERENCE.md +329 -0
  70. package/documents/AGENT_LEE_INTEGRATION.md +534 -0
  71. package/documents/COMPLETE_SYSTEM_OVERVIEW.md +502 -0
  72. package/documents/COMPREHENSIVE_SKILL_INTEGRATION_PLAN.md +644 -0
  73. package/documents/DIRECTORY_MAP.md +323 -0
  74. package/documents/EXTENDING.md +514 -0
  75. package/documents/FILE_DIRECTORY_GUIDE.md +427 -0
  76. package/documents/LEEWAY_BADGE_INTEGRATION.md +76 -0
  77. package/documents/LEEWAY_IMPLEMENTATION_SUMMARY.md +384 -0
  78. package/documents/LEEWAY_INTEGRATION_GUIDE.md +414 -0
  79. package/documents/LEEWAY_NPM_SDK.md +66 -0
  80. package/documents/LEEWAY_QUICK_START.md +288 -0
  81. package/documents/LEEWAY_SKILLS_BRANDING.md +375 -0
  82. package/documents/LEEWAY_SKILLS_MCP_SUMMARY.md +593 -0
  83. package/documents/LEEWAY_STANDARDS_COMPLIANCE.md +361 -0
  84. package/documents/LEEWAY_UNIFIED_ARCHITECTURE.md +473 -0
  85. package/documents/LEEWAY_WORKFLOWS_QUICK_REFERENCE.md +307 -0
  86. package/documents/LEEWAY_WORKFLOWS_STRATEGIC_PLAN.md +515 -0
  87. package/documents/LIFELONG_LEARNING_LAYER.md +478 -0
  88. package/documents/MCP_ARCHITECTURE.md +683 -0
  89. package/documents/QUICK_REFERENCE.md +301 -0
  90. package/documents/SETUP.md +325 -0
  91. package/documents/SETUP_SUMMARY.md +413 -0
  92. package/documents/SKILL_ACQUISITION_EXECUTIVE_SUMMARY.md +373 -0
  93. package/documents/SKILL_ACQUISITION_IMPLEMENTATION.md +692 -0
  94. package/documents/SKILL_ACQUISITION_MANIFEST.md +404 -0
  95. package/documents/SKILL_ACQUISITION_QUICK_REFERENCE.md +349 -0
  96. package/documents/SKILL_WORKFLOW_COMPOSITION_MATRIX.md +537 -0
  97. package/documents/STRUCTURE.md +382 -0
  98. package/documents/SYSTEM_TRANSFORMATION_SUMMARY.md +560 -0
  99. package/documents/USAGE.md +390 -0
  100. package/documents/WORKFLOW_ACQUISITION_MANIFEST.md +576 -0
  101. package/documents/aiskills.txt +460 -0
  102. package/mcp-server/README.md +697 -0
  103. package/mcp-server/dist/badge-proof.d.ts +66 -0
  104. package/mcp-server/dist/badge-proof.d.ts.map +1 -0
  105. package/mcp-server/dist/badge-proof.js +324 -0
  106. package/mcp-server/dist/badge-proof.js.map +1 -0
  107. package/mcp-server/dist/index.d.ts +64 -0
  108. package/mcp-server/dist/index.d.ts.map +1 -0
  109. package/mcp-server/dist/index.js +263 -0
  110. package/mcp-server/dist/index.js.map +1 -0
  111. package/mcp-server/dist/install-badge-proof.d.ts +3 -0
  112. package/mcp-server/dist/install-badge-proof.d.ts.map +1 -0
  113. package/mcp-server/dist/install-badge-proof.js +109 -0
  114. package/mcp-server/dist/install-badge-proof.js.map +1 -0
  115. package/mcp-server/package.json +43 -0
  116. package/mcp-server/src/badge-proof.ts +469 -0
  117. package/mcp-server/src/index.ts +355 -0
  118. package/mcp-server/src/install-badge-proof.ts +132 -0
  119. package/mcp-server/tsconfig.json +22 -0
  120. package/package.json +84 -0
  121. package/scripts/init-leeway.js +217 -0
  122. package/scripts/leeway-agents/compliance-monitor.js +374 -0
  123. package/scripts/leeway-agents/header-injector.js +321 -0
  124. package/scripts/skill-integration-toolkit.py +319 -0
  125. package/scripts/skills-registry.json +1117 -0
  126. package/scripts/sync-skills.ps1 +275 -0
  127. package/scripts/verify-leeway-setup.js +249 -0
  128. package/scripts/workflow-integration-toolkit.py +522 -0
  129. package/sdk/application-installer.js +92 -0
  130. package/sdk/index.js +43 -0
  131. package/sdk/paths.js +167 -0
  132. package/skills/agent-autonomy/autonomous-conductor/SKILL.md +206 -0
  133. package/skills/agent-autonomy/full-stack-delivery/SKILL.md +206 -0
  134. package/skills/agent-orchestration/multi-agent-orchestration/SKILL.md +68 -0
  135. package/skills/agent-patterns/agent-design-patterns/SKILL.md +70 -0
  136. package/skills/ai-ml/llm-prompting/SKILL.md +71 -0
  137. package/skills/ai-ml/ml-model-development/SKILL.md +67 -0
  138. package/skills/ai-ml/multimodal-systems/SKILL.md +71 -0
  139. package/skills/ai-ml/retrieval-generation-fine-tuning/SKILL.md +71 -0
  140. package/skills/architecture/system-design/SKILL.md +67 -0
  141. package/skills/code-analysis/refactoring/SKILL.md +64 -0
  142. package/skills/code-analysis/security-vulnerability-scanning/SKILL.md +71 -0
  143. package/skills/code-analysis/static-analysis/SKILL.md +64 -0
  144. package/skills/code-generation/full-stack-application/SKILL.md +70 -0
  145. package/skills/code-generation/microservices-architecture/SKILL.md +71 -0
  146. package/skills/code-generation/python-codegen/SKILL.md +64 -0
  147. package/skills/code-generation/typescript-codegen/SKILL.md +64 -0
  148. package/skills/data-analysis/advanced-analytics/SKILL.md +71 -0
  149. package/skills/data-analysis/pandas-analysis/SKILL.md +66 -0
  150. package/skills/database-design/database-design-optimization/SKILL.md +70 -0
  151. package/skills/debugging/javascript-debugging/SKILL.md +67 -0
  152. package/skills/debugging/python-debugging/SKILL.md +67 -0
  153. package/skills/devops/dockerfile-creation/SKILL.md +64 -0
  154. package/skills/devops/kubernetes-deployment/SKILL.md +65 -0
  155. package/skills/documentation/api-documentation/SKILL.md +67 -0
  156. package/skills/error-handling/resilience-patterns/SKILL.md +70 -0
  157. package/skills/git-workflow/git-collaboration/SKILL.md +67 -0
  158. package/skills/infrastructure/cicd-pipelines/SKILL.md +70 -0
  159. package/skills/infrastructure/infrastructure-as-code/SKILL.md +70 -0
  160. package/skills/observability/monitoring-and-observability/SKILL.md +70 -0
  161. package/skills/performance-optimization/performance-engineering/SKILL.md +70 -0
  162. package/skills/prompt-optimization/prompt-engineering-advanced/SKILL.md +70 -0
  163. package/skills/quality-assurance/deployment-validator/SKILL.md +382 -0
  164. package/skills/quality-assurance/web-security-sweep/SKILL.md +320 -0
  165. package/skills/rag-knowledge/rag-systems/SKILL.md +70 -0
  166. package/skills/research/knowledge-synthesis/SKILL.md +71 -0
  167. package/skills/security/authentication-authorization/SKILL.md +71 -0
  168. package/skills/security/code-security/SKILL.md +66 -0
  169. package/skills/security/secure-architecture/SKILL.md +71 -0
  170. package/skills/self-optimization/dev-loop-optimizer/SKILL.md +344 -0
  171. package/skills/self-optimization/memory-learning/SKILL.md +335 -0
  172. package/skills/self-optimization/runtime-self-profiling/SKILL.md +250 -0
  173. package/skills/testing/advanced-testing-strategies/SKILL.md +71 -0
  174. package/skills/testing/integration-testing/SKILL.md +66 -0
  175. package/skills/testing/load-testing-capacity/SKILL.md +71 -0
  176. package/skills/testing/unit-testing/SKILL.md +66 -0
  177. package/skills/tool-integration/custom-tool-creation/SKILL.md +70 -0
  178. package/skills/web-development/advanced-frontend-patterns/SKILL.md +71 -0
  179. package/skills/web-development/api-design/SKILL.md +71 -0
  180. package/skills/web-development/css-styling/SKILL.md +67 -0
  181. package/skills/web-development/react-development/SKILL.md +79 -0
  182. package/skills/workflow-composition/workflow-orchestration/SKILL.md +70 -0
@@ -0,0 +1,404 @@
1
+ # 📋 Skill Repository Acquisition Manifest
2
+
3
+ **Master Checklist**: Track 100% skill acquisition from all sources
4
+ **Last Updated**: 2026-03-15
5
+ **Target**: Complete 250+ unified skill library
6
+
7
+ ---
8
+
9
+ ## ✅ Primary Source: alirezarezvani/claude-skills (177+ Skills)
10
+
11
+ ### Core Engineering (24 skills)
12
+
13
+ - [ ] `architecture-decision-framework` - Architecting scalable systems
14
+ - [ ] `frontend-expert` - React/Vue/Svelte best practices
15
+ - [ ] `backend-architecture` - Server-side architecture patterns
16
+ - [ ] `fullstack-engineer` - End-to-end development workflows
17
+ - [ ] `qa-automation` - QA strategy and test automation
18
+ - [ ] `devops-infrastructure` - Kubernetes, Docker, infrastructure
19
+ - [ ] `secops-security` - Security operations and vulnerability scanning
20
+ - [ ] `ai-ml-model-selection` - ML model selection and training
21
+ - [ ] `data-engineering` - ETL, data pipelines, warehousing
22
+ - [ ] `playwright-testing` - Browser testing with Playwright
23
+ - [ ] `google-workspace-cli` - Google Workspace automation
24
+ - [ ] `performance-optimization` - App/site performance tuning
25
+ - [ ] `accessibility-auditor` - WCAG compliance and accessible design
26
+ - [ ] `system-design` - Large-scale system architecture
27
+ - [ ] `api-security` - API authentication, authorization, security
28
+ - [ ] `containerization` - Docker and container best practices
29
+ - [ ] `ci-cd-fundamentals` - CI/CD pipeline design
30
+ - [ ] `mobile-app-dev` - iOS/Android development patterns
31
+ - [ ] `database-fundamentals` - SQL/NoSQL database design
32
+ - [ ] `cloud-architecture` - AWS/Azure/GCP architecture
33
+ - [ ] `agile-development` - Agile methodology and practices
34
+ - [ ] `code-review-strategy` - Effective code review processes
35
+ - [ ] `technical-documentation` - Writing technical docs
36
+ - [ ] `debugging-optimization` - Advanced debugging techniques
37
+
38
+ ### Playwright Pro (12 skills)
39
+
40
+ - [ ] `playwright-test-generator` - Auto-generate tests
41
+ - [ ] `playwright-flaky-fix` - Fix flaky tests automatically
42
+ - [ ] `playwright-cypress-migration` - Migrate from Cypress
43
+ - [ ] `playwright-selenium-migration` - Migrate from Selenium
44
+ - [ ] `playwright-testrail-integration` - TestRail integration
45
+ - [ ] `playwright-browserstack-integration` - BrowserStack integration
46
+ - [ ] `playwright-performance-testing` - Performance testing with Playwright
47
+ - [ ] `playwright-visual-testing` - Visual regression testing
48
+ - [ ] `playwright-accessibility-testing` - Accessibility test automation
49
+ - [ ] `playwright-network-testing` - Network simulation & testing
50
+ - [ ] `playwright-mobile-testing` - Mobile browser testing
51
+ - [ ] `playwright-templates` - Pre-built test templates (55 templates)
52
+
53
+ ### Self-Improving Agent (7 skills)
54
+
55
+ - [ ] `auto-memory-curation` - Auto-update and manage memory
56
+ - [ ] `pattern-promotion` - Identify and promote patterns
57
+ - [ ] `skill-extraction` - Extract new skills from experiences
58
+ - [ ] `memory-health-monitor` - Monitor memory performance
59
+ - [ ] `auto-optimization` - Self-optimize execution patterns
60
+ - [ ] `feedback-integration` - Learn from user feedback
61
+ - [ ] `self-evaluation` - Evaluate own performance
62
+
63
+ ### Engineering - POWERFUL Tier (25 skills)
64
+
65
+ - [ ] `agent-designer` - Multi-agent orchestration, tool schemas, evaluation
66
+ - [ ] `agent-workflow-designer` - Sequential, parallel, router, orchestrator patterns
67
+ - [ ] `rag-architect` - RAG pipeline builder, chunking, retrieval
68
+ - [ ] `database-designer` - Schema analysis, ERD generation, optimization
69
+ - [ ] `database-schema-designer` - Requirements → migrations, types, RLS
70
+ - [ ] `migration-architect` - Migration planning, compatibility, rollback
71
+ - [ ] `skill-security-auditor` - Security gate before skill installation
72
+ - [ ] `ci-cd-pipeline-builder` - Analyze stack → generate GitHub Actions
73
+ - [ ] `mcp-server-builder` - Build MCP servers from OpenAPI
74
+ - [ ] `pr-review-expert` - Blast radius, security scan, coverage
75
+ - [ ] `api-design-reviewer` - REST API linting, breaking change detection
76
+ - [ ] `api-test-suite-builder` - Scan API routes → generate tests
77
+ - [ ] `dependency-auditor` - License compliance, upgrade planner
78
+ - [ ] `release-manager` - Changelog, version bump, readiness
79
+ - [ ] `observability-designer` - SLO designer, alerting, dashboards
80
+ - [ ] `performance-profiler` - Node/Python/Go profiling
81
+ - [ ] `monorepo-navigator` - Turborepo/Nx/pnpm management
82
+ - [ ] `changelog-generator` - Conventional commits → structured changelog
83
+ - [ ] `codebase-onboarding` - Auto-generate onboarding docs
84
+ - [ ] `runbook-generator` - Codebase → operational runbooks
85
+ - [ ] `git-worktree-manager` - Parallel dev with port isolation
86
+ - [ ] `env-secrets-manager` - .env management, leak detection
87
+ - [ ] `incident-commander` - Incident response, severity, PIR
88
+ - [ ] `tech-debt-tracker` - Debt scanner, prioritizer, dashboard
89
+ - [ ] `interview-system-designer` - Interview loop, calibration
90
+
91
+ ### Product Management (12 skills)
92
+
93
+ - [ ] `product-manager` - PM workflows and strategies
94
+ - [ ] `agile-product-owner` - Agile/Scrum prioritization
95
+ - [ ] `product-strategist` - Market strategy, positioning
96
+ - [ ] `ux-researcher` - User research and testing
97
+ - [ ] `ui-designer` - UI design patterns and systems
98
+ - [ ] `landing-page-builder` - High-converting landing pages
99
+ - [ ] `saas-scaffolder` - SaaS product templates
100
+ - [ ] `product-analytics` - Analytics setup and analysis
101
+ - [ ] `growth-hacker` - Growth experiment design
102
+ - [ ] `discovery-facilitator` - User discovery interviews
103
+ - [ ] `roadmap-communicator` - Roadmap visualization
104
+ - [ ] `feature-prioritizer` - Prioritization frameworks
105
+
106
+ ### Marketing (43 skills) - 7 Specialized Pods
107
+
108
+ **Content Pods (8 skills)**:
109
+
110
+ - [ ] `content-strategy` - Content planning and calendar
111
+ - [ ] `blog-post-writer` - SEO-optimized blog posts
112
+ - [ ] `copywriter` - High-converting copy
113
+ - [ ] `email-marketer` - Email campaigns and sequences
114
+ - [ ] `social-content-creator` - Social media content
115
+ - [ ] `video-scriptwriter` - Video script creation
116
+ - [ ] `podcast-producer` - Podcast planning and scripts
117
+ - [ ] `content-calendar-planner` - 12-month content planning
118
+
119
+ **SEO Pod (5 skills)**:
120
+
121
+ - [ ] `seo-auditor` - Technical SEO analysis
122
+ - [ ] `keyword-researcher` - Keyword research and clustering
123
+ - [ ] `seo-copywriter` - SEO-optimized content
124
+ - [ ] `backlink-strategist` - Link building strategy
125
+ - [ ] `seo-monitoring` - Rankings, traffic, competitor analysis
126
+
127
+ **CRO Pod (6 skills)**:
128
+
129
+ - [ ] `conversion-optimizer` - CRO testing and strategies
130
+ - [ ] `funnel-analyzer` - Conversion funnel analysis
131
+ - [ ] `ab-test-designer` - A/B test planning
132
+ - [ ] `landing-page-optimizer` - CRO for landing pages
133
+ - [ ] `form-optimizer` - Form conversion optimization
134
+ - [ ] `ux-copywriter` - CRO copywriting
135
+
136
+ **Channels Pod (6 skills)**:
137
+
138
+ - [ ] `linkedin-strategist` - LinkedIn marketing
139
+ - [ ] `twitter-growth-strategist` - Twitter/X growth
140
+ - [ ] `tiktok-content-creator` - TikTok strategy
141
+ - [ ] `youtube-strategist` - YouTube channel growth
142
+ - [ ] `reddit-marketer` - Reddit marketing strategy
143
+ - [ ] `slack-community-manager` - Community management
144
+
145
+ **Growth Pod (4 skills)**:
146
+
147
+ - [ ] `growth-marketer` - Growth experiment framework
148
+ - [ ] `viral-loop-designer` - Viral mechanics
149
+ - [ ] `referral-program-builder` - Referral systems
150
+ - [ ] `growth-metrics-analyzer` - Growth KPI tracking
151
+
152
+ **Intelligence Pod (4 skills)**:
153
+
154
+ - [ ] `market-intelligence` - Market research
155
+ - [ ] `competitor-analyzer` - Competitive analysis
156
+ - [ ] `brand-analyzer` - Brand perception and positioning
157
+ - [ ] `trend-forecaster` - Trend identification
158
+
159
+ **Sales Pod (2 skills)**:
160
+
161
+ - [ ] `sales-email-writer` - Sales email sequences
162
+ - [ ] `sales-enablement` - Sales collateral and materials
163
+
164
+ **Marketing Orchestrator**:
165
+
166
+ - [ ] `marketing-orchestration-router` - Multi-channel campaign coordination
167
+
168
+ ### Project Management (6 skills)
169
+
170
+ - [ ] `senior-pm` - PM leadership and strategy
171
+ - [ ] `scrum-master` - Scrum ceremonies and practices
172
+ - [ ] `jira-expert` - Jira configuration and automation
173
+ - [ ] `confluence-expert` - Confluence wiki and documentation
174
+ - [ ] `atlassian-admin` - Atlassian instance management
175
+ - [ ] `pm-templates` - PM templates and frameworks
176
+
177
+ ### Regulatory & Quality Management (12 skills)
178
+
179
+ - [ ] `iso-13485-specialist` - Medical device quality standards
180
+ - [ ] `mdr-2017-745-specialist` - EU Medical Device Regulation
181
+ - [ ] `fda-compliance` - FDA rules and regulations
182
+ - [ ] `iso-27001-expert` - Information security management
183
+ - [ ] `gdpr-compliance` - GDPR compliance and privacy
184
+ - [ ] `capa-specialist` - Corrective/Preventive Actions
185
+ - [ ] `risk-management` - Risk assessment and mitigation
186
+ - [ ] `sop-writer` - Standard Operating Procedures
187
+ - [ ] `audit-planner` - Internal/external audit planning
188
+ - [ ] `compliance-tracker` - Compliance monitoring
189
+ - [ ] `documentation-manager` - Technical documentation
190
+ - [ ] `quality-assurance-lead` - QA strategy and processes
191
+
192
+ ### C-Suite Advisory (28 skills)
193
+
194
+ **Executive Roles (10)**:
195
+
196
+ - [ ] `ceo-advisor` - CEO strategic guidance
197
+ - [ ] `cto-advisor` - CTO technology strategy
198
+ - [ ] `cfo-advisor` - CFO financial strategy
199
+ - [ ] `cpo-advisor` - CPO product strategy
200
+ - [ ] `cmo-advisor` - CMO marketing strategy
201
+ - [ ] `coo-advisor` - COO operations strategy
202
+ - [ ] `general-counsel-advisor` - Legal and compliance
203
+ - [ ] `ciso-advisor` - CISO security and privacy
204
+ - [ ] `chro-advisor` - CHRO people operations
205
+ - [ ] `board-advisor` - Board governance advice
206
+
207
+ **Cross-Executive Coordination**:
208
+
209
+ - [ ] `executive-alignment` - Cross-C-suite strategy
210
+ - [ ] `board-meeting-facilitator` - Board governance
211
+ - [ ] `crisis-management` - Crisis response and comms
212
+
213
+ **Organizational Culture**:
214
+
215
+ - [ ] `culture-builder` - Organizational culture
216
+ - [ ] `diversity-equity-inclusion` - DEI initiatives
217
+ - [ ] `change-management-leader` - Organizational change
218
+ - [ ] `talent-development` - Executive development
219
+
220
+ **Full C-Suite Orchestration (10+ additional specialized advisors)**:
221
+
222
+ - [ ] `startup-cto-persona` - Startup technical strategy
223
+ - [ ] `growth-marketer-persona` - Growth marketing lead
224
+ - [ ] `solo-founder-persona` - Multi-role founder guidance
225
+
226
+ ### Business & Growth (4 skills)
227
+
228
+ - [ ] `customer-success-manager` - CS operations and strategy
229
+ - [ ] `sales-engineer` - Sales engineering and demos
230
+ - [ ] `revenue-operations` - RevOps processes
231
+ - [ ] `contracts-proposals-writer` - Contract and proposal creation
232
+
233
+ ### Finance (2 skills)
234
+
235
+ - [ ] `financial-analyst` - DCF, budgeting, forecasting
236
+ - [ ] `saas-metrics-coach` - ARR, MRR, churn, LTV, CAC
237
+
238
+ ### Associated Assets (254 Python CLI Tools)
239
+
240
+ - [ ] Extract all scripts from `/scripts/` directories
241
+ - [ ] Verify stdlib-only dependencies
242
+ - [ ] Create tool catalog with usage docs
243
+ - [ ] Include in each skill's `/scripts/` folder
244
+
245
+ ---
246
+
247
+ ## ✅ Secondary Source: anthropics/skills (15+ skills)
248
+
249
+ ### Document Skills
250
+
251
+ - [ ] `docx-editor` - Create/edit Word documents (source-available)
252
+ - [ ] `pdf-toolkit` - Extract, create, merge PDFs (source-available)
253
+ - [ ] `pptx-builder` - Create/edit PowerPoint (source-available)
254
+ - [ ] `xlsx-analyzer` - Create/edit Excel sheets (source-available)
255
+
256
+ ### Design & Creative
257
+
258
+ - [ ] `algorithmic-art-generator` - p5.js generative art
259
+ - [ ] `canvas-design` - Visual design in PNG/PDF
260
+ - [ ] `slack-gif-creator` - Animated GIF creation
261
+
262
+ ### Development
263
+
264
+ - [ ] `frontend-design-anti-slop` - Avoid "AI design slop"
265
+ - [ ] `web-artifacts-builder` - React/Tailwind/shadcn artifacts
266
+ - [ ] `mcp-server-generator` - Build MCP servers
267
+ - [ ] `webapp-testing` - Playwright web testing
268
+ - [ ] `claude-api-expert` - Claude API integration
269
+
270
+ ### Communication
271
+
272
+ - [ ] `brand-guidelines-enforcer` - Apply brand standards
273
+ - [ ] `internal-communications` - Status reports, newsletters
274
+
275
+ ### Meta
276
+
277
+ - [ ] `skill-creator` - Interactive skill builder
278
+
279
+ ---
280
+
281
+ ## ✅ Tertiary Source: nextlevelbuilder/ui-ux-pro-max-skill (1 Skill + Assets)
282
+
283
+ ### Core Skill
284
+
285
+ - [ ] `design-system-generator` - AI-powered design system generation
286
+
287
+ ### Reference Assets (to embed in skill)
288
+
289
+ - [ ] `styles.csv`: 67 UI style definitions
290
+ - [ ] `colors.csv`: 161 industry color palettes
291
+ - [ ] `typography.csv`: 57 font pairings
292
+ - [ ] `charts.csv`: 25 chart type recommendations
293
+ - [ ] `stacks.csv`: 13 tech stack configurations
294
+ - [ ] `ux-guidelines.csv`: 99 UX guidelines
295
+ - [ ] `industries.json`: 161 industry-specific reasoning rules
296
+
297
+ ---
298
+
299
+ ## ✅ Community Source: obra/superpowers (20+ skills)
300
+
301
+ - [ ] (Acquire 10-15 highest-quality skills)
302
+ - [ ] `brainstorm` - Brainstorming and ideation
303
+ - [ ] `write-plan` - Planning and strategy
304
+ - [ ] `execute-plan` - Implementation execution
305
+ - [ ] (Additional battle-tested skills as identified)
306
+
307
+ ---
308
+
309
+ ## ✅ Security & Specialized: Other Community Skills
310
+
311
+ - [ ] `Trail of Bits Security Skills` - CodeQL, Semgrep, vulnerability detection
312
+ - [ ] `iOS Simulator Skill` - iOS app testing
313
+ - [ ] `ffuf Security Fuzzing` - Web security testing
314
+ - [ ] `Playwright Advanced` - Complex browser automation
315
+ - [ ] `D3.js Visualizations` - Data visualization
316
+ - [ ] `Loki Mode` - 37-agent startup orchestration system
317
+ - [ ] `Frontend Slides` - HTML presentation creation
318
+
319
+ ---
320
+
321
+ ## 🔄 Deduplication & Conflict Resolution Matrix
322
+
323
+ | Leeway Existing | Source Skill | Decision | Action |
324
+ | -------------------------- | -------------------------------------- | -------- | ---------------------------- |
325
+ | ci-cd-pipeline-generator | ci-cd-pipeline-builder (POWERFUL) | REPLACE | Use source, archive original |
326
+ | code-generation (3 skills) | engineering:code-generation (multiple) | MERGE | Combine and add depth |
327
+ | security-auditor (basic) | skill-security-auditor (POWERFUL) | REPLACE | Use POWERFUL tier version |
328
+ | testing-suite | playwright-test-generator | MERGE | Integrate Playwright |
329
+ | database-design | database-designer (POWERFUL) | ENHANCE | Add POWERFUL capabilities |
330
+
331
+ ---
332
+
333
+ ## 📊 Acquisition Summary
334
+
335
+ | Source | Target | Acquired | Status |
336
+ | -------------------- | ----------- | -------- | -------------- |
337
+ | claude-skills | 177 | 0 | ⏳ PENDING |
338
+ | anthropic-skills | 15 | 0 | ⏳ PENDING |
339
+ | ui-ux-pro-max | 1 (+assets) | 0 | ⏳ PENDING |
340
+ | obra-superpowers | 15 | 0 | ⏳ PENDING |
341
+ | community-individual | 15 | 0 | ⏳ PENDING |
342
+ | **TOTAL** | **250+** | **0** | ⏳ **PENDING** |
343
+
344
+ ---
345
+
346
+ ## 🎯 Next Actions
347
+
348
+ ### Phase 1: Preparation
349
+
350
+ - [ ] Clone all 5 source repositories into `/sources/`
351
+ - [ ] Create category taxonomy document
352
+ - [ ] Prepare skill-integration-toolkit.py (DONE ✅)
353
+ - [ ] Set up deduplication database
354
+
355
+ ### Phase 2: Batch 1 - Core Engineering (Week 1)
356
+
357
+ - [ ] Normalize 24 core engineering skills
358
+ - [ ] Extract 50+ related Python tools
359
+ - [ ] Build engineering skill registry
360
+ - [ ] Test with Agent Lee
361
+
362
+ ### Phase 3: Batch 2 - POWERFUL Tier & Meta (Week 2)
363
+
364
+ - [ ] Normalize 25 POWERFUL skills
365
+ - [ ] 12 Playwright skills
366
+ - [ ] Agent self-improvement (7 skills)
367
+ - [ ] Create orchestration protocol
368
+
369
+ ### Phase 4: Batch 3 - Product, Marketing, Business (Week 2-3)
370
+
371
+ - [ ] 43 marketing skills (7 pods)
372
+ - [ ] 12 product skills
373
+ - [ ] 10 business skills
374
+ - [ ] 28 C-suite skills
375
+ - [ ] Extract 100+ marketing tools
376
+
377
+ ### Phase 5: Batch 4 - Enterprise & Compliance (Week 3)
378
+
379
+ - [ ] 12 regulatory/quality skills
380
+ - [ ] 6 project management skills
381
+ - [ ] Anthropic document skills
382
+ - [ ] Design system generator + assets
383
+
384
+ ### Phase 6: Batch 5 - Community & Integration (Week 4)
385
+
386
+ - [ ] 20+ superpowers skills
387
+ - [ ] Security & specialized skills
388
+ - [ ] Final deduplication pass
389
+ - [ ] Master index generation
390
+
391
+ ### Phase 7: Testing & Deployment (Week 5)
392
+
393
+ - [ ] Verify all 250+ skills
394
+ - [ ] Test with Agent Lee via MCP
395
+ - [ ] Generate documentation
396
+ - [ ] Production deployment
397
+
398
+ ---
399
+
400
+ **Status**: READY FOR ACQUISITION 🚀
401
+ **Estimated Completion**: 5 weeks from Phase 1 start
402
+ **Final Skill Count**: 250+
403
+ **Compliance**: 100% Leeway Standards
404
+