@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.
- package/.leeway/config.json +133 -0
- package/LICENSE +21 -0
- package/LeeWay-Standards/LICENSE +21 -0
- package/LeeWay-Standards/README.md +324 -0
- package/LeeWay-Standards/examples/NexusButton.tsx +90 -0
- package/LeeWay-Standards/examples/example-agent.js +89 -0
- package/LeeWay-Standards/package.json +61 -0
- package/LeeWay-Standards/schemas/leeway-config.schema.json +81 -0
- package/LeeWay-Standards/schemas/leeway-header.schema.json +63 -0
- package/LeeWay-Standards/src/agents/discovery/architecture-map-agent.js +134 -0
- package/LeeWay-Standards/src/agents/discovery/docs-agent.js +126 -0
- package/LeeWay-Standards/src/agents/discovery/explain-agent.js +95 -0
- package/LeeWay-Standards/src/agents/discovery/intent-registry-agent.js +119 -0
- package/LeeWay-Standards/src/agents/discovery/schema-agent.js +116 -0
- package/LeeWay-Standards/src/agents/discovery/sitemap-agent.js +88 -0
- package/LeeWay-Standards/src/agents/governance/align-agent.js +155 -0
- package/LeeWay-Standards/src/agents/governance/assess-agent.js +161 -0
- package/LeeWay-Standards/src/agents/governance/audit-agent.js +185 -0
- package/LeeWay-Standards/src/agents/integrity/circular-dependency-agent.js +88 -0
- package/LeeWay-Standards/src/agents/integrity/dependency-graph-agent.js +107 -0
- package/LeeWay-Standards/src/agents/integrity/duplicate-logic-agent.js +108 -0
- package/LeeWay-Standards/src/agents/integrity/import-agent.js +83 -0
- package/LeeWay-Standards/src/agents/integrity/module-policy-agent.js +94 -0
- package/LeeWay-Standards/src/agents/integrity/refactor-scan-agent.js +113 -0
- package/LeeWay-Standards/src/agents/integrity/syntax-agent.js +84 -0
- package/LeeWay-Standards/src/agents/mcp/endpoint-agent.js +106 -0
- package/LeeWay-Standards/src/agents/mcp/env-agent.js +111 -0
- package/LeeWay-Standards/src/agents/mcp/health-agent-lite.js +119 -0
- package/LeeWay-Standards/src/agents/mcp/manifest-agent.js +87 -0
- package/LeeWay-Standards/src/agents/mcp/port-agent.js +125 -0
- package/LeeWay-Standards/src/agents/mcp/process-agent.js +124 -0
- package/LeeWay-Standards/src/agents/mcp/runtime-agent.js +108 -0
- package/LeeWay-Standards/src/agents/mcp/transport-agent.js +78 -0
- package/LeeWay-Standards/src/agents/orchestration/doctor-agent.js +149 -0
- package/LeeWay-Standards/src/agents/orchestration/memory-agent-lite.js +125 -0
- package/LeeWay-Standards/src/agents/orchestration/router-agent.js +110 -0
- package/LeeWay-Standards/src/agents/security/permission-agent.js +98 -0
- package/LeeWay-Standards/src/agents/security/policy-agent.js +100 -0
- package/LeeWay-Standards/src/agents/security/privacy-agent.js +83 -0
- package/LeeWay-Standards/src/agents/security/prompt-security-agent.js +103 -0
- package/LeeWay-Standards/src/agents/security/secret-scan-agent.js +108 -0
- package/LeeWay-Standards/src/agents/security/tool-access-agent.js +105 -0
- package/LeeWay-Standards/src/agents/standards/authority-agent.js +114 -0
- package/LeeWay-Standards/src/agents/standards/discovery-pipeline-agent.js +91 -0
- package/LeeWay-Standards/src/agents/standards/header-agent.js +120 -0
- package/LeeWay-Standards/src/agents/standards/placement-agent.js +96 -0
- package/LeeWay-Standards/src/agents/standards/region-agent.js +99 -0
- package/LeeWay-Standards/src/agents/standards/registry-agent.js +153 -0
- package/LeeWay-Standards/src/agents/standards/tag-agent.js +111 -0
- package/LeeWay-Standards/src/cli/leeway.js +225 -0
- package/LeeWay-Standards/src/core/compliance-scorer.js +168 -0
- package/LeeWay-Standards/src/core/compliance-scorer.test.js +121 -0
- package/LeeWay-Standards/src/core/header-parser.js +207 -0
- package/LeeWay-Standards/src/core/header-parser.test.js +198 -0
- package/LeeWay-Standards/src/core/region-classifier.js +137 -0
- package/LeeWay-Standards/src/core/region-classifier.test.js +100 -0
- package/LeeWay-Standards/src/core/tag-validator.js +139 -0
- package/LeeWay-Standards/src/core/tag-validator.test.js +109 -0
- package/LeeWay-Standards/src/index.js +83 -0
- package/README.md +217 -0
- package/agent-config.yaml +456 -0
- package/agentbage.png.png +0 -0
- package/bin/leeway-skills-badge.js +52 -0
- package/bin/leeway-skills-mcp.js +48 -0
- package/bin/leeway-skills.js +160 -0
- package/bin/leeway-standards.js +49 -0
- package/config/.skillsignore +63 -0
- package/config/skills-config.json +70 -0
- package/documents/AGENT_LEARNING_REFERENCE.md +329 -0
- package/documents/AGENT_LEE_INTEGRATION.md +534 -0
- package/documents/COMPLETE_SYSTEM_OVERVIEW.md +502 -0
- package/documents/COMPREHENSIVE_SKILL_INTEGRATION_PLAN.md +644 -0
- package/documents/DIRECTORY_MAP.md +323 -0
- package/documents/EXTENDING.md +514 -0
- package/documents/FILE_DIRECTORY_GUIDE.md +427 -0
- package/documents/LEEWAY_BADGE_INTEGRATION.md +76 -0
- package/documents/LEEWAY_IMPLEMENTATION_SUMMARY.md +384 -0
- package/documents/LEEWAY_INTEGRATION_GUIDE.md +414 -0
- package/documents/LEEWAY_NPM_SDK.md +66 -0
- package/documents/LEEWAY_QUICK_START.md +288 -0
- package/documents/LEEWAY_SKILLS_BRANDING.md +375 -0
- package/documents/LEEWAY_SKILLS_MCP_SUMMARY.md +593 -0
- package/documents/LEEWAY_STANDARDS_COMPLIANCE.md +361 -0
- package/documents/LEEWAY_UNIFIED_ARCHITECTURE.md +473 -0
- package/documents/LEEWAY_WORKFLOWS_QUICK_REFERENCE.md +307 -0
- package/documents/LEEWAY_WORKFLOWS_STRATEGIC_PLAN.md +515 -0
- package/documents/LIFELONG_LEARNING_LAYER.md +478 -0
- package/documents/MCP_ARCHITECTURE.md +683 -0
- package/documents/QUICK_REFERENCE.md +301 -0
- package/documents/SETUP.md +325 -0
- package/documents/SETUP_SUMMARY.md +413 -0
- package/documents/SKILL_ACQUISITION_EXECUTIVE_SUMMARY.md +373 -0
- package/documents/SKILL_ACQUISITION_IMPLEMENTATION.md +692 -0
- package/documents/SKILL_ACQUISITION_MANIFEST.md +404 -0
- package/documents/SKILL_ACQUISITION_QUICK_REFERENCE.md +349 -0
- package/documents/SKILL_WORKFLOW_COMPOSITION_MATRIX.md +537 -0
- package/documents/STRUCTURE.md +382 -0
- package/documents/SYSTEM_TRANSFORMATION_SUMMARY.md +560 -0
- package/documents/USAGE.md +390 -0
- package/documents/WORKFLOW_ACQUISITION_MANIFEST.md +576 -0
- package/documents/aiskills.txt +460 -0
- package/mcp-server/README.md +697 -0
- package/mcp-server/dist/badge-proof.d.ts +66 -0
- package/mcp-server/dist/badge-proof.d.ts.map +1 -0
- package/mcp-server/dist/badge-proof.js +324 -0
- package/mcp-server/dist/badge-proof.js.map +1 -0
- package/mcp-server/dist/index.d.ts +64 -0
- package/mcp-server/dist/index.d.ts.map +1 -0
- package/mcp-server/dist/index.js +263 -0
- package/mcp-server/dist/index.js.map +1 -0
- package/mcp-server/dist/install-badge-proof.d.ts +3 -0
- package/mcp-server/dist/install-badge-proof.d.ts.map +1 -0
- package/mcp-server/dist/install-badge-proof.js +109 -0
- package/mcp-server/dist/install-badge-proof.js.map +1 -0
- package/mcp-server/package.json +43 -0
- package/mcp-server/src/badge-proof.ts +469 -0
- package/mcp-server/src/index.ts +355 -0
- package/mcp-server/src/install-badge-proof.ts +132 -0
- package/mcp-server/tsconfig.json +22 -0
- package/package.json +84 -0
- package/scripts/init-leeway.js +217 -0
- package/scripts/leeway-agents/compliance-monitor.js +374 -0
- package/scripts/leeway-agents/header-injector.js +321 -0
- package/scripts/skill-integration-toolkit.py +319 -0
- package/scripts/skills-registry.json +1117 -0
- package/scripts/sync-skills.ps1 +275 -0
- package/scripts/verify-leeway-setup.js +249 -0
- package/scripts/workflow-integration-toolkit.py +522 -0
- package/sdk/application-installer.js +92 -0
- package/sdk/index.js +43 -0
- package/sdk/paths.js +167 -0
- package/skills/agent-autonomy/autonomous-conductor/SKILL.md +206 -0
- package/skills/agent-autonomy/full-stack-delivery/SKILL.md +206 -0
- package/skills/agent-orchestration/multi-agent-orchestration/SKILL.md +68 -0
- package/skills/agent-patterns/agent-design-patterns/SKILL.md +70 -0
- package/skills/ai-ml/llm-prompting/SKILL.md +71 -0
- package/skills/ai-ml/ml-model-development/SKILL.md +67 -0
- package/skills/ai-ml/multimodal-systems/SKILL.md +71 -0
- package/skills/ai-ml/retrieval-generation-fine-tuning/SKILL.md +71 -0
- package/skills/architecture/system-design/SKILL.md +67 -0
- package/skills/code-analysis/refactoring/SKILL.md +64 -0
- package/skills/code-analysis/security-vulnerability-scanning/SKILL.md +71 -0
- package/skills/code-analysis/static-analysis/SKILL.md +64 -0
- package/skills/code-generation/full-stack-application/SKILL.md +70 -0
- package/skills/code-generation/microservices-architecture/SKILL.md +71 -0
- package/skills/code-generation/python-codegen/SKILL.md +64 -0
- package/skills/code-generation/typescript-codegen/SKILL.md +64 -0
- package/skills/data-analysis/advanced-analytics/SKILL.md +71 -0
- package/skills/data-analysis/pandas-analysis/SKILL.md +66 -0
- package/skills/database-design/database-design-optimization/SKILL.md +70 -0
- package/skills/debugging/javascript-debugging/SKILL.md +67 -0
- package/skills/debugging/python-debugging/SKILL.md +67 -0
- package/skills/devops/dockerfile-creation/SKILL.md +64 -0
- package/skills/devops/kubernetes-deployment/SKILL.md +65 -0
- package/skills/documentation/api-documentation/SKILL.md +67 -0
- package/skills/error-handling/resilience-patterns/SKILL.md +70 -0
- package/skills/git-workflow/git-collaboration/SKILL.md +67 -0
- package/skills/infrastructure/cicd-pipelines/SKILL.md +70 -0
- package/skills/infrastructure/infrastructure-as-code/SKILL.md +70 -0
- package/skills/observability/monitoring-and-observability/SKILL.md +70 -0
- package/skills/performance-optimization/performance-engineering/SKILL.md +70 -0
- package/skills/prompt-optimization/prompt-engineering-advanced/SKILL.md +70 -0
- package/skills/quality-assurance/deployment-validator/SKILL.md +382 -0
- package/skills/quality-assurance/web-security-sweep/SKILL.md +320 -0
- package/skills/rag-knowledge/rag-systems/SKILL.md +70 -0
- package/skills/research/knowledge-synthesis/SKILL.md +71 -0
- package/skills/security/authentication-authorization/SKILL.md +71 -0
- package/skills/security/code-security/SKILL.md +66 -0
- package/skills/security/secure-architecture/SKILL.md +71 -0
- package/skills/self-optimization/dev-loop-optimizer/SKILL.md +344 -0
- package/skills/self-optimization/memory-learning/SKILL.md +335 -0
- package/skills/self-optimization/runtime-self-profiling/SKILL.md +250 -0
- package/skills/testing/advanced-testing-strategies/SKILL.md +71 -0
- package/skills/testing/integration-testing/SKILL.md +66 -0
- package/skills/testing/load-testing-capacity/SKILL.md +71 -0
- package/skills/testing/unit-testing/SKILL.md +66 -0
- package/skills/tool-integration/custom-tool-creation/SKILL.md +70 -0
- package/skills/web-development/advanced-frontend-patterns/SKILL.md +71 -0
- package/skills/web-development/api-design/SKILL.md +71 -0
- package/skills/web-development/css-styling/SKILL.md +67 -0
- package/skills/web-development/react-development/SKILL.md +79 -0
- package/skills/workflow-composition/workflow-orchestration/SKILL.md +70 -0
|
@@ -0,0 +1,644 @@
|
|
|
1
|
+
# 🎯 Comprehensive Skill Integration Plan
|
|
2
|
+
|
|
3
|
+
## Total Unified Skill Acquisition Strategy
|
|
4
|
+
|
|
5
|
+
**Mission**: Merge 100% of world-class skills from 5+ elite repositories into Leeway Skills
|
|
6
|
+
**Target**: 250+ unified, production-ready skills
|
|
7
|
+
**Standard**: Leeway Standards 1.0.0 compliance + zero duplication
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
|
|
11
|
+
## 📊 Skill Repositories & Acquisition Targets
|
|
12
|
+
|
|
13
|
+
### 1. **alirezarezvani/claude-skills** ⭐ PRIMARY (177+ skills)
|
|
14
|
+
|
|
15
|
+
**Status**: 4,400+ GitHub stars | Production-proven | MIT License
|
|
16
|
+
|
|
17
|
+
#### Domain Breakdown (ACQUIRE ALL 177):
|
|
18
|
+
|
|
19
|
+
| Domain | Qty | Skills | Priority |
|
|
20
|
+
| -------------------------- | --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------- |
|
|
21
|
+
| **Engineering - Core** | 24 | Architecture, Frontend, Backend, FullStack, QA, DevOps, SecOps, AI/ML, Data, Playwright, Self-improving Agent, Google Workspace | 🔴 CRITICAL |
|
|
22
|
+
| **Playwright Pro** | 12 | Test generation, Flaky fix, Cypress/Selenium migration, TestRail, BrowserStack | 🔴 CRITICAL |
|
|
23
|
+
| **Self-Improving Agent** | 7 | Auto-memory, Pattern promotion, Skill extraction, Memory health | 🟡 HIGH |
|
|
24
|
+
| **Engineering - POWERFUL** | 25 | Agent designer, RAG architect, Database designer, CI/CD builder, Security auditor, MCP builder, PR reviewer, API designer, Test suite builder, Dependency auditor, Release manager, Observability, Performance profiler, Monorepo navigator, Changelog, Onboarding docs, Runbook, Git worktree, Env secrets, Incident commander, Tech debt tracker, Interview designer | 🔴 CRITICAL |
|
|
25
|
+
| **Product** | 12 | PM, Agile PO, Strategist, UX researcher, UI design, Landing page, SaaS scaffolder, Analytics, Experiment, Discovery, Roadmap | 🟡 HIGH |
|
|
26
|
+
| **Marketing** | 43 | Content pods (8), SEO (5), CRO (6), Channels (6), Growth (4), Intelligence (4), Sales (2) + router + orchestration | 🟡 HIGH |
|
|
27
|
+
| **Project Management** | 6 | Senior PM, Scrum master, Jira, Confluence, Atlassian admin, Templates | 🟡 HIGH |
|
|
28
|
+
| **Regulatory & QM** | 12 | ISO 13485, MDR 2017/745, FDA, ISO 27001, GDPR, CAPA, Risk management | 🟡 HIGH |
|
|
29
|
+
| **C-Level Advisory** | 28 | Full C-suite (10 roles) + board + culture | 🟡 HIGH |
|
|
30
|
+
| **Business & Growth** | 4 | Customer success, Sales engineer, Revenue ops, Contracts | 🟡 HIGH |
|
|
31
|
+
| **Finance** | 2 | Financial analyst, SaaS metrics coach | 🟡 HIGH |
|
|
32
|
+
|
|
33
|
+
**Key Assets**:
|
|
34
|
+
|
|
35
|
+
- ✅ 254 Python CLI tools (stdlib-only, zero dependencies)
|
|
36
|
+
- ✅ 3 pre-configured personas (Startup CTO, Growth Marketer, Solo Founder)
|
|
37
|
+
- ✅ Orchestration protocol for multi-skill composition
|
|
38
|
+
- ✅ Security auditor skill (validates other skills before use)
|
|
39
|
+
|
|
40
|
+
**Integration Approach**: Direct import with path normalization + Python tools extraction
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
44
|
+
### 2. **nextlevelbuilder/ui-ux-pro-max-skill** ⭐ SPECIALIZED (Design Reasoning)
|
|
45
|
+
|
|
46
|
+
**Status**: 41.9k GitHub stars | 4.1k forks | MIT License | Latest: v2.5.0
|
|
47
|
+
|
|
48
|
+
#### What It Provides (ACQUIRE ALL):
|
|
49
|
+
|
|
50
|
+
| Component | Qty | Details | Integration |
|
|
51
|
+
| ------------------ | --- | ------------------------------------------------------------------------------------------------------- | ------------------------------ |
|
|
52
|
+
| **UI Styles** | 67 | Glassmorphism, Claymorphism, Minimalism, Brutalism, Neumorphism, Bento Grid, Dark Mode, AI-Native, etc. | Embed in design-system skill |
|
|
53
|
+
| **Color Palettes** | 161 | Industry-specific (SaaS, Finance, Beauty, Healthcare, E-commerce, etc.) | Reference database |
|
|
54
|
+
| **Font Pairings** | 57 | Google Fonts curated combinations with mood matching | Reference database |
|
|
55
|
+
| **Chart Types** | 25 | Dashboard/analytics recommendations | Add to visualization skill |
|
|
56
|
+
| **Tech Stacks** | 13 | React, Next.js, Astro, Vue, Svelte, SwiftUI, React Native, Flutter, HTML+Tailwind, shadcn, Jetpack | Stack-aware generation |
|
|
57
|
+
| **UX Guidelines** | 99 | Best practices, anti-patterns, accessibility | Create unified guideline skill |
|
|
58
|
+
| **Industry Rules** | 161 | Decision logic for each industry type | AI reasoning engine |
|
|
59
|
+
|
|
60
|
+
**Key Assets**:
|
|
61
|
+
|
|
62
|
+
- ✅ Design System Generator (AI-powered reasoning engine)
|
|
63
|
+
- ✅ Python search.py script (BM25 ranking + reasoning)
|
|
64
|
+
- ✅ CLI builder for integration
|
|
65
|
+
- ✅ Master + Override pattern for hierarchical design system
|
|
66
|
+
|
|
67
|
+
**Integration Approach**: Extract design-system generator as standalone skill + reference databases
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
### 3. **anthropics/skills** ⭐ OFFICIAL (Anthropic Reference)
|
|
72
|
+
|
|
73
|
+
**Status**: 94.1k GitHub stars | Official | Apache 2.0 + Source-available
|
|
74
|
+
|
|
75
|
+
#### Canonical Skills (ACQUIRE ALL):
|
|
76
|
+
|
|
77
|
+
| Category | Skills | Details |
|
|
78
|
+
| --------------------- | ------ | ------------------------------------------------------------------------------------------------------ |
|
|
79
|
+
| **Document Skills** | 4 | docx, pdf, pptx, xlsx creation/editing/analysis |
|
|
80
|
+
| **Design & Creative** | 3 | Algorithmic art (p5.js), Canvas design, Slack GIF creator |
|
|
81
|
+
| **Development** | 6 | Frontend design (anti-"AI slop"), Web artifacts builder, MCP builder, Webapp testing, Claude API skill |
|
|
82
|
+
| **Communication** | 2 | Brand guidelines, Internal comms |
|
|
83
|
+
| **Skill Creation** | 1 | Interactive skill creator (Q&A) |
|
|
84
|
+
|
|
85
|
+
**Key Assets**:
|
|
86
|
+
|
|
87
|
+
- ✅ Source-available document skills (most complex/production patterns)
|
|
88
|
+
- ✅ Frontend design anti-pattern guide
|
|
89
|
+
- ✅ MCP server builder skill
|
|
90
|
+
- ✅ Web app testing with Playwright
|
|
91
|
+
|
|
92
|
+
**Integration Approach**: Direct import + documentation preservation
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
### 4. **awesome-claude-skills** ⭐ CURATED METALIST (Discovery Index)
|
|
97
|
+
|
|
98
|
+
**Status**: 8.9k stars | Community-curated | MIT License
|
|
99
|
+
|
|
100
|
+
#### Skills Catalog (ACQUIRE LINKS):
|
|
101
|
+
|
|
102
|
+
From curated list, acquire:
|
|
103
|
+
|
|
104
|
+
- **obra/superpowers** - 20+ battle-tested skills + commands
|
|
105
|
+
- **obra/superpowers-lab** - Experimental advanced patterns
|
|
106
|
+
- **ios-simulator-skill** - iOS automation
|
|
107
|
+
- **ffuf-web-fuzzing** - Security testing
|
|
108
|
+
- **playwright-skill** - General browser automation
|
|
109
|
+
- **claude-d3js-skill** - D3.js visualizations
|
|
110
|
+
- **claude-scientific-skills** - Scientific libraries
|
|
111
|
+
- **web-asset-generator** - Icons, favicons, social images
|
|
112
|
+
- **loki-mode** - Multi-agent startup system (37 agents!)
|
|
113
|
+
- **Trail of Bits Security Skills** - CodeQL, Semgrep, variant analysis
|
|
114
|
+
- **frontend-slides** - HTML presentation creation
|
|
115
|
+
- **Expo Skills** - Expo app development
|
|
116
|
+
|
|
117
|
+
**Key Assets**:
|
|
118
|
+
|
|
119
|
+
- ✅ Community skill verification status
|
|
120
|
+
- ✅ Security skill auditor recommendations
|
|
121
|
+
- ✅ Multi-agent orchestration patterns
|
|
122
|
+
|
|
123
|
+
**Integration Approach**: Fetch, normalize, link to source repos
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
### 5. **openclaw/skills** (OpenClaw Ecosystem Archive)
|
|
128
|
+
|
|
129
|
+
**Status**: 2.9k stars | Archive from ClawHub | MIT License
|
|
130
|
+
|
|
131
|
+
Multiple specialized skills in Python/JavaScript for agentic workflows.
|
|
132
|
+
|
|
133
|
+
**Integration Approach**: Selective high-quality skills + avoid redundancy
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## 🎨 Unified Skill Mapping & Normalization
|
|
138
|
+
|
|
139
|
+
### Leeway Standard Skill Format
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
skills/
|
|
143
|
+
├── [CATEGORY]/
|
|
144
|
+
│ └── [SKILL_ID]/
|
|
145
|
+
│ ├── SKILL.md # Frontmatter + instructions (YAML + Markdown)
|
|
146
|
+
│ ├── README.md # Usage guide
|
|
147
|
+
│ ├── scripts/ # Python/Node.js tools
|
|
148
|
+
│ │ ├── *.py # Python tools (preferred)
|
|
149
|
+
│ │ └── *.js # Node.js tools (if needed)
|
|
150
|
+
│ ├── references/ # Templates, checklists, datasets
|
|
151
|
+
│ │ ├── *.md
|
|
152
|
+
│ │ ├── *.json
|
|
153
|
+
│ │ └── *.csv
|
|
154
|
+
│ ├── examples/ # Concrete usage examples
|
|
155
|
+
│ │ └── *.md
|
|
156
|
+
│ └── metadata.json # Machine-readable skill info
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
### YAML Frontmatter Standard (Leeway)
|
|
160
|
+
|
|
161
|
+
```yaml
|
|
162
|
+
---
|
|
163
|
+
id: skill-unique-id
|
|
164
|
+
name: "Human-Readable Skill Name"
|
|
165
|
+
version: "1.0.0"
|
|
166
|
+
category: "category-name"
|
|
167
|
+
subcategory: "subcategory-name" # optional
|
|
168
|
+
description: "Complete description of what this skill does and when to use it"
|
|
169
|
+
tags:
|
|
170
|
+
- tag1
|
|
171
|
+
- tag2
|
|
172
|
+
- tag3
|
|
173
|
+
keywords:
|
|
174
|
+
- keyword1
|
|
175
|
+
- keyword2
|
|
176
|
+
author: "Original Author | Leeway Standards "
|
|
177
|
+
source:
|
|
178
|
+
repo: "github-owner/repo-name"
|
|
179
|
+
url: "https://github.com/..."
|
|
180
|
+
license: "MIT | Apache-2.0 | Custom"
|
|
181
|
+
version: "v1.2.3"
|
|
182
|
+
source_mapping:
|
|
183
|
+
original_path: "path/in/source/repo"
|
|
184
|
+
acquired_date: "2026-03-15"
|
|
185
|
+
acquisition_status: "verified"
|
|
186
|
+
domain: "primary-domain"
|
|
187
|
+
tier: "core | advanced | specialized"
|
|
188
|
+
inputs:
|
|
189
|
+
- name: "input_name"
|
|
190
|
+
type: "string | object | array"
|
|
191
|
+
description: "What this input is for"
|
|
192
|
+
required: true
|
|
193
|
+
outputs:
|
|
194
|
+
- name: "output_name"
|
|
195
|
+
type: "string | object"
|
|
196
|
+
description: "What this output returns"
|
|
197
|
+
required_tools: []
|
|
198
|
+
dependencies: []
|
|
199
|
+
compatibility:
|
|
200
|
+
- claude
|
|
201
|
+
- claude-code
|
|
202
|
+
- agent-lee
|
|
203
|
+
- mcp-protocol
|
|
204
|
+
memory_usage: "low | medium | high"
|
|
205
|
+
execution_time: "fast | medium | slow"
|
|
206
|
+
compliance:
|
|
207
|
+
governance: "leeway-standards-1.0.0"
|
|
208
|
+
security_verified: true
|
|
209
|
+
no_secrets: true
|
|
210
|
+
headers_required: true
|
|
211
|
+
tags_required: true
|
|
212
|
+
---
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
---
|
|
216
|
+
|
|
217
|
+
## 📋 Comprehensive Skill Inventory & Deduplication Matrix
|
|
218
|
+
|
|
219
|
+
### Master Source Skills (Base Skills Not To Duplicate)
|
|
220
|
+
|
|
221
|
+
Current Leeway Skills (44 existing):
|
|
222
|
+
|
|
223
|
+
- **Code Generation** (3): typescript-codegen, python-codegen, fullstack-codegen
|
|
224
|
+
- **Agent Patterns** (3): autonomous-agents, multi-agent-orchestration, agent-loop-design
|
|
225
|
+
- **Analysis** (2): static-code-analysis, refactoring-assistant
|
|
226
|
+
- **ML/AI** (2): llm-prompt-engineering, ml-model-selector
|
|
227
|
+
- **Testing** (2): unit-test-generator, integration-test-suite-builder
|
|
228
|
+
- **DevOps** (2): docker-kubernetes-deploy, ci-cd-pipeline-generator
|
|
229
|
+
- **Database** (2): database-schema-designer, query-optimizer
|
|
230
|
+
- **And 20+ more** (28 more skills)
|
|
231
|
+
|
|
232
|
+
### New Skills To Acquire (177 from claude-skills)
|
|
233
|
+
|
|
234
|
+
**AVOID CONFLICTS**:
|
|
235
|
+
|
|
236
|
+
- `senior-architect` from claude-skills ≠ existing architecture skill (they complement - merge)
|
|
237
|
+
- `ci-cd-pipeline-builder` from claude-skills ≠ existing ci-cd-generator (claude version is more advanced - replace with POWERFUL tier)
|
|
238
|
+
- `rag-architect` is NEW - add directly
|
|
239
|
+
- `security-auditor` is NEW - add directly
|
|
240
|
+
- `mcp-server-builder` is NEW, but Leeway has MCP generator - merge both
|
|
241
|
+
|
|
242
|
+
### Strategy Matrix
|
|
243
|
+
|
|
244
|
+
```
|
|
245
|
+
┌────────────────────────────────────────────┐
|
|
246
|
+
│ SOURCE SKILL CHECK │
|
|
247
|
+
├────────────────────────────────────────────┤
|
|
248
|
+
│ │
|
|
249
|
+
│ 1. Does it already exist in Leeway? ─────┐│
|
|
250
|
+
│ ││
|
|
251
|
+
├─ YES ─────────────────────────────┐ ││
|
|
252
|
+
│ · Is source skill more advanced? │ ││
|
|
253
|
+
│ ├─ YES: Replace + preserve old │ ││
|
|
254
|
+
│ └─ NO: Keep Leeway + ignore │ ││
|
|
255
|
+
│ │ ││
|
|
256
|
+
├─ NO ──────────────────────────────┴──────┘│
|
|
257
|
+
│ · Does it complement an existing? │ │
|
|
258
|
+
│ ├─ YES: Merge/enhance existing │ │
|
|
259
|
+
│ └─ NO: Add as new skill │ │
|
|
260
|
+
│ │ │
|
|
261
|
+
│ 2. Add to source mapping index │ │
|
|
262
|
+
│ 3. Verify Leeway compliance │ │
|
|
263
|
+
│ 4. Test in agent execution │ │
|
|
264
|
+
│ │ │
|
|
265
|
+
└────────────────────────────────────────────┘
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
## 🔄 Integration Workflow (Step-by-Step)
|
|
271
|
+
|
|
272
|
+
### Phase 1: Source Repository Acquisition (Week 1)
|
|
273
|
+
|
|
274
|
+
```bash
|
|
275
|
+
# 1. Clone all source repositories
|
|
276
|
+
git clone https://github.com/alirezarezvani/claude-skills.git sources/claude-skills
|
|
277
|
+
git clone https://github.com/nextlevelbuilder/ui-ux-pro-max-skill.git sources/ui-ux-pro-max
|
|
278
|
+
git clone https://github.com/anthropics/skills.git sources/anthropic-skills
|
|
279
|
+
git clone https://github.com/openclaw/skills.git sources/openclaw-skills
|
|
280
|
+
git clone https://github.com/obra/superpowers.git sources/superpowers
|
|
281
|
+
# ... others
|
|
282
|
+
|
|
283
|
+
# 2. Audit source structure
|
|
284
|
+
# Count skills in each
|
|
285
|
+
# Identify duplications
|
|
286
|
+
# Map license compliance
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
### Phase 2: Category Reorganization (Week 1-2)
|
|
290
|
+
|
|
291
|
+
Establish unified category taxonomy:
|
|
292
|
+
|
|
293
|
+
```
|
|
294
|
+
skills/
|
|
295
|
+
├── code-generation/ (5 skills)
|
|
296
|
+
├── code-analysis/ (8 skills)
|
|
297
|
+
├── testing-qa/ (15 skills)
|
|
298
|
+
├── devops-deployment/ (7 skills)
|
|
299
|
+
├── database-design/ (6 skills)
|
|
300
|
+
├── api-development/ (8 skills)
|
|
301
|
+
├── data-engineering/ (5 skills)
|
|
302
|
+
├── machine-learning/ (6 skills)
|
|
303
|
+
├── ai-orchestration/ (8 skills)
|
|
304
|
+
├── security-compliance/ (12 skills)
|
|
305
|
+
├── ui-ux-design/ (20 skills) ← includes ui-ux-pro-max
|
|
306
|
+
├── frontend-web/ (15 skills)
|
|
307
|
+
├── mobile-development/ (8 skills)
|
|
308
|
+
├── product-management/ (12 skills)
|
|
309
|
+
├── marketing-growth/ (45 skills)
|
|
310
|
+
├── project-management/ (6 skills)
|
|
311
|
+
├── business-operations/ (10 skills)
|
|
312
|
+
├── c-suite-advisory/ (28 skills)
|
|
313
|
+
├── compliance-regulatory/ (12 skills)
|
|
314
|
+
├── documentation/ (6 skills)
|
|
315
|
+
├── communication/ (4 skills)
|
|
316
|
+
├── meta-skills/ (8 skills) ← orchestration, skill-creation
|
|
317
|
+
└── specialized/ (25 skills) ← misc/emerging
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
**Total Target**: 250+ skills organized by domain
|
|
321
|
+
|
|
322
|
+
### Phase 3: Normalized Skill Conversion (Week 2-3)
|
|
323
|
+
|
|
324
|
+
For each source skill:
|
|
325
|
+
|
|
326
|
+
1. **Parse** source SKILL.md (YAML + markdown)
|
|
327
|
+
2. **Extract**:
|
|
328
|
+
- Skill name + description
|
|
329
|
+
- Instructions + guidelines
|
|
330
|
+
- Scripts/tools
|
|
331
|
+
- References/templates
|
|
332
|
+
- Examples
|
|
333
|
+
3. **Normalize**:
|
|
334
|
+
- Apply Leeway frontmatter
|
|
335
|
+
- Standardize structure
|
|
336
|
+
- Update internal links
|
|
337
|
+
- Preserve all original content
|
|
338
|
+
4. **Classify**:
|
|
339
|
+
- Assign category + subcategory
|
|
340
|
+
- Add tags + keywords
|
|
341
|
+
- Rate tier (core/advanced/specialized)
|
|
342
|
+
- Identify dependencies
|
|
343
|
+
5. **Verify**:
|
|
344
|
+
- Governance compliance (Leeway Standards)
|
|
345
|
+
- No secrets in code
|
|
346
|
+
- Proper headers
|
|
347
|
+
- Required tags
|
|
348
|
+
6. **Link**:
|
|
349
|
+
- Add source_mapping in YAML
|
|
350
|
+
- Create cross-reference index
|
|
351
|
+
- Track deduplication decisions
|
|
352
|
+
|
|
353
|
+
### Phase 4: Python Tools Extraction & Cataloging (Week 3)
|
|
354
|
+
|
|
355
|
+
From claude-skills (254 tools) + others:
|
|
356
|
+
|
|
357
|
+
```
|
|
358
|
+
skills/[category]/[skill]/scripts/
|
|
359
|
+
├── tool1.py # extract from source
|
|
360
|
+
├── tool2.py # convert if needed
|
|
361
|
+
└── README.md # tool usage guide
|
|
362
|
+
```
|
|
363
|
+
|
|
364
|
+
**Tools to Extract** (Example):
|
|
365
|
+
|
|
366
|
+
- `skill-security-auditor.py` → security-compliance/security-auditor/scripts/
|
|
367
|
+
- `tech-debt-analyzer.py` → meta-skills/tech-debt-tracking/scripts/
|
|
368
|
+
- `metrics-calculator.py` → business-operations/saas-metrics-coach/scripts/
|
|
369
|
+
- `rice-prioritizer.py` → product-management/prioritization/scripts/
|
|
370
|
+
- All 254 from claude-skills
|
|
371
|
+
|
|
372
|
+
### Phase 5: Design System Integration (Week 3-4)
|
|
373
|
+
|
|
374
|
+
From ui-ux-pro-max-skill:
|
|
375
|
+
|
|
376
|
+
```
|
|
377
|
+
skills/ui-ux-design/design-system-generator/
|
|
378
|
+
├── SKILL.md
|
|
379
|
+
├── scripts/
|
|
380
|
+
│ └── search.py # reasoning engine + BM25 ranking
|
|
381
|
+
├── references/
|
|
382
|
+
│ ├── styles.csv # 67 UI styles
|
|
383
|
+
│ ├── colors.csv # 161 color palettes
|
|
384
|
+
│ ├── typography.csv # 57 font pairings
|
|
385
|
+
│ ├── charts.csv # 25 chart types
|
|
386
|
+
│ ├── stacks.csv # 13 tech stacks
|
|
387
|
+
│ ├── ux-guidelines.csv # 99 guidelines
|
|
388
|
+
│ └── industries.json # 161 industry rules
|
|
389
|
+
└── examples/
|
|
390
|
+
└── design-system-generation.md
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
### Phase 6: Master Index & Deduplication Log (Week 4)
|
|
394
|
+
|
|
395
|
+
Create `SKILL_INTEGRATION_INDEX.json`:
|
|
396
|
+
|
|
397
|
+
```json
|
|
398
|
+
{
|
|
399
|
+
"total_skills": 250,
|
|
400
|
+
"sources": {
|
|
401
|
+
"claude-skills": {
|
|
402
|
+
"acquired": 177,
|
|
403
|
+
"source_repo": "alirezarezvani/claude-skills",
|
|
404
|
+
"license": "MIT",
|
|
405
|
+
"skills": ["skill1", "skill2", ...]
|
|
406
|
+
},
|
|
407
|
+
"anthropic-skills": {
|
|
408
|
+
"acquired": 15,
|
|
409
|
+
"source_repo": "anthropics/skills",
|
|
410
|
+
"license": "Apache-2.0 / Source-available",
|
|
411
|
+
"skills": ["docx", "pdf", ...]
|
|
412
|
+
},
|
|
413
|
+
"ui-ux-pro-max": {
|
|
414
|
+
"acquired": 1,
|
|
415
|
+
"source_repo": "nextlevelbuilder/ui-ux-pro-max-skill",
|
|
416
|
+
"license": "MIT",
|
|
417
|
+
"skills": ["design-system-generator"],
|
|
418
|
+
"reference_assets": ["styles", "colors", "typography", "industries"]
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"deduplication_map": {
|
|
422
|
+
"ci-cd-pipeline-builder": {
|
|
423
|
+
"leeway_existing": "ci-cd-pipeline-generator",
|
|
424
|
+
"source_skill": "alirezarezvani/ci-cd-pipeline-builder",
|
|
425
|
+
"decision": "REPLACE",
|
|
426
|
+
"reason": "Source is POWERFUL-tier, more comprehensive",
|
|
427
|
+
"preserved": ["original_leeway_version_archived"]
|
|
428
|
+
},
|
|
429
|
+
"code-generation": {
|
|
430
|
+
"leeway_existing": "typescript-codegen",
|
|
431
|
+
"new_source_skills": ["typescript-codegen", "python-codegen", "go-codegen"],
|
|
432
|
+
"decision": "MERGE",
|
|
433
|
+
"approach": "Keep Leeway typescript + add python + add go as separate"
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
### Phase 7: Quality Assurance & Testing (Week 4-5)
|
|
440
|
+
|
|
441
|
+
1. **Verification**: All 250+ skills verified against Leeway Standards
|
|
442
|
+
2. **Execution**: Test each skill with Agent Lee via MCP
|
|
443
|
+
3. **Documentation**: Complete README for each skill
|
|
444
|
+
4. **Cross-reference**: Skills-to-skills dependency map
|
|
445
|
+
|
|
446
|
+
---
|
|
447
|
+
|
|
448
|
+
## 🛠️ Integration Tools & Scripts
|
|
449
|
+
|
|
450
|
+
### Script 1: `normalize-skill.py`
|
|
451
|
+
|
|
452
|
+
Converts any source SKILL.md → Leeway normalized format
|
|
453
|
+
|
|
454
|
+
```python
|
|
455
|
+
#!/usr/bin/env python3
|
|
456
|
+
"""
|
|
457
|
+
Normalize external skill to Leeway format
|
|
458
|
+
Usage: python3 normalize-skill.py /path/to/source/skill /output/directory
|
|
459
|
+
"""
|
|
460
|
+
|
|
461
|
+
def normalize(source_path, output_path):
|
|
462
|
+
# 1. Parse source SKILL.md
|
|
463
|
+
# 2. Extract YAML + markdown
|
|
464
|
+
# 3. Apply Leeway frontmatter
|
|
465
|
+
# 4. Preserve original content
|
|
466
|
+
# 5. Generate metadata.json
|
|
467
|
+
# 6. Create normalized structure
|
|
468
|
+
pass
|
|
469
|
+
```
|
|
470
|
+
|
|
471
|
+
### Script 2: `deduplication-check.py`
|
|
472
|
+
|
|
473
|
+
Prevents skill duplication during import
|
|
474
|
+
|
|
475
|
+
```python
|
|
476
|
+
#!/usr/bin/env python3
|
|
477
|
+
"""
|
|
478
|
+
Check for duplicate/overlapping skills
|
|
479
|
+
Usage: python3 deduplication-check.py /path/to/new/skill --existing-registry /skills
|
|
480
|
+
"""
|
|
481
|
+
|
|
482
|
+
def check_duplicates(new_skill, existing_registry):
|
|
483
|
+
# 1. Compare skill name + description
|
|
484
|
+
# 2. Check keywords + tags
|
|
485
|
+
# 3. Analyze instructions overlap
|
|
486
|
+
# 4. Suggest deduplication strategy
|
|
487
|
+
# 5. Alert if >80% similarity
|
|
488
|
+
pass
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
### Script 3: `extract-tools.py`
|
|
492
|
+
|
|
493
|
+
Extracts Python/JS tools from source repositories
|
|
494
|
+
|
|
495
|
+
```python
|
|
496
|
+
#!/usr/bin/env python3
|
|
497
|
+
"""
|
|
498
|
+
Extract and catalog all tools from source skills
|
|
499
|
+
Usage: python3 extract-tools.py /sources/claude-skills /skills/[category]/[skill]/scripts
|
|
500
|
+
"""
|
|
501
|
+
|
|
502
|
+
def extract_tools(source_repo, target_dir):
|
|
503
|
+
# 1. Find all scripts/ directories
|
|
504
|
+
# 2. Copy .py and .js files
|
|
505
|
+
# 3. Verify dependencies (stdlib-only for Python)
|
|
506
|
+
# 4. Create tool catalog
|
|
507
|
+
# 5. Generate tool usage docs
|
|
508
|
+
pass
|
|
509
|
+
```
|
|
510
|
+
|
|
511
|
+
### Script 4: `build-index.py`
|
|
512
|
+
|
|
513
|
+
Creates unified skill registry and search index
|
|
514
|
+
|
|
515
|
+
```python
|
|
516
|
+
#!/usr/bin/env python3
|
|
517
|
+
"""
|
|
518
|
+
Build comprehensive skill registry and search index
|
|
519
|
+
Usage: python3 build-index.py /skills --output registry.json
|
|
520
|
+
"""
|
|
521
|
+
|
|
522
|
+
def build_master_index(skills_dir):
|
|
523
|
+
# 1. Walk all skills/*/SKILL.md
|
|
524
|
+
# 2. Extract frontmatter
|
|
525
|
+
# 3. Build searchable index
|
|
526
|
+
# 4. Create category maps
|
|
527
|
+
# 5. Generate deduplication report
|
|
528
|
+
# 6. Output: registry.json, index.json, report.md
|
|
529
|
+
pass
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
---
|
|
533
|
+
|
|
534
|
+
## 📊 Expected Results
|
|
535
|
+
|
|
536
|
+
### Skill Acquisition Summary
|
|
537
|
+
|
|
538
|
+
| Source | Qty | Status | License |
|
|
539
|
+
| -------------------- | ---------------- | ------------------- | ----------------------------- |
|
|
540
|
+
| claude-skills | 177 | ✅ Full import | MIT |
|
|
541
|
+
| anthropic-skills | 15+ | ✅ Full import | Apache-2.0 + Source-available |
|
|
542
|
+
| ui-ux-pro-max | 1 skill + assets | ✅ Full integration | MIT |
|
|
543
|
+
| superpowers | 20+ | ✅ Acquire best | MIT |
|
|
544
|
+
| community-individual | 15+ | ✅ Selective | Various |
|
|
545
|
+
| **TOTAL** | **250+** | **✅ COMPLETE** | **Compliant** |
|
|
546
|
+
|
|
547
|
+
### Unified Skill Library Capabilities
|
|
548
|
+
|
|
549
|
+
✅ **Code Generation** (8 languages)
|
|
550
|
+
✅ **Code Analysis & Testing** (20+ skills)
|
|
551
|
+
✅ **DevOps & Infrastructure** (10 skills)
|
|
552
|
+
✅ **Data & Databases** (10 skills)
|
|
553
|
+
✅ **AI/ML & Orchestration** (10 skills)
|
|
554
|
+
✅ **UI/UX Design** (20 skills + design system)
|
|
555
|
+
✅ **Security & Compliance** (15 skills)
|
|
556
|
+
✅ **Product & Business** (20 skills)
|
|
557
|
+
✅ **Marketing & Growth** (45 skills)
|
|
558
|
+
✅ **Meta-Skills** (orchestration, skill-creation)
|
|
559
|
+
✅ **254 Python CLI Tools** (all stdlib-only)
|
|
560
|
+
✅ **3 Pre-configured Personas**
|
|
561
|
+
✅ **Multi-agent Orchestration Protocol**
|
|
562
|
+
|
|
563
|
+
### Agent Intelligence Boost
|
|
564
|
+
|
|
565
|
+
Small LLM (like Phi-3 or Mistral 7B) with Leeway Skills 250+ will perform like a much larger model because:
|
|
566
|
+
|
|
567
|
+
- ✅ Deep expertise in each domain (not just general knowledge)
|
|
568
|
+
- ✅ Procedural workflows (how to think through problems)
|
|
569
|
+
- ✅ Tools & automation (Python CLI scripts for every domain)
|
|
570
|
+
- ✅ Multi-agent orchestration (coordinate multiple capabilities)
|
|
571
|
+
- ✅ Composition patterns (chain skills for complex workflows)
|
|
572
|
+
|
|
573
|
+
---
|
|
574
|
+
|
|
575
|
+
## ✅ Compliance & Quality Gates
|
|
576
|
+
|
|
577
|
+
### Leeway Standards Enforcement
|
|
578
|
+
|
|
579
|
+
Every imported skill must pass:
|
|
580
|
+
|
|
581
|
+
```
|
|
582
|
+
✅ NO_SECRETS_IN_CODE
|
|
583
|
+
└─ Scan for: API keys, passwords, tokens, credentials
|
|
584
|
+
|
|
585
|
+
✅ HEADERS_REQUIRED
|
|
586
|
+
└─ Every .py, .js file has proper license header
|
|
587
|
+
|
|
588
|
+
✅ TAGS_REQUIRED
|
|
589
|
+
└─ Every skill has category + tags
|
|
590
|
+
|
|
591
|
+
✅ DOCUMENTATION_COMPLETE
|
|
592
|
+
└─ Every skill has: SKILL.md + README + examples
|
|
593
|
+
|
|
594
|
+
✅ NO_CIRCULAR_DEPENDENCIES
|
|
595
|
+
└─ Dependency graph is acyclic
|
|
596
|
+
|
|
597
|
+
✅ MIT_OR_COMPATIBLE_LICENSE
|
|
598
|
+
└─ All skills compatible with MIT license
|
|
599
|
+
|
|
600
|
+
✅ ATTRIBUTION
|
|
601
|
+
└─ Original author/source preserved in metadata
|
|
602
|
+
```
|
|
603
|
+
|
|
604
|
+
---
|
|
605
|
+
|
|
606
|
+
## 📅 Timeline
|
|
607
|
+
|
|
608
|
+
**Week 1**: Acquire & audit all source repositories
|
|
609
|
+
**Week 2**: Normalize skills, deduplication, categorization
|
|
610
|
+
**Week 3**: Extract tools, design system integration
|
|
611
|
+
**Week 4**: Quality assurance, index building
|
|
612
|
+
**Week 5**: Testing with Agent Lee, documentation
|
|
613
|
+
|
|
614
|
+
**Target Completion**: 5 weeks from start
|
|
615
|
+
**Result**: 250+ unified, production-ready skills for any LLM
|
|
616
|
+
|
|
617
|
+
---
|
|
618
|
+
|
|
619
|
+
## 🎯 Success Metrics
|
|
620
|
+
|
|
621
|
+
- ✅ **100% skills acquired** from source repos
|
|
622
|
+
- ✅ **0 duplicates** in final registry
|
|
623
|
+
- ✅ **250+ skills** in unified format
|
|
624
|
+
- ✅ **100% compliance** with Leeway Standards
|
|
625
|
+
- ✅ **All 254 tools** extracted and cataloged
|
|
626
|
+
- ✅ **Master index** built for discovery
|
|
627
|
+
- ✅ **Agent Lee integration** verified
|
|
628
|
+
- ✅ **Orchestration patterns** documented
|
|
629
|
+
- ✅ **Ready for production** deployment
|
|
630
|
+
|
|
631
|
+
---
|
|
632
|
+
|
|
633
|
+
## 🚀 Next Steps
|
|
634
|
+
|
|
635
|
+
**Immediate Action**:
|
|
636
|
+
|
|
637
|
+
1. ✅ Review this plan → Approve strategy
|
|
638
|
+
2. ⏭️ Create skill normalization scripts (Python)
|
|
639
|
+
3. ⏭️ Clone source repositories into `/sources/`
|
|
640
|
+
4. ⏭️ Begin batch normalization
|
|
641
|
+
5. ⏭️ Test with Agent Lee continuously
|
|
642
|
+
|
|
643
|
+
**Let's build the most comprehensive AI skill library ever!** 🎉
|
|
644
|
+
|