@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,1117 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0.0",
|
|
3
|
+
"lastUpdated": "2026-03-15T12:00:00Z",
|
|
4
|
+
"totalSkills": 44,
|
|
5
|
+
"totalCategories": 24,
|
|
6
|
+
"description": "Comprehensive AI Agent and Full-Stack Development Skills Library with Agentic Patterns, Orchestration, and Production Systems",
|
|
7
|
+
"skills": [
|
|
8
|
+
{
|
|
9
|
+
"name": "TypeScript Code Generation",
|
|
10
|
+
"category": "code-generation",
|
|
11
|
+
"path": "skills/code-generation/typescript-codegen",
|
|
12
|
+
"version": "1.0.0",
|
|
13
|
+
"tags": [
|
|
14
|
+
"typescript",
|
|
15
|
+
"javascript",
|
|
16
|
+
"code-generation",
|
|
17
|
+
"types",
|
|
18
|
+
"modules"
|
|
19
|
+
],
|
|
20
|
+
"description": "Generating production-ready TypeScript code, interfaces, types, and complete modules from specifications.",
|
|
21
|
+
"capabilities": [
|
|
22
|
+
"Generate type-safe code",
|
|
23
|
+
"Create interfaces and types",
|
|
24
|
+
"React components",
|
|
25
|
+
"Node.js server code"
|
|
26
|
+
],
|
|
27
|
+
"dependency": null,
|
|
28
|
+
"enabled": true,
|
|
29
|
+
"source": "internal"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Python Code Generation",
|
|
33
|
+
"category": "code-generation",
|
|
34
|
+
"path": "skills/code-generation/python-codegen",
|
|
35
|
+
"version": "1.0.0",
|
|
36
|
+
"tags": ["python", "code-generation", "dataclasses", "async", "fastapi"],
|
|
37
|
+
"description": "Generating Pythonic, idiomatic code with proper type hints, docstrings, and project structure.",
|
|
38
|
+
"capabilities": [
|
|
39
|
+
"Python modules",
|
|
40
|
+
"Dataclasses and Pydantic",
|
|
41
|
+
"FastAPI applications",
|
|
42
|
+
"Type hints"
|
|
43
|
+
],
|
|
44
|
+
"dependency": null,
|
|
45
|
+
"enabled": true,
|
|
46
|
+
"source": "internal"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "Full-Stack Application Delivery",
|
|
50
|
+
"category": "code-generation",
|
|
51
|
+
"path": "skills/code-generation/full-stack-application",
|
|
52
|
+
"version": "1.0.0",
|
|
53
|
+
"tags": [
|
|
54
|
+
"full-stack",
|
|
55
|
+
"application",
|
|
56
|
+
"scaffolding",
|
|
57
|
+
"architecture",
|
|
58
|
+
"integration",
|
|
59
|
+
"complete"
|
|
60
|
+
],
|
|
61
|
+
"description": "Building complete, production-ready applications from requirements to deployment with integrated frontend, backend, database, and infrastructure.",
|
|
62
|
+
"capabilities": [
|
|
63
|
+
"Complete application architectures",
|
|
64
|
+
"Frontend + API + Database",
|
|
65
|
+
"End-to-end data flows",
|
|
66
|
+
"Comprehensive testing"
|
|
67
|
+
],
|
|
68
|
+
"dependency": null,
|
|
69
|
+
"enabled": true,
|
|
70
|
+
"source": "internal"
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"name": "Microservices Architecture",
|
|
74
|
+
"category": "code-generation",
|
|
75
|
+
"path": "skills/code-generation/microservices-architecture",
|
|
76
|
+
"version": "1.0.0",
|
|
77
|
+
"tags": [
|
|
78
|
+
"microservices",
|
|
79
|
+
"architecture",
|
|
80
|
+
"distributed",
|
|
81
|
+
"ddd",
|
|
82
|
+
"scalability",
|
|
83
|
+
"resilience"
|
|
84
|
+
],
|
|
85
|
+
"description": "Designing and implementing scalable microservices architectures with proper decomposition, communication, and deployment strategies.",
|
|
86
|
+
"capabilities": [
|
|
87
|
+
"Service boundaries",
|
|
88
|
+
"Inter-service communication",
|
|
89
|
+
"Distributed resilience",
|
|
90
|
+
"Deployment strategies"
|
|
91
|
+
],
|
|
92
|
+
"dependency": null,
|
|
93
|
+
"enabled": true,
|
|
94
|
+
"source": "internal"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "Static Code Analysis",
|
|
98
|
+
"category": "code-analysis",
|
|
99
|
+
"path": "skills/code-analysis/static-analysis",
|
|
100
|
+
"version": "1.0.0",
|
|
101
|
+
"tags": [
|
|
102
|
+
"code-analysis",
|
|
103
|
+
"quality",
|
|
104
|
+
"security",
|
|
105
|
+
"performance",
|
|
106
|
+
"refactoring"
|
|
107
|
+
],
|
|
108
|
+
"description": "Analyzing code for patterns, anti-patterns, complexity, and potential issues without execution.",
|
|
109
|
+
"capabilities": [
|
|
110
|
+
"Code smells",
|
|
111
|
+
"Complexity analysis",
|
|
112
|
+
"Dead code detection",
|
|
113
|
+
"Security vulnerabilities"
|
|
114
|
+
],
|
|
115
|
+
"dependency": null,
|
|
116
|
+
"enabled": true,
|
|
117
|
+
"source": "internal"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "Refactoring Code",
|
|
121
|
+
"category": "code-analysis",
|
|
122
|
+
"path": "skills/code-analysis/refactoring",
|
|
123
|
+
"version": "1.0.0",
|
|
124
|
+
"tags": [
|
|
125
|
+
"refactoring",
|
|
126
|
+
"code-improvement",
|
|
127
|
+
"maintainability",
|
|
128
|
+
"architecture"
|
|
129
|
+
],
|
|
130
|
+
"description": "Restructuring code to improve readability, maintainability, and performance without changing behavior.",
|
|
131
|
+
"capabilities": [
|
|
132
|
+
"Extract methods",
|
|
133
|
+
"Remove duplication",
|
|
134
|
+
"Simplify logic",
|
|
135
|
+
"Improve organization"
|
|
136
|
+
],
|
|
137
|
+
"dependency": null,
|
|
138
|
+
"enabled": true,
|
|
139
|
+
"source": "internal"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "Security Vulnerability Scanning",
|
|
143
|
+
"category": "code-analysis",
|
|
144
|
+
"path": "skills/code-analysis/security-vulnerability-scanning",
|
|
145
|
+
"version": "1.0.0",
|
|
146
|
+
"tags": [
|
|
147
|
+
"security",
|
|
148
|
+
"vulnerability",
|
|
149
|
+
"scanning",
|
|
150
|
+
"sast",
|
|
151
|
+
"dast",
|
|
152
|
+
"compliance"
|
|
153
|
+
],
|
|
154
|
+
"description": "Identifying security vulnerabilities through automated scanning, analysis, and remediation strategies.",
|
|
155
|
+
"capabilities": [
|
|
156
|
+
"SAST scanning",
|
|
157
|
+
"DAST testing",
|
|
158
|
+
"Dependency scanning",
|
|
159
|
+
"Container scanning",
|
|
160
|
+
"Secret detection"
|
|
161
|
+
],
|
|
162
|
+
"dependency": null,
|
|
163
|
+
"enabled": true,
|
|
164
|
+
"source": "internal"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "Pandas Data Analysis",
|
|
168
|
+
"category": "data-analysis",
|
|
169
|
+
"path": "skills/data-analysis/pandas-analysis",
|
|
170
|
+
"version": "1.0.0",
|
|
171
|
+
"tags": [
|
|
172
|
+
"python",
|
|
173
|
+
"data-analysis",
|
|
174
|
+
"pandas",
|
|
175
|
+
"statistics",
|
|
176
|
+
"visualization"
|
|
177
|
+
],
|
|
178
|
+
"description": "Analyzing, transforming, and visualizing data using Pandas and Python data science tools.",
|
|
179
|
+
"capabilities": [
|
|
180
|
+
"Data loading and cleaning",
|
|
181
|
+
"Transformations",
|
|
182
|
+
"Statistical analysis",
|
|
183
|
+
"Visualizations"
|
|
184
|
+
],
|
|
185
|
+
"dependency": null,
|
|
186
|
+
"enabled": true,
|
|
187
|
+
"source": "internal"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"name": "Advanced Data Analytics",
|
|
191
|
+
"category": "data-analysis",
|
|
192
|
+
"path": "skills/data-analysis/advanced-analytics",
|
|
193
|
+
"version": "1.0.0",
|
|
194
|
+
"tags": [
|
|
195
|
+
"analytics",
|
|
196
|
+
"data-science",
|
|
197
|
+
"statistics",
|
|
198
|
+
"forecasting",
|
|
199
|
+
"testing",
|
|
200
|
+
"insights"
|
|
201
|
+
],
|
|
202
|
+
"description": "Performing sophisticated data analysis including statistical testing, causal inference, and ML-based insights.",
|
|
203
|
+
"capabilities": [
|
|
204
|
+
"A/B testing",
|
|
205
|
+
"Causal inference",
|
|
206
|
+
"Forecasting",
|
|
207
|
+
"Clustering",
|
|
208
|
+
"Anomaly detection"
|
|
209
|
+
],
|
|
210
|
+
"dependency": null,
|
|
211
|
+
"enabled": true,
|
|
212
|
+
"source": "internal"
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "Dockerfile Creation",
|
|
216
|
+
"category": "devops",
|
|
217
|
+
"path": "skills/devops/dockerfile-creation",
|
|
218
|
+
"version": "1.0.0",
|
|
219
|
+
"tags": ["docker", "devops", "containerization", "ci-cd", "security"],
|
|
220
|
+
"description": "Creating efficient, secure, and maintainable Docker containers for applications.",
|
|
221
|
+
"capabilities": [
|
|
222
|
+
"Multi-stage Dockerfiles",
|
|
223
|
+
"Image optimization",
|
|
224
|
+
"Security best practices",
|
|
225
|
+
"Health checks"
|
|
226
|
+
],
|
|
227
|
+
"dependency": null,
|
|
228
|
+
"enabled": true,
|
|
229
|
+
"source": "internal"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"name": "Kubernetes Deployment",
|
|
233
|
+
"category": "devops",
|
|
234
|
+
"path": "skills/devops/kubernetes-deployment",
|
|
235
|
+
"version": "1.0.0",
|
|
236
|
+
"tags": [
|
|
237
|
+
"kubernetes",
|
|
238
|
+
"devops",
|
|
239
|
+
"container-orchestration",
|
|
240
|
+
"deployment",
|
|
241
|
+
"scaling"
|
|
242
|
+
],
|
|
243
|
+
"description": "Writing Kubernetes manifests, configuring deployments, and managing cluster operations.",
|
|
244
|
+
"capabilities": [
|
|
245
|
+
"YAML manifests",
|
|
246
|
+
"Resource configuration",
|
|
247
|
+
"Health checks",
|
|
248
|
+
"Scaling strategies"
|
|
249
|
+
],
|
|
250
|
+
"dependency": null,
|
|
251
|
+
"enabled": true,
|
|
252
|
+
"source": "internal"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"name": "Infrastructure-as-Code",
|
|
256
|
+
"category": "infrastructure",
|
|
257
|
+
"path": "skills/infrastructure/infrastructure-as-code",
|
|
258
|
+
"version": "1.0.0",
|
|
259
|
+
"tags": [
|
|
260
|
+
"infrastructure",
|
|
261
|
+
"iac",
|
|
262
|
+
"terraform",
|
|
263
|
+
"cloudformation",
|
|
264
|
+
"aws",
|
|
265
|
+
"automation"
|
|
266
|
+
],
|
|
267
|
+
"description": "Managing infrastructure through code with IaC tools, enabling reproducible and versionable deployments.",
|
|
268
|
+
"capabilities": [
|
|
269
|
+
"Terraform templates",
|
|
270
|
+
"Multi-environment setup",
|
|
271
|
+
"Modular components",
|
|
272
|
+
"Testing"
|
|
273
|
+
],
|
|
274
|
+
"dependency": null,
|
|
275
|
+
"enabled": true,
|
|
276
|
+
"source": "internal"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"name": "CI/CD Pipeline Engineering",
|
|
280
|
+
"category": "infrastructure",
|
|
281
|
+
"path": "skills/infrastructure/cicd-pipelines",
|
|
282
|
+
"version": "1.0.0",
|
|
283
|
+
"tags": [
|
|
284
|
+
"ci-cd",
|
|
285
|
+
"automation",
|
|
286
|
+
"devops",
|
|
287
|
+
"github-actions",
|
|
288
|
+
"deployment",
|
|
289
|
+
"pipelines"
|
|
290
|
+
],
|
|
291
|
+
"description": "Building automated, reliable continuous integration and deployment pipelines for software delivery.",
|
|
292
|
+
"capabilities": [
|
|
293
|
+
"Workflow design",
|
|
294
|
+
"Build automation",
|
|
295
|
+
"Deployment strategies",
|
|
296
|
+
"Testing integration"
|
|
297
|
+
],
|
|
298
|
+
"dependency": null,
|
|
299
|
+
"enabled": true,
|
|
300
|
+
"source": "internal"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "JavaScript Debugging",
|
|
304
|
+
"category": "debugging",
|
|
305
|
+
"path": "skills/debugging/javascript-debugging",
|
|
306
|
+
"version": "1.0.0",
|
|
307
|
+
"tags": ["javascript", "debugging", "devtools", "nodejs", "performance"],
|
|
308
|
+
"description": "Debugging JavaScript code using DevTools, Node.js debugger, and effective debugging techniques.",
|
|
309
|
+
"capabilities": [
|
|
310
|
+
"DevTools debugging",
|
|
311
|
+
"Breakpoints",
|
|
312
|
+
"Variable inspection",
|
|
313
|
+
"Performance profiling"
|
|
314
|
+
],
|
|
315
|
+
"dependency": null,
|
|
316
|
+
"enabled": true,
|
|
317
|
+
"source": "internal"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "Python Debugging",
|
|
321
|
+
"category": "debugging",
|
|
322
|
+
"path": "skills/debugging/python-debugging",
|
|
323
|
+
"version": "1.0.0",
|
|
324
|
+
"tags": ["python", "debugging", "pdb", "performance", "profiling"],
|
|
325
|
+
"description": "Debugging Python code using pdb, third-party debuggers, and effective debugging techniques.",
|
|
326
|
+
"capabilities": [
|
|
327
|
+
"pdb debugging",
|
|
328
|
+
"IDE debuggers",
|
|
329
|
+
"Performance profiling",
|
|
330
|
+
"Memory analysis"
|
|
331
|
+
],
|
|
332
|
+
"dependency": null,
|
|
333
|
+
"enabled": true,
|
|
334
|
+
"source": "internal"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"name": "Unit Testing",
|
|
338
|
+
"category": "testing",
|
|
339
|
+
"path": "skills/testing/unit-testing",
|
|
340
|
+
"version": "1.0.0",
|
|
341
|
+
"tags": ["testing", "jest", "pytest", "unittest", "mocking"],
|
|
342
|
+
"description": "Writing comprehensive unit tests using frameworks like Jest, Pytest, and Vitest.",
|
|
343
|
+
"capabilities": [
|
|
344
|
+
"Jest/Pytest",
|
|
345
|
+
"Mocking",
|
|
346
|
+
"Test fixtures",
|
|
347
|
+
"Code coverage"
|
|
348
|
+
],
|
|
349
|
+
"dependency": null,
|
|
350
|
+
"enabled": true,
|
|
351
|
+
"source": "internal"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "Integration Testing",
|
|
355
|
+
"category": "testing",
|
|
356
|
+
"path": "skills/testing/integration-testing",
|
|
357
|
+
"version": "1.0.0",
|
|
358
|
+
"tags": ["testing", "integration", "api", "database", "e2e"],
|
|
359
|
+
"description": "Writing integration tests that verify multiple components work together correctly.",
|
|
360
|
+
"capabilities": [
|
|
361
|
+
"API testing",
|
|
362
|
+
"Database tests",
|
|
363
|
+
"Test containers",
|
|
364
|
+
"E2E workflows"
|
|
365
|
+
],
|
|
366
|
+
"dependency": null,
|
|
367
|
+
"enabled": true,
|
|
368
|
+
"source": "internal"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"name": "Advanced Testing Strategies",
|
|
372
|
+
"category": "testing",
|
|
373
|
+
"path": "skills/testing/advanced-testing-strategies",
|
|
374
|
+
"version": "1.0.0",
|
|
375
|
+
"tags": ["testing", "quality", "tdd", "bdd", "comprehensive", "strategy"],
|
|
376
|
+
"description": "Designing comprehensive testing strategies combining multiple testing types for maximum coverage.",
|
|
377
|
+
"capabilities": [
|
|
378
|
+
"Testing pyramids",
|
|
379
|
+
"Property-based testing",
|
|
380
|
+
"Mutation testing",
|
|
381
|
+
"Chaos engineering"
|
|
382
|
+
],
|
|
383
|
+
"dependency": null,
|
|
384
|
+
"enabled": true,
|
|
385
|
+
"source": "internal"
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"name": "Load Testing and Capacity Planning",
|
|
389
|
+
"category": "testing",
|
|
390
|
+
"path": "skills/testing/load-testing-capacity",
|
|
391
|
+
"version": "1.0.0",
|
|
392
|
+
"tags": [
|
|
393
|
+
"testing",
|
|
394
|
+
"performance",
|
|
395
|
+
"load-testing",
|
|
396
|
+
"capacity",
|
|
397
|
+
"scalability",
|
|
398
|
+
"infrastructure"
|
|
399
|
+
],
|
|
400
|
+
"description": "Designing, executing, and analyzing load tests to understand system limits and plan capacity.",
|
|
401
|
+
"capabilities": [
|
|
402
|
+
"Load test design",
|
|
403
|
+
"Bottleneck identification",
|
|
404
|
+
"Capacity planning",
|
|
405
|
+
"Infrastructure optimization"
|
|
406
|
+
],
|
|
407
|
+
"dependency": null,
|
|
408
|
+
"enabled": true,
|
|
409
|
+
"source": "internal"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"name": "React Development",
|
|
413
|
+
"category": "web-development",
|
|
414
|
+
"path": "skills/web-development/react-development",
|
|
415
|
+
"version": "2.0.0",
|
|
416
|
+
"tags": [
|
|
417
|
+
"react",
|
|
418
|
+
"javascript",
|
|
419
|
+
"hooks",
|
|
420
|
+
"state-management",
|
|
421
|
+
"frontend",
|
|
422
|
+
"performance",
|
|
423
|
+
"component-design"
|
|
424
|
+
],
|
|
425
|
+
"description": "Building modern React applications with hooks, state management, performance optimization, and enterprise patterns.",
|
|
426
|
+
"capabilities": [
|
|
427
|
+
"Functional components",
|
|
428
|
+
"Hooks",
|
|
429
|
+
"Custom hooks",
|
|
430
|
+
"Performance optimization",
|
|
431
|
+
"Server components"
|
|
432
|
+
],
|
|
433
|
+
"dependency": null,
|
|
434
|
+
"enabled": true,
|
|
435
|
+
"source": "internal"
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"name": "CSS Styling and Layout",
|
|
439
|
+
"category": "web-development",
|
|
440
|
+
"path": "skills/web-development/css-styling",
|
|
441
|
+
"version": "1.0.0",
|
|
442
|
+
"tags": ["css", "styling", "responsive", "accessibility", "frontend"],
|
|
443
|
+
"description": "Creating responsive, accessible, and maintainable CSS with modern techniques.",
|
|
444
|
+
"capabilities": [
|
|
445
|
+
"Flexbox and Grid",
|
|
446
|
+
"Responsive design",
|
|
447
|
+
"Accessibility",
|
|
448
|
+
"CSS variables"
|
|
449
|
+
],
|
|
450
|
+
"dependency": null,
|
|
451
|
+
"enabled": true,
|
|
452
|
+
"source": "internal"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"name": "Advanced Frontend Patterns",
|
|
456
|
+
"category": "web-development",
|
|
457
|
+
"path": "skills/web-development/advanced-frontend-patterns",
|
|
458
|
+
"version": "1.0.0",
|
|
459
|
+
"tags": [
|
|
460
|
+
"frontend",
|
|
461
|
+
"React",
|
|
462
|
+
"patterns",
|
|
463
|
+
"state-management",
|
|
464
|
+
"real-time",
|
|
465
|
+
"performance"
|
|
466
|
+
],
|
|
467
|
+
"description": "Building sophisticated frontend applications using advanced patterns and frameworks.",
|
|
468
|
+
"capabilities": [
|
|
469
|
+
"Complex state management",
|
|
470
|
+
"Server-driven UI",
|
|
471
|
+
"Real-time collaboration",
|
|
472
|
+
"Offline-first"
|
|
473
|
+
],
|
|
474
|
+
"dependency": null,
|
|
475
|
+
"enabled": true,
|
|
476
|
+
"source": "internal"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
"name": "API Design and REST/GraphQL",
|
|
480
|
+
"category": "web-development",
|
|
481
|
+
"path": "skills/web-development/api-design",
|
|
482
|
+
"version": "1.0.0",
|
|
483
|
+
"tags": ["api", "rest", "graphql", "grpc", "design", "documentation"],
|
|
484
|
+
"description": "Designing and implementing robust, scalable APIs with REST, GraphQL, and gRPC.",
|
|
485
|
+
"capabilities": [
|
|
486
|
+
"REST API design",
|
|
487
|
+
"GraphQL schemas",
|
|
488
|
+
"gRPC services",
|
|
489
|
+
"API documentation"
|
|
490
|
+
],
|
|
491
|
+
"dependency": null,
|
|
492
|
+
"enabled": true,
|
|
493
|
+
"source": "internal"
|
|
494
|
+
},
|
|
495
|
+
{
|
|
496
|
+
"name": "LLM Prompting and Engineering",
|
|
497
|
+
"category": "ai-ml",
|
|
498
|
+
"path": "skills/ai-ml/llm-prompting",
|
|
499
|
+
"version": "2.0.0",
|
|
500
|
+
"tags": [
|
|
501
|
+
"llm",
|
|
502
|
+
"prompting",
|
|
503
|
+
"ai",
|
|
504
|
+
"engineering",
|
|
505
|
+
"optimization",
|
|
506
|
+
"testing"
|
|
507
|
+
],
|
|
508
|
+
"description": "Writing effective prompts and prompt engineering for maximum model performance with evaluation and iteration.",
|
|
509
|
+
"capabilities": [
|
|
510
|
+
"Prompt design",
|
|
511
|
+
"Few-shot learning",
|
|
512
|
+
"Chain-of-thought",
|
|
513
|
+
"Prompt evaluation",
|
|
514
|
+
"Optimization"
|
|
515
|
+
],
|
|
516
|
+
"dependency": null,
|
|
517
|
+
"enabled": true,
|
|
518
|
+
"source": "internal"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "Machine Learning Model Development",
|
|
522
|
+
"category": "ai-ml",
|
|
523
|
+
"path": "skills/ai-ml/ml-model-development",
|
|
524
|
+
"version": "1.0.0",
|
|
525
|
+
"tags": [
|
|
526
|
+
"machine-learning",
|
|
527
|
+
"scikit-learn",
|
|
528
|
+
"tensorflow",
|
|
529
|
+
"pytorch",
|
|
530
|
+
"data-science"
|
|
531
|
+
],
|
|
532
|
+
"description": "Building, training, and evaluating machine learning models with scikit-learn, TensorFlow, and PyTorch.",
|
|
533
|
+
"capabilities": [
|
|
534
|
+
"Data preprocessing",
|
|
535
|
+
"Model training",
|
|
536
|
+
"Evaluation",
|
|
537
|
+
"Hyperparameter tuning"
|
|
538
|
+
],
|
|
539
|
+
"dependency": null,
|
|
540
|
+
"enabled": true,
|
|
541
|
+
"source": "internal"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"name": "Model Fine-Tuning and Adaptation",
|
|
545
|
+
"category": "ai-ml",
|
|
546
|
+
"path": "skills/ai-ml/retrieval-generation-fine-tuning",
|
|
547
|
+
"version": "1.0.0",
|
|
548
|
+
"tags": [
|
|
549
|
+
"fine-tuning",
|
|
550
|
+
"llm",
|
|
551
|
+
"adaptation",
|
|
552
|
+
"lora",
|
|
553
|
+
"domain-specific",
|
|
554
|
+
"training"
|
|
555
|
+
],
|
|
556
|
+
"description": "Adapting and fine-tuning language models for specific domains and use cases.",
|
|
557
|
+
"capabilities": [
|
|
558
|
+
"LoRA fine-tuning",
|
|
559
|
+
"Instruction tuning",
|
|
560
|
+
"Domain adaptation",
|
|
561
|
+
"Model merging"
|
|
562
|
+
],
|
|
563
|
+
"dependency": null,
|
|
564
|
+
"enabled": true,
|
|
565
|
+
"source": "internal"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"name": "Multimodal Systems",
|
|
569
|
+
"category": "ai-ml",
|
|
570
|
+
"path": "skills/ai-ml/multimodal-systems",
|
|
571
|
+
"version": "1.0.0",
|
|
572
|
+
"tags": [
|
|
573
|
+
"multimodal",
|
|
574
|
+
"vision",
|
|
575
|
+
"audio",
|
|
576
|
+
"video",
|
|
577
|
+
"image-generation",
|
|
578
|
+
"cross-modal"
|
|
579
|
+
],
|
|
580
|
+
"description": "Building systems that work with multiple modalities (text, images, audio, video) for comprehensive AI understanding.",
|
|
581
|
+
"capabilities": [
|
|
582
|
+
"Vision models",
|
|
583
|
+
"Audio processing",
|
|
584
|
+
"Video understanding",
|
|
585
|
+
"Cross-modal retrieval"
|
|
586
|
+
],
|
|
587
|
+
"dependency": null,
|
|
588
|
+
"enabled": true,
|
|
589
|
+
"source": "internal"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
"name": "Code Security Analysis",
|
|
593
|
+
"category": "security",
|
|
594
|
+
"path": "skills/security/code-security",
|
|
595
|
+
"version": "1.0.0",
|
|
596
|
+
"tags": [
|
|
597
|
+
"security",
|
|
598
|
+
"vulnerabilities",
|
|
599
|
+
"owasp",
|
|
600
|
+
"cryptography",
|
|
601
|
+
"api-security"
|
|
602
|
+
],
|
|
603
|
+
"description": "Identifying and remediating security vulnerabilities in code.",
|
|
604
|
+
"capabilities": [
|
|
605
|
+
"Vulnerability detection",
|
|
606
|
+
"OWASP Top 10",
|
|
607
|
+
"Secure coding",
|
|
608
|
+
"Cryptography"
|
|
609
|
+
],
|
|
610
|
+
"dependency": null,
|
|
611
|
+
"enabled": true,
|
|
612
|
+
"source": "internal"
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "Secure Architecture Design",
|
|
616
|
+
"category": "security",
|
|
617
|
+
"path": "skills/security/secure-architecture",
|
|
618
|
+
"version": "1.0.0",
|
|
619
|
+
"tags": [
|
|
620
|
+
"security",
|
|
621
|
+
"architecture",
|
|
622
|
+
"design",
|
|
623
|
+
"compliance",
|
|
624
|
+
"zero-trust",
|
|
625
|
+
"defense-in-depth"
|
|
626
|
+
],
|
|
627
|
+
"description": "Designing systems with security built-in from the ground up using security principles and patterns.",
|
|
628
|
+
"capabilities": [
|
|
629
|
+
"Defense-in-depth",
|
|
630
|
+
"Zero-trust architecture",
|
|
631
|
+
"Threat modeling",
|
|
632
|
+
"Compliance frameworks"
|
|
633
|
+
],
|
|
634
|
+
"dependency": null,
|
|
635
|
+
"enabled": true,
|
|
636
|
+
"source": "internal"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
"name": "Authentication and Authorization",
|
|
640
|
+
"category": "security",
|
|
641
|
+
"path": "skills/security/authentication-authorization",
|
|
642
|
+
"version": "1.0.0",
|
|
643
|
+
"tags": [
|
|
644
|
+
"security",
|
|
645
|
+
"authentication",
|
|
646
|
+
"authorization",
|
|
647
|
+
"oauth2",
|
|
648
|
+
"oidc",
|
|
649
|
+
"access-control"
|
|
650
|
+
],
|
|
651
|
+
"description": "Implementing robust authentication and authorization systems that are both secure and user-friendly.",
|
|
652
|
+
"capabilities": ["OAuth2/OIDC", "JWT tokens", "MFA", "RBAC/ABAC", "SSO"],
|
|
653
|
+
"dependency": null,
|
|
654
|
+
"enabled": true,
|
|
655
|
+
"source": "internal"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
"name": "API Documentation",
|
|
659
|
+
"category": "documentation",
|
|
660
|
+
"path": "skills/documentation/api-documentation",
|
|
661
|
+
"version": "1.0.0",
|
|
662
|
+
"tags": ["documentation", "api", "openapi", "swagger", "specs"],
|
|
663
|
+
"description": "Creating clear, comprehensive API documentation with examples and interactive tools.",
|
|
664
|
+
"capabilities": [
|
|
665
|
+
"OpenAPI specs",
|
|
666
|
+
"Schema documentation",
|
|
667
|
+
"Code examples",
|
|
668
|
+
"Interactive docs"
|
|
669
|
+
],
|
|
670
|
+
"dependency": null,
|
|
671
|
+
"enabled": true,
|
|
672
|
+
"source": "internal"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"name": "System Design and Architecture",
|
|
676
|
+
"category": "architecture",
|
|
677
|
+
"path": "skills/architecture/system-design",
|
|
678
|
+
"version": "1.0.0",
|
|
679
|
+
"tags": [
|
|
680
|
+
"architecture",
|
|
681
|
+
"system-design",
|
|
682
|
+
"distributed-systems",
|
|
683
|
+
"scalability"
|
|
684
|
+
],
|
|
685
|
+
"description": "Designing scalable, maintainable systems and architectural patterns.",
|
|
686
|
+
"capabilities": [
|
|
687
|
+
"Distributed systems",
|
|
688
|
+
"Database design",
|
|
689
|
+
"Scalability",
|
|
690
|
+
"Design patterns"
|
|
691
|
+
],
|
|
692
|
+
"dependency": null,
|
|
693
|
+
"enabled": true,
|
|
694
|
+
"source": "internal"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "Database Design and Optimization",
|
|
698
|
+
"category": "database-design",
|
|
699
|
+
"path": "skills/database-design/database-design-optimization",
|
|
700
|
+
"version": "1.0.0",
|
|
701
|
+
"tags": [
|
|
702
|
+
"database",
|
|
703
|
+
"sql",
|
|
704
|
+
"optimization",
|
|
705
|
+
"schema-design",
|
|
706
|
+
"performance",
|
|
707
|
+
"scaling"
|
|
708
|
+
],
|
|
709
|
+
"description": "Designing scalable, efficient database systems with proper modeling, indexing, and query optimization.",
|
|
710
|
+
"capabilities": [
|
|
711
|
+
"Schema design",
|
|
712
|
+
"Indexing strategies",
|
|
713
|
+
"Query optimization",
|
|
714
|
+
"Partitioning",
|
|
715
|
+
"Caching"
|
|
716
|
+
],
|
|
717
|
+
"dependency": null,
|
|
718
|
+
"enabled": true,
|
|
719
|
+
"source": "internal"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
"name": "Git Workflow and Collaboration",
|
|
723
|
+
"category": "git-workflow",
|
|
724
|
+
"path": "skills/git-workflow/git-collaboration",
|
|
725
|
+
"version": "1.0.0",
|
|
726
|
+
"tags": ["git", "workflow", "collaboration", "version-control", "devops"],
|
|
727
|
+
"description": "Managing Git repositories, branching strategies, and collaborative workflows.",
|
|
728
|
+
"capabilities": [
|
|
729
|
+
"Branching strategies",
|
|
730
|
+
"Code reviews",
|
|
731
|
+
"Release management",
|
|
732
|
+
"Conflict resolution"
|
|
733
|
+
],
|
|
734
|
+
"dependency": null,
|
|
735
|
+
"enabled": true,
|
|
736
|
+
"source": "internal"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"name": "Error Handling and Resilience",
|
|
740
|
+
"category": "error-handling",
|
|
741
|
+
"path": "skills/error-handling/resilience-patterns",
|
|
742
|
+
"version": "1.0.0",
|
|
743
|
+
"tags": [
|
|
744
|
+
"resilience",
|
|
745
|
+
"error-handling",
|
|
746
|
+
"fault-tolerance",
|
|
747
|
+
"reliability",
|
|
748
|
+
"recovery",
|
|
749
|
+
"distributed"
|
|
750
|
+
],
|
|
751
|
+
"description": "Building fault-tolerant systems with comprehensive error handling, recovery strategies, and graceful degradation.",
|
|
752
|
+
"capabilities": [
|
|
753
|
+
"Retry strategies",
|
|
754
|
+
"Circuit breakers",
|
|
755
|
+
"Bulkhead patterns",
|
|
756
|
+
"Graceful degradation"
|
|
757
|
+
],
|
|
758
|
+
"dependency": null,
|
|
759
|
+
"enabled": true,
|
|
760
|
+
"source": "internal"
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
"name": "Performance Optimization Engineering",
|
|
764
|
+
"category": "performance-optimization",
|
|
765
|
+
"path": "skills/performance-optimization/performance-engineering",
|
|
766
|
+
"version": "1.0.0",
|
|
767
|
+
"tags": [
|
|
768
|
+
"performance",
|
|
769
|
+
"optimization",
|
|
770
|
+
"profiling",
|
|
771
|
+
"scalability",
|
|
772
|
+
"efficiency",
|
|
773
|
+
"monitoring"
|
|
774
|
+
],
|
|
775
|
+
"description": "Identifying bottlenecks and systematically optimizing systems for speed, throughput, and resource efficiency.",
|
|
776
|
+
"capabilities": [
|
|
777
|
+
"Profiling",
|
|
778
|
+
"Caching strategies",
|
|
779
|
+
"Query optimization",
|
|
780
|
+
"Async I/O",
|
|
781
|
+
"Load testing"
|
|
782
|
+
],
|
|
783
|
+
"dependency": null,
|
|
784
|
+
"enabled": true,
|
|
785
|
+
"source": "internal"
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"name": "Observability and Monitoring",
|
|
789
|
+
"category": "observability",
|
|
790
|
+
"path": "skills/observability/monitoring-and-observability",
|
|
791
|
+
"version": "1.0.0",
|
|
792
|
+
"tags": [
|
|
793
|
+
"observability",
|
|
794
|
+
"monitoring",
|
|
795
|
+
"logging",
|
|
796
|
+
"tracing",
|
|
797
|
+
"metrics",
|
|
798
|
+
"debugging"
|
|
799
|
+
],
|
|
800
|
+
"description": "Building comprehensive monitoring, logging, and tracing systems for production applications and agent systems.",
|
|
801
|
+
"capabilities": [
|
|
802
|
+
"Metrics collection",
|
|
803
|
+
"Structured logging",
|
|
804
|
+
"Distributed tracing",
|
|
805
|
+
"Alert rules",
|
|
806
|
+
"Dashboards"
|
|
807
|
+
],
|
|
808
|
+
"dependency": null,
|
|
809
|
+
"enabled": true,
|
|
810
|
+
"source": "internal"
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"name": "Multi-Agent Orchestration",
|
|
814
|
+
"category": "agent-orchestration",
|
|
815
|
+
"path": "skills/agent-orchestration/multi-agent-orchestration",
|
|
816
|
+
"version": "1.0.0",
|
|
817
|
+
"tags": [
|
|
818
|
+
"agents",
|
|
819
|
+
"orchestration",
|
|
820
|
+
"multi-agent",
|
|
821
|
+
"coordination",
|
|
822
|
+
"message-passing",
|
|
823
|
+
"distributed"
|
|
824
|
+
],
|
|
825
|
+
"description": "Coordinating multiple AI agents to work together on complex tasks through message passing, state management, and goal decomposition.",
|
|
826
|
+
"capabilities": [
|
|
827
|
+
"Agent communication",
|
|
828
|
+
"State synchronization",
|
|
829
|
+
"Parallel execution",
|
|
830
|
+
"Failure handling"
|
|
831
|
+
],
|
|
832
|
+
"dependency": null,
|
|
833
|
+
"enabled": true,
|
|
834
|
+
"source": "internal"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"name": "Agent Patterns and Architectures",
|
|
838
|
+
"category": "agent-patterns",
|
|
839
|
+
"path": "skills/agent-patterns/agent-design-patterns",
|
|
840
|
+
"version": "1.0.0",
|
|
841
|
+
"tags": [
|
|
842
|
+
"agents",
|
|
843
|
+
"patterns",
|
|
844
|
+
"reasoning",
|
|
845
|
+
"tool-use",
|
|
846
|
+
"planning",
|
|
847
|
+
"autonomous"
|
|
848
|
+
],
|
|
849
|
+
"description": "Building scalable, maintainable agent systems using proven design patterns and best practices.",
|
|
850
|
+
"capabilities": [
|
|
851
|
+
"ReAct pattern",
|
|
852
|
+
"Tool-using agents",
|
|
853
|
+
"Planning agents",
|
|
854
|
+
"Reflection mechanisms",
|
|
855
|
+
"Memory systems"
|
|
856
|
+
],
|
|
857
|
+
"dependency": null,
|
|
858
|
+
"enabled": true,
|
|
859
|
+
"source": "internal"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
"name": "Complex Workflow Composition",
|
|
863
|
+
"category": "workflow-composition",
|
|
864
|
+
"path": "skills/workflow-composition/workflow-orchestration",
|
|
865
|
+
"version": "1.0.0",
|
|
866
|
+
"tags": [
|
|
867
|
+
"workflows",
|
|
868
|
+
"orchestration",
|
|
869
|
+
"automation",
|
|
870
|
+
"pipelines",
|
|
871
|
+
"distributed-systems",
|
|
872
|
+
"etl"
|
|
873
|
+
],
|
|
874
|
+
"description": "Building, orchestrating, and managing complex multi-step workflows with error handling, branching, and dynamic execution.",
|
|
875
|
+
"capabilities": [
|
|
876
|
+
"Conditional workflows",
|
|
877
|
+
"Parallel execution",
|
|
878
|
+
"Stateful engines",
|
|
879
|
+
"Rollback logic"
|
|
880
|
+
],
|
|
881
|
+
"dependency": null,
|
|
882
|
+
"enabled": true,
|
|
883
|
+
"source": "internal"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"name": "Custom Tool Integration",
|
|
887
|
+
"category": "tool-integration",
|
|
888
|
+
"path": "skills/tool-integration/custom-tool-creation",
|
|
889
|
+
"version": "1.0.0",
|
|
890
|
+
"tags": [
|
|
891
|
+
"tools",
|
|
892
|
+
"integration",
|
|
893
|
+
"api",
|
|
894
|
+
"function-calling",
|
|
895
|
+
"tool-use",
|
|
896
|
+
"composability"
|
|
897
|
+
],
|
|
898
|
+
"description": "Creating, integrating, and managing custom tools and APIs for agents to use autonomously.",
|
|
899
|
+
"capabilities": [
|
|
900
|
+
"Tool interface design",
|
|
901
|
+
"Function calling",
|
|
902
|
+
"REST API wrappers",
|
|
903
|
+
"Tool composition"
|
|
904
|
+
],
|
|
905
|
+
"dependency": null,
|
|
906
|
+
"enabled": true,
|
|
907
|
+
"source": "internal"
|
|
908
|
+
},
|
|
909
|
+
{
|
|
910
|
+
"name": "RAG (Retrieval-Augmented Generation)",
|
|
911
|
+
"category": "rag-knowledge",
|
|
912
|
+
"path": "skills/rag-knowledge/rag-systems",
|
|
913
|
+
"version": "1.0.0",
|
|
914
|
+
"tags": [
|
|
915
|
+
"rag",
|
|
916
|
+
"retrieval",
|
|
917
|
+
"knowledge-management",
|
|
918
|
+
"embedding",
|
|
919
|
+
"semantic-search",
|
|
920
|
+
"grounding"
|
|
921
|
+
],
|
|
922
|
+
"description": "Building knowledge-grounded AI systems that retrieve and synthesize information from external sources.",
|
|
923
|
+
"capabilities": [
|
|
924
|
+
"RAG architectures",
|
|
925
|
+
"Document indexing",
|
|
926
|
+
"Semantic search",
|
|
927
|
+
"Knowledge graphs",
|
|
928
|
+
"Hallucination mitigation"
|
|
929
|
+
],
|
|
930
|
+
"dependency": null,
|
|
931
|
+
"enabled": true,
|
|
932
|
+
"source": "internal"
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
"name": "Advanced Prompt Optimization",
|
|
936
|
+
"category": "prompt-optimization",
|
|
937
|
+
"path": "skills/prompt-optimization/prompt-engineering-advanced",
|
|
938
|
+
"version": "1.0.0",
|
|
939
|
+
"tags": [
|
|
940
|
+
"prompting",
|
|
941
|
+
"optimization",
|
|
942
|
+
"llm",
|
|
943
|
+
"testing",
|
|
944
|
+
"iteration",
|
|
945
|
+
"evaluation"
|
|
946
|
+
],
|
|
947
|
+
"description": "Iteratively refining prompts for maximum model performance using testing, evaluation, and systematic optimization.",
|
|
948
|
+
"capabilities": [
|
|
949
|
+
"Evaluation metrics",
|
|
950
|
+
"A/B testing",
|
|
951
|
+
"Prompt templates",
|
|
952
|
+
"Few-shot optimization"
|
|
953
|
+
],
|
|
954
|
+
"dependency": null,
|
|
955
|
+
"enabled": true,
|
|
956
|
+
"source": "internal"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
"name": "Knowledge Synthesis and Research",
|
|
960
|
+
"category": "research",
|
|
961
|
+
"path": "skills/research/knowledge-synthesis",
|
|
962
|
+
"version": "1.0.0",
|
|
963
|
+
"tags": [
|
|
964
|
+
"research",
|
|
965
|
+
"synthesis",
|
|
966
|
+
"knowledge",
|
|
967
|
+
"fact-checking",
|
|
968
|
+
"multi-source",
|
|
969
|
+
"analysis"
|
|
970
|
+
],
|
|
971
|
+
"description": "Synthesizing information from multiple sources into coherent, actionable insights through agent-driven research.",
|
|
972
|
+
"capabilities": [
|
|
973
|
+
"Multi-source research",
|
|
974
|
+
"Fact-checking",
|
|
975
|
+
"Knowledge synthesis",
|
|
976
|
+
"Contradiction detection"
|
|
977
|
+
],
|
|
978
|
+
"dependency": null,
|
|
979
|
+
"enabled": true,
|
|
980
|
+
"source": "internal"
|
|
981
|
+
}
|
|
982
|
+
],
|
|
983
|
+
"categories": [
|
|
984
|
+
{
|
|
985
|
+
"name": "code-generation",
|
|
986
|
+
"displayName": "Code Generation",
|
|
987
|
+
"skillCount": 4
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
"name": "code-analysis",
|
|
991
|
+
"displayName": "Code Analysis",
|
|
992
|
+
"skillCount": 3
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"name": "data-analysis",
|
|
996
|
+
"displayName": "Data Analysis",
|
|
997
|
+
"skillCount": 2
|
|
998
|
+
},
|
|
999
|
+
{ "name": "devops", "displayName": "DevOps", "skillCount": 2 },
|
|
1000
|
+
{
|
|
1001
|
+
"name": "infrastructure",
|
|
1002
|
+
"displayName": "Infrastructure",
|
|
1003
|
+
"skillCount": 2
|
|
1004
|
+
},
|
|
1005
|
+
{ "name": "debugging", "displayName": "Debugging", "skillCount": 2 },
|
|
1006
|
+
{ "name": "testing", "displayName": "Testing", "skillCount": 4 },
|
|
1007
|
+
{
|
|
1008
|
+
"name": "web-development",
|
|
1009
|
+
"displayName": "Web Development",
|
|
1010
|
+
"skillCount": 4
|
|
1011
|
+
},
|
|
1012
|
+
{ "name": "ai-ml", "displayName": "AI/ML", "skillCount": 4 },
|
|
1013
|
+
{ "name": "security", "displayName": "Security", "skillCount": 3 },
|
|
1014
|
+
{
|
|
1015
|
+
"name": "documentation",
|
|
1016
|
+
"displayName": "Documentation",
|
|
1017
|
+
"skillCount": 1
|
|
1018
|
+
},
|
|
1019
|
+
{ "name": "architecture", "displayName": "Architecture", "skillCount": 1 },
|
|
1020
|
+
{
|
|
1021
|
+
"name": "database-design",
|
|
1022
|
+
"displayName": "Database Design",
|
|
1023
|
+
"skillCount": 1
|
|
1024
|
+
},
|
|
1025
|
+
{ "name": "git-workflow", "displayName": "Git Workflow", "skillCount": 1 },
|
|
1026
|
+
{
|
|
1027
|
+
"name": "error-handling",
|
|
1028
|
+
"displayName": "Error Handling",
|
|
1029
|
+
"skillCount": 1
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "performance-optimization",
|
|
1033
|
+
"displayName": "Performance",
|
|
1034
|
+
"skillCount": 1
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"name": "observability",
|
|
1038
|
+
"displayName": "Observability",
|
|
1039
|
+
"skillCount": 1
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"name": "agent-orchestration",
|
|
1043
|
+
"displayName": "Agent Orchestration",
|
|
1044
|
+
"skillCount": 1
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"name": "agent-patterns",
|
|
1048
|
+
"displayName": "Agent Patterns",
|
|
1049
|
+
"skillCount": 1
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "workflow-composition",
|
|
1053
|
+
"displayName": "Workflow Composition",
|
|
1054
|
+
"skillCount": 1
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "tool-integration",
|
|
1058
|
+
"displayName": "Tool Integration",
|
|
1059
|
+
"skillCount": 1
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"name": "rag-knowledge",
|
|
1063
|
+
"displayName": "RAG & Knowledge",
|
|
1064
|
+
"skillCount": 1
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"name": "prompt-optimization",
|
|
1068
|
+
"displayName": "Prompt Optimization",
|
|
1069
|
+
"skillCount": 1
|
|
1070
|
+
},
|
|
1071
|
+
{ "name": "research", "displayName": "Research", "skillCount": 1 }
|
|
1072
|
+
],
|
|
1073
|
+
"metadata": {
|
|
1074
|
+
"description": "Comprehensive LLM Agent and Full-Stack Development Skills Library - Agentic patterns, orchestration, tool integration, RAG, and production systems.",
|
|
1075
|
+
"license": "MIT",
|
|
1076
|
+
"maintainer": "Leeway Industries",
|
|
1077
|
+
"repository": "local",
|
|
1078
|
+
"updateFrequency": "monthly",
|
|
1079
|
+
"supportedLLMs": [
|
|
1080
|
+
"Claude",
|
|
1081
|
+
"GPT",
|
|
1082
|
+
"Copilot",
|
|
1083
|
+
"Custom LLMs",
|
|
1084
|
+
"Agent Frameworks"
|
|
1085
|
+
],
|
|
1086
|
+
"governance": {
|
|
1087
|
+
"framework": "Leeway Standards",
|
|
1088
|
+
"version": "1.0.0",
|
|
1089
|
+
"complianceScore": 85,
|
|
1090
|
+
"monitoringEnabled": true,
|
|
1091
|
+
"requiredHeaders": true,
|
|
1092
|
+
"policies": [
|
|
1093
|
+
"NO_SECRETS_IN_CODE",
|
|
1094
|
+
"HEADERS_REQUIRED",
|
|
1095
|
+
"TAGS_REQUIRED",
|
|
1096
|
+
"NO_CIRCULAR_DEPS"
|
|
1097
|
+
],
|
|
1098
|
+
"agents": [
|
|
1099
|
+
"ComplianceMonitor",
|
|
1100
|
+
"HeaderInjector",
|
|
1101
|
+
"SkillValidator",
|
|
1102
|
+
"AutonomyAuditor"
|
|
1103
|
+
],
|
|
1104
|
+
"lastAudit": "2026-03-15T12:00:00Z"
|
|
1105
|
+
},
|
|
1106
|
+
"tags": [
|
|
1107
|
+
"agents",
|
|
1108
|
+
"orchestration",
|
|
1109
|
+
"full-stack",
|
|
1110
|
+
"agentic",
|
|
1111
|
+
"production",
|
|
1112
|
+
"llm",
|
|
1113
|
+
"ml-ops",
|
|
1114
|
+
"leeway-compliant"
|
|
1115
|
+
]
|
|
1116
|
+
}
|
|
1117
|
+
}
|