@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,382 @@
1
+ # Detailed Leeway Skills Directory Structure
2
+
3
+ ## Full Hierarchy
4
+
5
+ ```
6
+ Leeway Skills/
7
+
8
+ ├── README.md # Main directory documentation
9
+ ├── STRUCTURE.md # This file - detailed structure
10
+
11
+ ├── skills/ # 🎯 Main skills directory
12
+ │ │
13
+ │ ├── code-generation/ # Language-specific code generation
14
+ │ │ ├── typescript-codegen/
15
+ │ │ │ └── SKILL.md # Generate TypeScript/JavaScript
16
+ │ │ └── python-codegen/
17
+ │ │ └── SKILL.md # Generate Python modules
18
+ │ │
19
+ │ ├── code-analysis/ # Static analysis and refactoring
20
+ │ │ ├── static-analysis/
21
+ │ │ │ └── SKILL.md # Code quality and anti-patterns
22
+ │ │ └── refactoring/
23
+ │ │ └── SKILL.md # Code restructuring
24
+ │ │
25
+ │ ├── data-analysis/ # Data science tools
26
+ │ │ └── pandas-analysis/
27
+ │ │ └── SKILL.md # Pandas, statistics, visualization
28
+ │ │
29
+ │ ├── devops/ # Infrastructure and deployment
30
+ │ │ ├── dockerfile-creation/
31
+ │ │ │ └── SKILL.md # Docker container creation
32
+ │ │ └── kubernetes-deployment/
33
+ │ │ └── SKILL.md # Kubernetes manifests
34
+ │ │
35
+ │ ├── web-development/ # Frontend technologies
36
+ │ │ ├── react-development/
37
+ │ │ │ └── SKILL.md # React with hooks
38
+ │ │ └── css-styling/
39
+ │ │ └── SKILL.md # Responsive CSS and Layout
40
+ │ │
41
+ │ ├── debugging/ # Debugging and profiling
42
+ │ │ ├── javascript-debugging/
43
+ │ │ │ └── SKILL.md # Browser and Node.js debugging
44
+ │ │ └── python-debugging/
45
+ │ │ └── SKILL.md # pdb and profiling
46
+ │ │
47
+ │ ├── testing/ # Test frameworks
48
+ │ │ ├── unit-testing/
49
+ │ │ │ └── SKILL.md # Jest, Pytest, mocking
50
+ │ │ └── integration-testing/
51
+ │ │ └── SKILL.md # API and integration tests
52
+ │ │
53
+ │ ├── ai-ml/ # Artificial intelligence
54
+ │ │ ├── llm-prompting/
55
+ │ │ │ └── SKILL.md # Prompt engineering
56
+ │ │ └── ml-model-development/
57
+ │ │ └── SKILL.md # scikit-learn, TensorFlow, PyTorch
58
+ │ │
59
+ │ ├── security/ # Security practices
60
+ │ │ └── code-security/
61
+ │ │ └── SKILL.md # Vulnerability detection
62
+ │ │
63
+ │ ├── documentation/ # Documentation creation
64
+ │ │ └── api-documentation/
65
+ │ │ └── SKILL.md # OpenAPI, Swagger, examples
66
+ │ │
67
+ │ ├── architecture/ # System design
68
+ │ │ └── system-design/
69
+ │ │ └── SKILL.md # Distributed systems, patterns
70
+ │ │
71
+ │ └── git-workflow/ # Version control
72
+ │ └── git-collaboration/
73
+ │ └── SKILL.md # Git workflows and collaboration
74
+
75
+ ├── .leeway/ # 🔒 Leeway Standards Governance
76
+ │ ├── config.json # Leeway compliance configuration
77
+ │ ├── .gitignore # Runtime artifacts (not tracked)
78
+ │ ├── reports/ # Compliance audit reports (runtime)
79
+ │ └── metrics/ # Compliance metrics (runtime)
80
+
81
+ ├── scripts/ # 🔧 Utility scripts
82
+ │ ├── sync-skills.ps1 # PowerShell sync/management script
83
+ │ ├── skills-registry.json # Searchable index of all skills
84
+ │ ├── init-leeway.js # Bootstrap Leeway monitoring
85
+ │ └── leeway-agents/
86
+ │ ├── compliance-monitor.js # Compliance validation agent
87
+ │ ├── header-injector.js # Leeway header automation agent
88
+ │ └── (other governance agents)
89
+
90
+ ├── config/ # ⚙️ Configuration
91
+ │ ├── skills-config.json # Global configuration
92
+ │ ├── .skillsignore # Exclude patterns (like .gitignore)
93
+ │ └── discovery-paths.json # Where LLMs should search
94
+
95
+ └── documents/ # 📚 Additional documentation
96
+ ├── SETUP.md # Setup instructions
97
+ ├── USAGE.md # How to use skills
98
+ ├── EXTENDING.md # How to add new skills
99
+ ├── LEEWAY_STANDARDS_COMPLIANCE.md # Leeway compliance guide
100
+ ├── LEEWAY_INTEGRATION_GUIDE.md # How to maintain compliance
101
+ └── CATEGORIES.md # Detailed category explains
102
+ ```
103
+
104
+ ## SKILL.md Template
105
+
106
+ Each skill directory contains `SKILL.md` with this structure:
107
+
108
+ ```markdown
109
+ # Skill Name
110
+
111
+ **Expert in**: Brief one-line description
112
+
113
+ ## Capabilities
114
+
115
+ - Feature 1 description
116
+ - Feature 2 description
117
+ - Feature 3 description
118
+
119
+ ## Use this skill when:
120
+
121
+ - Scenario 1
122
+ - Scenario 2
123
+ - Scenario 3
124
+
125
+ ## Key techniques
126
+
127
+ - Technique 1
128
+ - Technique 2
129
+ - Technique 3
130
+
131
+ ## Tags
132
+
133
+ `tag1` `tag2` `tag3`
134
+ ```
135
+
136
+ ## Discovery Paths
137
+
138
+ LLM systems search these paths (in order):
139
+
140
+ 1. **Project-level**: `.agents/skills/` or `.claude/skills/`
141
+ 2. **User-level**: `~/.agents/skills/` or `~/.config/opencode/skills`
142
+ 3. **Custom**: Any path configured in `.agents/config`
143
+
144
+ ## Skills by Language
145
+
146
+ ### JavaScript/TypeScript
147
+
148
+ - `code-generation/typescript-codegen` - Type-safe code generation
149
+ - `web-development/react-development` - React and hooks
150
+ - `web-development/css-styling` - CSS and styling
151
+ - `debugging/javascript-debugging` - DevTools and Node.js debugging
152
+ - `testing/unit-testing` - Jest, Vitest
153
+ - `testing/integration-testing` - API testing
154
+
155
+ ### Python
156
+
157
+ - `code-generation/python-codegen` - Pythonic code generation
158
+ - `data-analysis/pandas-analysis` - Data science
159
+ - `debugging/python-debugging` - pdb and profiling
160
+ - `testing/unit-testing` - Pytest
161
+ - `ai-ml/ml-model-development` - scikit-learn, TensorFlow, PyTorch
162
+
163
+ ### DevOps/Infrastructure
164
+
165
+ - `devops/dockerfile-creation` - Docker containers
166
+ - `devops/kubernetes-deployment` - Kubernetes manifests
167
+ - `git-workflow/git-collaboration` - Git workflows
168
+
169
+ ### General
170
+
171
+ - `code-analysis/static-analysis` - Code quality analysis
172
+ - `code-analysis/refactoring` - Code improvements
173
+ - `security/code-security` - Vulnerability detection
174
+ - `documentation/api-documentation` - API docs
175
+ - `architecture/system-design` - System design
176
+ - `ai-ml/llm-prompting` - Prompt engineering
177
+
178
+ ## Skills by Domain
179
+
180
+ ### Web Development
181
+
182
+ - React Development
183
+ - CSS Styling and Layout
184
+ - TypeScript Code Generation
185
+ - JavaScript Debugging
186
+
187
+ ### Backend Development
188
+
189
+ - Python Code Generation
190
+ - API Documentation
191
+ - System Design and Architecture
192
+ - Git Workflow and Collaboration
193
+
194
+ ### Data & AI/ML
195
+
196
+ - Pandas Data Analysis
197
+ - Machine Learning Model Development
198
+ - LLM Prompting and Engineering
199
+
200
+ ### DevOps & Infrastructure
201
+
202
+ - Dockerfile Creation
203
+ - Kubernetes Deployment
204
+ - Static Code Analysis
205
+
206
+ ### Quality & Security
207
+
208
+ - Unit Testing
209
+ - Integration Testing
210
+ - Code Security Analysis
211
+ - Python Debugging
212
+ - JavaScript Debugging
213
+
214
+ ## Configuration Files
215
+
216
+ ### `skills-config.json`
217
+
218
+ Global configuration for:
219
+
220
+ - Discovery paths
221
+ - Validation rules
222
+ - Tagging system
223
+ - Performance settings
224
+ - Features (symlinks, versioning, dependencies)
225
+
226
+ ### `.skillsignore`
227
+
228
+ Patterns to exclude (like `.gitignore`):
229
+
230
+ - Version control directories
231
+ - Dependencies (node_modules, **pycache**)
232
+ - Build artifacts
233
+ - IDE files
234
+ - Temporary files
235
+
236
+ ### `skills-registry.json`
237
+
238
+ Searchable index containing:
239
+
240
+ - All skills with metadata
241
+ - Category mappings
242
+ - Tags and keywords
243
+ - Version info
244
+ - Last updated timestamp
245
+
246
+ ## Extending the Directory
247
+
248
+ ### Add a New Skill
249
+
250
+ 1. Create directory:
251
+
252
+ ```
253
+ skills/{category}/{skill-name}/
254
+ ```
255
+
256
+ 2. Create `SKILL.md` with required sections
257
+
258
+ 3. Update `skills-registry.json`:
259
+
260
+ ```json
261
+ {
262
+ "name": "Skill Name",
263
+ "category": "category-name",
264
+ "path": "skills/category/skill-name",
265
+ "version": "1.0.0",
266
+ "tags": ["tag1", "tag2", "tag3"]
267
+ }
268
+ ```
269
+
270
+ 4. Run sync script:
271
+ ```powershell
272
+ .\scripts\sync-skills.ps1 -Action Validate
273
+ ```
274
+
275
+ ### Add a New Category
276
+
277
+ 1. Create category directory: `skills/{new-category}/`
278
+ 2. Add skills under that category
279
+ 3. Update category entry in `skills-registry.json`
280
+ 4. Document in README.md
281
+
282
+ ## File Naming Conventions
283
+
284
+ - Directories: lowercase, hyphen-separated
285
+ - SKILL.md: Exact name, capital letters
286
+ - Config files: kebab-case (lowercase-hyphenated)
287
+ - Tags: lowercase, single words or hyphenated
288
+
289
+ ## Metadata Schema
290
+
291
+ Each skill in the registry has:
292
+
293
+ ```json
294
+ {
295
+ "name": "string",
296
+ "category": "string",
297
+ "path": "string",
298
+ "version": "string (semver)",
299
+ "tags": ["array", "of", "strings"],
300
+ "description": "string",
301
+ "capabilities": ["array", "of", "features"],
302
+ "dependency": "optional | string",
303
+ "enabled": "boolean",
304
+ "source": "internal|anthropic|microsoft|community"
305
+ }
306
+ ```
307
+
308
+ ## Tagging System
309
+
310
+ Skills are tagged by:
311
+
312
+ - **Language**: typescript, javascript, python, java, etc.
313
+ - **Domain**: devops, testing, security, web, data, etc.
314
+ - **Tool/Framework**: react, jest, pytest, docker, kubernetes, etc.
315
+ - **Methodology**: agile, tdd, bdd, functional, oop, etc.
316
+ - **Level**: beginner, intermediate, expert
317
+ - **Custom**: Domain-specific tags
318
+
319
+ Minimum 3 tags per skill, maximum 10.
320
+
321
+ ## Version Management
322
+
323
+ ```
324
+ Development: 0.x.x
325
+ Stable: 1.x.x
326
+ ```
327
+
328
+ Update version in:
329
+
330
+ 1. SKILL.md (if documenting version)
331
+ 2. `skills-registry.json`
332
+
333
+ ## Synchronization
334
+
335
+ ### Manual Sync
336
+
337
+ ```powershell
338
+ # Validate all skills
339
+ .\scripts\sync-skills.ps1 -Action Validate
340
+
341
+ # List all skills
342
+ .\scripts\sync-skills.ps1 -Action List
343
+
344
+ # Export as JSON
345
+ .\scripts\sync-skills.ps1 -Action Export
346
+
347
+ # Check status
348
+ .\scripts\sync-skills.ps1 -Action Status
349
+ ```
350
+
351
+ ### Automated Updates
352
+
353
+ The sync script can be extended to:
354
+
355
+ - Pull from upstream repositories
356
+ - Check for updates
357
+ - Merge new skills
358
+ - Resolve conflicts
359
+ - Generate reports
360
+
361
+ ## Performance Considerations
362
+
363
+ - **Caching**: Registry is cached for 1 hour
364
+ - **Max Results**: Limited to 50 skills per query
365
+ - **Loading**: Skills ordered by frequency of use
366
+ - **Symlinks**: Supported for deduplication
367
+
368
+ ## Best Practices
369
+
370
+ 1. **Keep Skills Focused**: One primary purpose per skill
371
+ 2. **Use Clear Names**: Descriptive, action-oriented names
372
+ 3. **Tag Thoroughly**: 3-10 relevant tags per skill
373
+ 4. **Document Well**: Clear capabilities and techniques
374
+ 5. **Version Consistently**: Follow semantic versioning
375
+ 6. **Test Validation**: Run sync script after changes
376
+ 7. **Update Registry**: Always update after adding skills
377
+
378
+ ---
379
+
380
+ **Last Updated**: 2026-03-15
381
+ **Structure Version**: 1.0.0
382
+