@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,460 @@
|
|
|
1
|
+
================================================================================
|
|
2
|
+
🌟 LEEWAY SKILLS DIRECTORY SETUP COMPLETE 🌟
|
|
3
|
+
================================================================================
|
|
4
|
+
|
|
5
|
+
A Leeway Industries Initiative | By Leonard Jerome Lee
|
|
6
|
+
|
|
7
|
+
Project: Enterprise LLM Skills Directory (Leeway Governance)
|
|
8
|
+
Created: 2026-03-15
|
|
9
|
+
Version: 1.0.0
|
|
10
|
+
Status: ✅ READY TO USE & GOVERNED
|
|
11
|
+
|
|
12
|
+
================================================================================
|
|
13
|
+
WHAT WAS CREATED
|
|
14
|
+
================================================================================
|
|
15
|
+
|
|
16
|
+
📂 DIRECTORY STRUCTURE
|
|
17
|
+
==================
|
|
18
|
+
|
|
19
|
+
c:\Tools\Leeway-Skills/
|
|
20
|
+
├── skills/ # 19 core skills across 13 categories
|
|
21
|
+
├── scripts/ # PowerShell management & automation
|
|
22
|
+
├── config/ # Global configuration files
|
|
23
|
+
├── documents/ # Comprehensive documentation
|
|
24
|
+
└── Multiple README & guide files # Setup, usage, extending guides
|
|
25
|
+
|
|
26
|
+
================================================================================
|
|
27
|
+
19 CORE SKILLS CREATED
|
|
28
|
+
================================================================================
|
|
29
|
+
|
|
30
|
+
CATEGORY: Code Generation (2 skills)
|
|
31
|
+
✓ TypeScript Code Generation
|
|
32
|
+
✓ Python Code Generation
|
|
33
|
+
|
|
34
|
+
CATEGORY: Code Analysis (2 skills)
|
|
35
|
+
✓ Static Code Analysis
|
|
36
|
+
✓ Refactoring Code
|
|
37
|
+
|
|
38
|
+
CATEGORY: Data Analysis (1 skill)
|
|
39
|
+
✓ Pandas Data Analysis
|
|
40
|
+
|
|
41
|
+
CATEGORY: DevOps (2 skills)
|
|
42
|
+
✓ Dockerfile Creation
|
|
43
|
+
✓ Kubernetes Deployment
|
|
44
|
+
|
|
45
|
+
CATEGORY: Web Development (2 skills)
|
|
46
|
+
✓ React Development
|
|
47
|
+
✓ CSS Styling and Layout
|
|
48
|
+
|
|
49
|
+
CATEGORY: Debugging (2 skills)
|
|
50
|
+
✓ JavaScript Debugging
|
|
51
|
+
✓ Python Debugging
|
|
52
|
+
|
|
53
|
+
CATEGORY: Testing (2 skills)
|
|
54
|
+
✓ Unit Testing
|
|
55
|
+
✓ Integration Testing
|
|
56
|
+
|
|
57
|
+
CATEGORY: AI/ML (2 skills)
|
|
58
|
+
✓ LLM Prompting and Engineering
|
|
59
|
+
✓ Machine Learning Model Development
|
|
60
|
+
|
|
61
|
+
CATEGORY: Security (1 skill)
|
|
62
|
+
✓ Code Security Analysis
|
|
63
|
+
|
|
64
|
+
CATEGORY: Documentation (1 skill)
|
|
65
|
+
✓ API Documentation
|
|
66
|
+
|
|
67
|
+
CATEGORY: Architecture (1 skill)
|
|
68
|
+
✓ System Design and Architecture
|
|
69
|
+
|
|
70
|
+
CATEGORY: Git Workflow (1 skill)
|
|
71
|
+
✓ Git Workflow and Collaboration
|
|
72
|
+
|
|
73
|
+
================================================================================
|
|
74
|
+
KEY FILES CREATED (25+)
|
|
75
|
+
================================================================================
|
|
76
|
+
|
|
77
|
+
SKILLS (19 SKILL.md files in skills/ directory)
|
|
78
|
+
Each contains:
|
|
79
|
+
- Expert description
|
|
80
|
+
- 4-8 capabilities
|
|
81
|
+
- Use case scenarios
|
|
82
|
+
- Key techniques
|
|
83
|
+
- 3-10 tags
|
|
84
|
+
- Format: c:\Tools\Leeway-Skills\skills\{category}\{skill-name}\SKILL.md
|
|
85
|
+
|
|
86
|
+
CONFIGURATION FILES
|
|
87
|
+
✓ skills-config.json Global configuration
|
|
88
|
+
✓ .skillsignore Exclude patterns
|
|
89
|
+
|
|
90
|
+
SCRIPTS & REGISTRIES
|
|
91
|
+
✓ sync-skills.ps1 PowerShell management script
|
|
92
|
+
✓ skills-registry.json Searchable skill index (19 skills)
|
|
93
|
+
|
|
94
|
+
DOCUMENTATION (6 files)
|
|
95
|
+
✓ README.md Main documentation & overview
|
|
96
|
+
✓ STRUCTURE.md Detailed directory structure
|
|
97
|
+
✓ SETUP_SUMMARY.md Complete setup summary
|
|
98
|
+
✓ QUICK_REFERENCE.md Quick reference card
|
|
99
|
+
✓ documents/SETUP.md Installation & configuration
|
|
100
|
+
✓ documents/USAGE.md How to use skills in prompts
|
|
101
|
+
✓ documents/EXTENDING.md How to add new skills
|
|
102
|
+
|
|
103
|
+
================================================================================
|
|
104
|
+
QUICK START (5 MIN)
|
|
105
|
+
================================================================================
|
|
106
|
+
|
|
107
|
+
1. NAVIGATE TO DIRECTORY
|
|
108
|
+
cd c:\Tools\Leeway-Skills
|
|
109
|
+
|
|
110
|
+
2. VERIFY SETUP
|
|
111
|
+
.\scripts\sync-skills.ps1 -Action Validate
|
|
112
|
+
|
|
113
|
+
3. LIST ALL SKILLS
|
|
114
|
+
.\scripts\sync-skills.ps1 -Action List
|
|
115
|
+
|
|
116
|
+
4. CONFIGURE YOUR LLM
|
|
117
|
+
Skills location: c:\Tools\Leeway-Skills\skills
|
|
118
|
+
Registry: c:\Tools\Leeway-Skills\scripts\skills-registry.json
|
|
119
|
+
|
|
120
|
+
5. USE IN PROMPTS
|
|
121
|
+
"Use typescript-codegen to generate a type-safe API client."
|
|
122
|
+
|
|
123
|
+
================================================================================
|
|
124
|
+
MAIN COMMANDS AVAILABLE
|
|
125
|
+
================================================================================
|
|
126
|
+
|
|
127
|
+
# View all available skills
|
|
128
|
+
.\scripts\sync-skills.ps1 -Action List
|
|
129
|
+
|
|
130
|
+
# Validate all skills are properly structured
|
|
131
|
+
.\scripts\sync-skills.ps1 -Action Validate
|
|
132
|
+
|
|
133
|
+
# Export skills as JSON
|
|
134
|
+
.\scripts\sync-skills.ps1 -Action Export
|
|
135
|
+
|
|
136
|
+
# Check synchronization status
|
|
137
|
+
.\scripts\sync-skills.ps1 -Action Status
|
|
138
|
+
|
|
139
|
+
# Clean old log files
|
|
140
|
+
.\scripts\sync-skills.ps1 -Action Clean
|
|
141
|
+
|
|
142
|
+
================================================================================
|
|
143
|
+
DOCUMENTATION ROADMAP
|
|
144
|
+
================================================================================
|
|
145
|
+
|
|
146
|
+
START HERE → README.md
|
|
147
|
+
Overview, structure, categories, features
|
|
148
|
+
|
|
149
|
+
THEN READ → documents/SETUP.md
|
|
150
|
+
Installation, configuration for your LLM
|
|
151
|
+
|
|
152
|
+
NEXT → documents/USAGE.md
|
|
153
|
+
How to use skills in prompts with examples
|
|
154
|
+
|
|
155
|
+
FINALLY → documents/EXTENDING.md
|
|
156
|
+
How to add your own custom skills
|
|
157
|
+
|
|
158
|
+
QUICK REF → QUICK_REFERENCE.md
|
|
159
|
+
Handy card with commands and examples
|
|
160
|
+
|
|
161
|
+
================================================================================
|
|
162
|
+
DIRECTORY STATISTICS
|
|
163
|
+
================================================================================
|
|
164
|
+
|
|
165
|
+
Total Skills: 19
|
|
166
|
+
Total Categories: 13
|
|
167
|
+
Languages Supported: 3 (TypeScript, Python, Infrastructure)
|
|
168
|
+
Documentation Files: 6+ files
|
|
169
|
+
Configuration Files: 3 files
|
|
170
|
+
Scripts: 1 PowerShell script
|
|
171
|
+
Tags Available: 40+
|
|
172
|
+
|
|
173
|
+
Skills by Status:
|
|
174
|
+
✅ Enabled: 19/19
|
|
175
|
+
❌ Disabled: 0/19
|
|
176
|
+
|
|
177
|
+
Average Tags per Skill: 5
|
|
178
|
+
Registry Entries: 19 with metadata
|
|
179
|
+
|
|
180
|
+
================================================================================
|
|
181
|
+
SUPPORTED FRAMEWORKS
|
|
182
|
+
================================================================================
|
|
183
|
+
|
|
184
|
+
LANGUAGES
|
|
185
|
+
✓ TypeScript / JavaScript
|
|
186
|
+
✓ Python
|
|
187
|
+
✓ Infrastructure (Docker, Kubernetes)
|
|
188
|
+
|
|
189
|
+
FRAMEWORKS
|
|
190
|
+
✓ React with Hooks
|
|
191
|
+
✓ FastAPI
|
|
192
|
+
✓ Node.js / Express
|
|
193
|
+
✓ Jest, Pytest, Vitest
|
|
194
|
+
✓ scikit-learn, TensorFlow, PyTorch
|
|
195
|
+
|
|
196
|
+
TOOLS
|
|
197
|
+
✓ Docker & Kubernetes
|
|
198
|
+
✓ Git & version control
|
|
199
|
+
✓ Pandas & data science
|
|
200
|
+
✓ LLM APIs (OpenAI, Anthropic, etc.)
|
|
201
|
+
|
|
202
|
+
================================================================================
|
|
203
|
+
FEATURES INCLUDED
|
|
204
|
+
================================================================================
|
|
205
|
+
|
|
206
|
+
✅ ORGANIZED STRUCTURE
|
|
207
|
+
- 13 logical categories
|
|
208
|
+
- Clear naming conventions
|
|
209
|
+
- Consistent SKILL.md format
|
|
210
|
+
|
|
211
|
+
✅ PRODUCTION-READY
|
|
212
|
+
- Full SKILL.md documentation
|
|
213
|
+
- Searchable registry (JSON)
|
|
214
|
+
- Configuration system
|
|
215
|
+
- Management scripts
|
|
216
|
+
|
|
217
|
+
✅ DISCOVERABLE
|
|
218
|
+
- Tag-based search system
|
|
219
|
+
- Skill metadata index
|
|
220
|
+
- Clear descriptions & capabilities
|
|
221
|
+
- Organized by category & language
|
|
222
|
+
|
|
223
|
+
✅ EXTENSIBLE
|
|
224
|
+
- Easy to add new skills
|
|
225
|
+
- Simple to create new categories
|
|
226
|
+
- Framework for public source integration
|
|
227
|
+
- Automation-ready
|
|
228
|
+
|
|
229
|
+
✅ MAINTAINABLE
|
|
230
|
+
- Version management (semver)
|
|
231
|
+
- Enable/disable mechanism
|
|
232
|
+
- Synchronization tools
|
|
233
|
+
- Cleanup utilities
|
|
234
|
+
|
|
235
|
+
✅ WELL-DOCUMENTED
|
|
236
|
+
- Setup guide (documents/SETUP.md)
|
|
237
|
+
- Usage guide (documents/USAGE.md)
|
|
238
|
+
- Extension guide (documents/EXTENDING.md)
|
|
239
|
+
- Quick reference card
|
|
240
|
+
- Detailed structure guide
|
|
241
|
+
|
|
242
|
+
================================================================================
|
|
243
|
+
NEXT STEPS
|
|
244
|
+
================================================================================
|
|
245
|
+
|
|
246
|
+
IMMEDIATE (Now)
|
|
247
|
+
1. Navigate: cd c:\Tools\Leeway-Skills
|
|
248
|
+
2. Validate: .\scripts\sync-skills.ps1 -Action Validate
|
|
249
|
+
3. List: .\scripts\sync-skills.ps1 -Action List
|
|
250
|
+
|
|
251
|
+
SHORT TERM (Today)
|
|
252
|
+
1. Configure your LLM to use: c:\Tools\Leeway-Skills\skills
|
|
253
|
+
2. Read: documents/USAGE.md
|
|
254
|
+
3. Try using a skill in a prompt
|
|
255
|
+
|
|
256
|
+
MEDIUM TERM (This Week)
|
|
257
|
+
1. Read: documents/EXTENDING.md
|
|
258
|
+
2. Add your first custom skill
|
|
259
|
+
3. Set up validation schedule
|
|
260
|
+
|
|
261
|
+
LONG TERM (Ongoing)
|
|
262
|
+
1. Expand with more skills
|
|
263
|
+
2. Integrate with workflows
|
|
264
|
+
3. Set up CI/CD updates
|
|
265
|
+
4. Build web dashboard (optional)
|
|
266
|
+
|
|
267
|
+
================================================================================
|
|
268
|
+
DIRECTORY LOCATIONS
|
|
269
|
+
================================================================================
|
|
270
|
+
|
|
271
|
+
Skills Root:
|
|
272
|
+
c:\Tools\Leeway-Skills\skills
|
|
273
|
+
|
|
274
|
+
Skills Registry:
|
|
275
|
+
c:\Tools\Leeway-Skills\scripts\skills-registry.json
|
|
276
|
+
|
|
277
|
+
Configuration:
|
|
278
|
+
c:\Tools\Leeway-Skills\config\skills-config.json
|
|
279
|
+
|
|
280
|
+
Documentation:
|
|
281
|
+
c:\Tools\Leeway-Skills\documents\
|
|
282
|
+
|
|
283
|
+
Scripts:
|
|
284
|
+
c:\Tools\Leeway-Skills\scripts\
|
|
285
|
+
|
|
286
|
+
Main Guides:
|
|
287
|
+
c:\Tools\Leeway-Skills\README.md
|
|
288
|
+
c:\Tools\Leeway-Skills\STRUCTURE.md
|
|
289
|
+
c:\Tools\Leeway-Skills\SETUP_SUMMARY.md
|
|
290
|
+
c:\Tools\Leeway-Skills\QUICK_REFERENCE.md
|
|
291
|
+
|
|
292
|
+
================================================================================
|
|
293
|
+
EXAMPLE USAGE
|
|
294
|
+
================================================================================
|
|
295
|
+
|
|
296
|
+
"I need to generate a TypeScript API client."
|
|
297
|
+
→ Use typescript-codegen skill
|
|
298
|
+
|
|
299
|
+
"Find code quality issues in this function."
|
|
300
|
+
→ Use static-analysis skill
|
|
301
|
+
|
|
302
|
+
"Create unit tests for this code."
|
|
303
|
+
→ Use unit-testing skill
|
|
304
|
+
|
|
305
|
+
"Build a Docker container for Node."
|
|
306
|
+
→ Use dockerfile-creation skill
|
|
307
|
+
|
|
308
|
+
"Write a React component with hooks."
|
|
309
|
+
→ Use react-development skill
|
|
310
|
+
|
|
311
|
+
"Analyze data and create visualizations."
|
|
312
|
+
→ Use pandas-analysis skill
|
|
313
|
+
|
|
314
|
+
"Set up Kubernetes deployment."
|
|
315
|
+
→ Use kubernetes-deployment skill
|
|
316
|
+
|
|
317
|
+
"Improve this prompt for an LLM."
|
|
318
|
+
→ Use llm-prompting skill
|
|
319
|
+
|
|
320
|
+
================================================================================
|
|
321
|
+
CONFIGURATION EXAMPLES
|
|
322
|
+
================================================================================
|
|
323
|
+
|
|
324
|
+
FOR YOUR LLM (JSON)
|
|
325
|
+
{
|
|
326
|
+
"skillPaths": [
|
|
327
|
+
"c:\\Tools\\Leeway-Skills\\skills"
|
|
328
|
+
],
|
|
329
|
+
"registryPath": "c:\\Tools\\Leeway-Skills\\scripts\\skills-registry.json"
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
FOR ENVIRONMENT VARIABLE
|
|
333
|
+
$env:CODEX_SKILLS_PATH = "c:\Tools\Leeway-Skills\skills"
|
|
334
|
+
|
|
335
|
+
FOR VS CODE
|
|
336
|
+
"github.copilot.skillPaths": [
|
|
337
|
+
"c:\\Tools\\Leeway-Skills\\skills"
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
================================================================================
|
|
341
|
+
QUALITY CHECKLIST
|
|
342
|
+
================================================================================
|
|
343
|
+
|
|
344
|
+
✅ Directory Structure
|
|
345
|
+
✅ 19 Core Skills
|
|
346
|
+
✅ 13 Categories
|
|
347
|
+
✅ SKILL.md Format Compliance
|
|
348
|
+
✅ Skills Registry (JSON)
|
|
349
|
+
✅ Configuration System
|
|
350
|
+
✅ PowerShell Scripts
|
|
351
|
+
✅ Documentation (6 files)
|
|
352
|
+
✅ Validation System
|
|
353
|
+
✅ Tag System
|
|
354
|
+
✅ Version Management
|
|
355
|
+
✅ Enable/Disable Support
|
|
356
|
+
✅ Quick Reference Card
|
|
357
|
+
✅ Setup Guide
|
|
358
|
+
✅ Usage Examples
|
|
359
|
+
✅ Extension Framework
|
|
360
|
+
|
|
361
|
+
================================================================================
|
|
362
|
+
IMPORTANT NOTES
|
|
363
|
+
================================================================================
|
|
364
|
+
|
|
365
|
+
1. Skills are discoverable in: c:\Tools\AIskills\skills
|
|
366
|
+
|
|
367
|
+
2. Each skill is in its own directory with SKILL.md
|
|
368
|
+
|
|
369
|
+
3. Registry is searchable JSON with all metadata
|
|
370
|
+
|
|
371
|
+
4. All 19 skills are validated and ready to use
|
|
372
|
+
|
|
373
|
+
5. Configuration is flexible and extensible
|
|
374
|
+
|
|
375
|
+
6. Management scripts are PowerShell-based
|
|
376
|
+
|
|
377
|
+
7. Documentation is comprehensive and accessible
|
|
378
|
+
|
|
379
|
+
8. Can easily add more skills (see documents/EXTENDING.md)
|
|
380
|
+
|
|
381
|
+
9. Tag system enables efficient discovery
|
|
382
|
+
|
|
383
|
+
10. Organized by category, language, and domain
|
|
384
|
+
|
|
385
|
+
================================================================================
|
|
386
|
+
VERIFICATION COMMANDS
|
|
387
|
+
================================================================================
|
|
388
|
+
|
|
389
|
+
# Confirm all skills are valid
|
|
390
|
+
.\scripts\sync-skills.ps1 -Action Validate
|
|
391
|
+
|
|
392
|
+
# See all available skills with details
|
|
393
|
+
.\scripts\sync-skills.ps1 -Action List
|
|
394
|
+
|
|
395
|
+
# Export for analysis
|
|
396
|
+
.\scripts\sync-skills.ps1 -Action Export
|
|
397
|
+
|
|
398
|
+
# View detailed status
|
|
399
|
+
.\scripts\sync-skills.ps1 -Action Status
|
|
400
|
+
|
|
401
|
+
# Count skills by category
|
|
402
|
+
$reg = Get-Content scripts\skills-registry.json | ConvertFrom-Json
|
|
403
|
+
$reg.skills | Group-Object category | Select-Object Name, @{n='Count';e={$_.Group.Count}}
|
|
404
|
+
|
|
405
|
+
================================================================================
|
|
406
|
+
SUCCESS METRICS
|
|
407
|
+
================================================================================
|
|
408
|
+
|
|
409
|
+
✅ Skills Created: 19/19
|
|
410
|
+
✅ Categories Organized: 13/13
|
|
411
|
+
✅ Documentation Complete: 6/6 files
|
|
412
|
+
✅ Registry Generated: Yes
|
|
413
|
+
✅ Validation Script: Yes
|
|
414
|
+
✅ Configuration System: Yes
|
|
415
|
+
✅ Quick Reference: Yes
|
|
416
|
+
✅ Status: READY TO USE
|
|
417
|
+
|
|
418
|
+
================================================================================
|
|
419
|
+
SUPPORT & HELP
|
|
420
|
+
================================================================================
|
|
421
|
+
|
|
422
|
+
For Setup Questions:
|
|
423
|
+
→ Read: documents/SETUP.md
|
|
424
|
+
|
|
425
|
+
For Usage Questions:
|
|
426
|
+
→ Read: documents/USAGE.md
|
|
427
|
+
|
|
428
|
+
For Adding Skills:
|
|
429
|
+
→ Read: documents/EXTENDING.md
|
|
430
|
+
|
|
431
|
+
For Directory Details:
|
|
432
|
+
→ Read: STRUCTURE.md
|
|
433
|
+
|
|
434
|
+
For Quick Help:
|
|
435
|
+
→ Read: QUICK_REFERENCE.md
|
|
436
|
+
|
|
437
|
+
For Overview:
|
|
438
|
+
→ Read: README.md
|
|
439
|
+
|
|
440
|
+
================================================================================
|
|
441
|
+
FINAL STATUS
|
|
442
|
+
================================================================================
|
|
443
|
+
|
|
444
|
+
Project Status: ✅ COMPLETE
|
|
445
|
+
Setup Status: ✅ READY TO USE
|
|
446
|
+
Documentation Status: ✅ COMPLETE
|
|
447
|
+
Validation Status: ✅ PASSED
|
|
448
|
+
Skills Count: ✅ 19 CREATED
|
|
449
|
+
Categories: ✅ 13 ORGANIZED
|
|
450
|
+
Configuration: ✅ CONFIGURED
|
|
451
|
+
|
|
452
|
+
YOUR LLM SKILLS DIRECTORY IS READY!
|
|
453
|
+
|
|
454
|
+
Next: Configure your LLM to use c:\Tools\AIskills\skills
|
|
455
|
+
Then: Read documents/USAGE.md for how to use skills
|
|
456
|
+
|
|
457
|
+
================================================================================
|
|
458
|
+
Created: 2026-03-15 | Version: 1.0.0
|
|
459
|
+
================================================================================
|
|
460
|
+
|