@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,70 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: AI.AGENT.PATTERNS
5
+ TAG: AI.AGENT.PATTERNS.AGENT_DESIGN_PATTERNS
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#00FFFF
9
+ FLUO=#00CED1
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = agent design patterns skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for agent-patterns within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/agent-patterns/agent-design-patterns/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Agent Patterns and Architectures
33
+
34
+ **Expert in**: Building scalable, maintainable agent systems using proven design patterns and best practices.
35
+
36
+ ## Capabilities
37
+
38
+ - Implement ReAct (Reasoning + Acting) pattern
39
+ - Design tool-using agents with autonomous decision-making
40
+ - Create planning agents with goal decomposition
41
+ - Build reflection and self-improvement mechanisms
42
+ - Implement hierarchical reasoning (System 1 / System 2)
43
+ - Design agentic loops with memory and state
44
+ - Create specialized agent roles and personas
45
+ - Implement agent memory systems (short-term, long-term)
46
+
47
+ ## Use this skill when:
48
+
49
+ - Building autonomous agents that use tools
50
+ - Implementing complex reasoning workflows
51
+ - Creating agents that improve over time
52
+ - Designing agent systems with specialized roles
53
+ - Building agents that plan and execute multi-step tasks
54
+ - Implementing agent-based research systems
55
+ - Creating agents with persistent memory
56
+
57
+ ## Key techniques
58
+
59
+ - ReAct loops (Thought → Action → Observation)
60
+ - Tool calling and function composition
61
+ - Goal tree decomposition
62
+ - Monte Carlo tree search for planning
63
+ - Iterative refinement and reflection
64
+ - Memory-augmented agents
65
+ - Agent personas and role-based behavior
66
+ - Skill stacking and tool composition
67
+
68
+ ## Tags
69
+
70
+ `agents` `patterns` `reasoning` `tool-use` `planning` `autonomous`
@@ -0,0 +1,71 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: AI.SKILL.AI_ML
5
+ TAG: AI.SKILL.AI_ML.LLM_PROMPTING
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#39FF14
9
+ FLUO=#0DFF94
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = llm prompting skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for ai-ml within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/ai-ml/llm-prompting/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # LLM Prompting and Engineering
33
+
34
+ **Expert in**: Writing effective prompts, prompt engineering, and working with large language models to achieve consistent, high-quality outputs.
35
+
36
+ ## Capabilities
37
+
38
+ - Write clear, effective prompts with proper instruction structuring
39
+ - Structure complex prompts with examples and demonstrations
40
+ - Use few-shot and zero-shot techniques appropriately
41
+ - Implement chain-of-thought and step-by-step reasoning
42
+ - Create system prompts and instructions with proper role-setting
43
+ - Handle edge cases, errors, and failure modes
44
+ - Optimize for specific models and model behavior
45
+ - Evaluate prompt effectiveness with metrics
46
+ - Design prompt templates and parameterization
47
+ - Implement in-context learning strategies
48
+ - Handle prompt injection and security concerns
49
+ - Create multi-turn conversation flows
50
+
51
+ ## Use this skill when:
52
+
53
+ - Improving LLM output quality
54
+ - Creating prompt templates
55
+ - Handling complex tasks
56
+ - Getting consistent results
57
+ - Debugging model behavior
58
+ - Optimizing token usage
59
+
60
+ ## Key techniques
61
+
62
+ - Prompt structure and clarity
63
+ - Few-shot and zero-shot prompting
64
+ - Chain-of-thought reasoning
65
+ - Role-based prompts
66
+ - Output formatting and constraints
67
+ - Temperature and parameter tuning
68
+
69
+ ## Tags
70
+
71
+ `llm` `prompting` `ai` `engineering` `gpt`
@@ -0,0 +1,67 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: AI.SKILL.AI_ML
5
+ TAG: AI.SKILL.AI_ML.ML_MODEL_DEVELOPMENT
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#39FF14
9
+ FLUO=#0DFF94
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = ml model development skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for ai-ml within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/ai-ml/ml-model-development/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Machine Learning Model Development
33
+
34
+ **Expert in**: Building, training, and evaluating machine learning models with scikit-learn, TensorFlow, and PyTorch.
35
+
36
+ ## Capabilities
37
+
38
+ - Prepare and preprocess training data
39
+ - Build classification and regression models
40
+ - Handle imbalanced datasets
41
+ - Feature engineering and selection
42
+ - Model evaluation and validation
43
+ - Hyperparameter tuning
44
+ - Handle overfitting and underfitting
45
+ - Deploy ML models
46
+
47
+ ## Use this skill when:
48
+
49
+ - Building classification/regression models
50
+ - Preparing ML datasets
51
+ - Feature engineering
52
+ - Model evaluation and selection
53
+ - Hyperparameter optimization
54
+ - Deploying models to production
55
+
56
+ ## Key techniques
57
+
58
+ - Data preprocessing and normalization
59
+ - Train/validation/test splits and cross-validation
60
+ - Feature scaling and encoding
61
+ - Scikit-learn pipelines
62
+ - Model evaluation metrics
63
+ - GridSearchCV and cross-validation
64
+
65
+ ## Tags
66
+
67
+ `machine-learning` `scikit-learn` `tensorflow` `pytorch` `data-science`
@@ -0,0 +1,71 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: AI.SKILL.AI_ML
5
+ TAG: AI.SKILL.AI_ML.MULTIMODAL_SYSTEMS
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#39FF14
9
+ FLUO=#0DFF94
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = multimodal systems skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for ai-ml within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/ai-ml/multimodal-systems/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Multimodal Systems
33
+
34
+ **Expert in**: Building systems that work with multiple modalities (text, images, audio, video) for comprehensive AI understanding.
35
+
36
+ ## Capabilities
37
+
38
+ - Integrate vision models for image understanding
39
+ - Build text-to-image generation systems
40
+ - Implement audio processing and transcription
41
+ - Create video understanding systems
42
+ - Design cross-modal retrieval
43
+ - Build multimodal RAG systems
44
+ - Implement multimodal fusion strategies
45
+ - Handle modality-specific challenges
46
+
47
+ ## Use this skill when:
48
+
49
+ - Building systems understanding images
50
+ - Implementing audio/speech processing
51
+ - Creating generative image systems
52
+ - Processing video content
53
+ - Cross-modal search and retrieval
54
+ - Multimodal document understanding
55
+ - Building comprehensive AI systems
56
+ - Accessibility through multiple modalities
57
+
58
+ ## Key techniques
59
+
60
+ - Vision transformers (ViT)
61
+ - CLIP and cross-modal embedding
62
+ - Diffusion models for generation
63
+ - Audio embeddings and processing
64
+ - Video understanding and key frames
65
+ - DALL-E, Stable Diffusion, Midjourney APIs
66
+ - Multimodal transformers
67
+ - Modality alignment and fusion
68
+
69
+ ## Tags
70
+
71
+ `multimodal` `vision` `audio` `video` `image-generation` `cross-modal`
@@ -0,0 +1,71 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: AI.SKILL.AI_ML
5
+ TAG: AI.SKILL.AI_ML.RETRIEVAL_GENERATION_FINE_TUNING
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#39FF14
9
+ FLUO=#0DFF94
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = retrieval generation fine tuning skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for ai-ml within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/ai-ml/retrieval-generation-fine-tuning/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Model Fine-Tuning and Adaptation
33
+
34
+ **Expert in**: Adapting and fine-tuning language models for specific domains and use cases.
35
+
36
+ ## Capabilities
37
+
38
+ - Prepare training data for domain adaptation
39
+ - Implement LoRA (Low-Rank Adaptation) fine-tuning
40
+ - Create instruction tuning datasets
41
+ - Implement few-shot in-context learning
42
+ - Design domain-specific vocabularies
43
+ - Handle catastrophic forgetting in fine-tuning
44
+ - Evaluate fine-tuned model performance
45
+ - Implement model merging strategies
46
+
47
+ ## Use this skill when:
48
+
49
+ - Models need domain-specific knowledge
50
+ - Building specialized AI systems
51
+ - Wanting to preserve base model knowledge
52
+ - Reducing hallucinations in specific domains
53
+ - Adapting commercial models
54
+ - Creating proprietary model variants
55
+ - Improving task-specific performance
56
+ - Working with limited labeled data
57
+
58
+ ## Key techniques
59
+
60
+ - LoRA and QLoRA adaptation
61
+ - Instruction tuning and RLHF
62
+ - Few-shot prompting for adaptation
63
+ - Embedding fine-tuning
64
+ - Continued pretraining
65
+ - Model merging (TIES, linear interpolation)
66
+ - Evaluation metrics for fine-tuning
67
+ - Cost-effective adaptation
68
+
69
+ ## Tags
70
+
71
+ `fine-tuning` `llm` `adaptation` `lora` `domain-specific` `training`
@@ -0,0 +1,67 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: AI.SKILL.ARCHITECTURE
5
+ TAG: AI.SKILL.ARCHITECTURE.SYSTEM_DESIGN
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#39FF14
9
+ FLUO=#0DFF94
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = system design skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for architecture within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/architecture/system-design/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # System Design and Architecture
33
+
34
+ **Expert in**: Designing scalable, maintainable systems and architectural patterns.
35
+
36
+ ## Capabilities
37
+
38
+ - Design distributed systems
39
+ - Plan microservices architectures
40
+ - Database design and schema
41
+ - API design and REST principles
42
+ - Caching strategies
43
+ - Message queues and event-driven systems
44
+ - Scalability and performance planning
45
+ - System reliability and resilience
46
+
47
+ ## Use this skill when:
48
+
49
+ - Planning new systems
50
+ - Architectural reviews
51
+ - Performance optimization
52
+ - Scalability planning
53
+ - Database design
54
+ - Component interaction design
55
+
56
+ ## Key techniques
57
+
58
+ - Design patterns (Factory, Singleton, Observer, etc.)
59
+ - SOLID principles
60
+ - Database normalization and denormalization
61
+ - CAP theorem and consistency models
62
+ - Load balancing and sharding
63
+ - Disaster recovery planning
64
+
65
+ ## Tags
66
+
67
+ `architecture` `system-design` `distributed-systems` `scalability`
@@ -0,0 +1,64 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: DEV.ANALYSIS
5
+ TAG: DEV.ANALYSIS.REFACTORING
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#FF1493
9
+ FLUO=#FF69B4
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = refactoring skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for code-analysis within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/code-analysis/refactoring/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Refactoring Code
33
+
34
+ **Expert in**: Restructuring code to improve readability, maintainability, and performance without changing behavior.
35
+
36
+ ## Capabilities
37
+
38
+ - Extract methods and classes
39
+ - Simplify complex functions
40
+ - Rename variables and functions for clarity
41
+ - Remove duplication (DRY principle)
42
+ - Consolidate conditional logic
43
+ - Improve module organization
44
+
45
+ ## Use this skill when:
46
+
47
+ - Code is too complex or hard to understand
48
+ - There's significant duplication
49
+ - Need to improve code organization
50
+ - Preparing for feature additions
51
+ - Simplifying legacy code
52
+
53
+ ## Key techniques
54
+
55
+ - Extract method/variable patterns
56
+ - Consolidate duplicate code
57
+ - Simplify conditional branches
58
+ - Apply design patterns
59
+ - Module organization
60
+ - Naming improvements
61
+
62
+ ## Tags
63
+
64
+ `refactoring` `code-improvement` `maintainability` `architecture`
@@ -0,0 +1,71 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: DEV.ANALYSIS
5
+ TAG: DEV.ANALYSIS.SECURITY_VULNERABILITY_SCANNING
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#FF1493
9
+ FLUO=#FF69B4
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = security vulnerability scanning skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for code-analysis within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/code-analysis/security-vulnerability-scanning/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Security Vulnerability Scanning
33
+
34
+ **Expert in**: Identifying security vulnerabilities through automated scanning, analysis, and remediation.
35
+
36
+ ## Capabilities
37
+
38
+ - Implement SAST (Static Application Security Testing)
39
+ - Deploy DAST (Dynamic Application Security Testing)
40
+ - Manage dependency scanning and CVE tracking
41
+ - Implement container image scanning
42
+ - Create secret detection systems
43
+ - Analyze infrastructure misconfigurations
44
+ - Build security scorecard systems
45
+ - Implement automated remediation workflows
46
+
47
+ ## Use this skill when:
48
+
49
+ - Finding security vulnerabilities automatically
50
+ - Scanning dependencies for CVEs
51
+ - Compliance and audit requirements
52
+ - Pre-deployment security checking
53
+ - Infrastructure security verification
54
+ - Container security
55
+ - Secret management
56
+ - Continuous security monitoring
57
+
58
+ ## Key techniques
59
+
60
+ - Semgrep for static analysis
61
+ - OWASP ZAP for dynamic testing
62
+ - Snyk, Dependabot for dependency scanning
63
+ - Trivy for container scanning
64
+ - SonarQube for code quality and security
65
+ - GitGuardian for secret detection
66
+ - Terraform security scanning
67
+ - Supply chain security (SBOM, provenance)
68
+
69
+ ## Tags
70
+
71
+ `security` `vulnerability` `scanning` `sast` `dast` `compliance`
@@ -0,0 +1,64 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: DEV.ANALYSIS
5
+ TAG: DEV.ANALYSIS.STATIC_ANALYSIS
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#FF1493
9
+ FLUO=#FF69B4
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = static analysis skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for code-analysis within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/code-analysis/static-analysis/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Static Code Analysis
33
+
34
+ **Expert in**: Analyzing code for patterns, anti-patterns, complexity, and potential issues without execution.
35
+
36
+ ## Capabilities
37
+
38
+ - Identify code smells and anti-patterns
39
+ - Calculate cyclomatic complexity
40
+ - Detect dead code and unused variables
41
+ - Find security vulnerabilities
42
+ - Analyze architectural violations
43
+ - Identify performance anti-patterns
44
+
45
+ ## Use this skill when:
46
+
47
+ - You need to review code for quality issues
48
+ - Assessing codebase health
49
+ - Finding security vulnerabilities
50
+ - Identifying refactoring opportunities
51
+ - Analyzing architectural decisions
52
+
53
+ ## Key techniques
54
+
55
+ - AST-based code analysis
56
+ - Metric calculations (complexity, coupling, cohesion)
57
+ - Pattern matching against known issues
58
+ - Dependency graph analysis
59
+ - Security pattern detection
60
+ - Performance analysis
61
+
62
+ ## Tags
63
+
64
+ `code-analysis` `quality` `security` `performance` `refactoring`
@@ -0,0 +1,70 @@
1
+ /*
2
+ LEEWAY HEADER — DO NOT REMOVE
3
+
4
+ REGION: DEV.CODEGEN
5
+ TAG: DEV.CODEGEN.FULL_STACK_APPLICATION
6
+
7
+ COLOR_ONION_HEX:
8
+ NEON=#39FF14
9
+ FLUO=#0DFF94
10
+ PASTEL=#E8F5E9
11
+
12
+ ICON_ASCII:
13
+ family=lucide
14
+ glyph=zap
15
+
16
+ 5WH:
17
+ WHAT = full stack application skill for Leeway-compliant AI systems
18
+ WHY = Provides capabilities for code-generation within the AIskills ecosystem
19
+ WHO = Leeway Industries (By Leonard Jerome Lee)
20
+ WHERE = skills/code-generation/full-stack-application/SKILL.md
21
+ WHEN = 2026
22
+ HOW = Leeway-governed skill.md definition with structured capabilities and tags
23
+
24
+ AGENTS:
25
+ ASSESS
26
+ AUDIT
27
+
28
+ LICENSE:
29
+ MIT
30
+ */
31
+
32
+ # Full-Stack Application Delivery
33
+
34
+ **Expert in**: Building complete, production-ready applications from requirements to deployment, integrating frontend, backend, database, and infrastructure.
35
+
36
+ ## Capabilities
37
+
38
+ - Design complete application architectures
39
+ - Scaffold full-stack applications with best practices
40
+ - Integrate frontend, API, and data layers
41
+ - Implement authentication and authorization
42
+ - Create end-to-end data flows
43
+ - Package applications for deployment
44
+ - Create comprehensive test coverage
45
+ - Document applications for maintainability
46
+
47
+ ## Use this skill when:
48
+
49
+ - Building new applications from scratch
50
+ - Need complete end-to-end solutions
51
+ - Creating prototypes rapidly
52
+ - Scaling applications
53
+ - Integrating multiple systems
54
+ - Creating reference implementations
55
+ - Training/onboarding on full-stack patterns
56
+
57
+ ## Key techniques
58
+
59
+ - Monolithic vs. microservices trade-offs
60
+ - API contract design and versioning
61
+ - Authentication flows (JWT, OAuth2, OIDC)
62
+ - Database migration strategies
63
+ - Frontend-backend communication patterns
64
+ - Testing pyramid implementation
65
+ - Containerization and deployment
66
+ - Infrastructure-application integration
67
+
68
+ ## Tags
69
+
70
+ `full-stack` `application` `scaffolding` `architecture` `integration` `complete`