@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,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.CODEGEN
|
|
5
|
+
TAG: DEV.CODEGEN.MICROSERVICES_ARCHITECTURE
|
|
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 = microservices architecture 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/microservices-architecture/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
|
+
# Microservices Architecture and Design
|
|
33
|
+
|
|
34
|
+
**Expert in**: Designing and implementing scalable microservices architectures with proper decomposition, communication, and deployment.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design microservice boundaries using domain-driven design
|
|
39
|
+
- Implement inter-service communication (sync, async)
|
|
40
|
+
- Design resilient distributed systems
|
|
41
|
+
- Create service discovery and configuration
|
|
42
|
+
- Implement API gateways and routing
|
|
43
|
+
- Design data consistency strategies
|
|
44
|
+
- Handle failures and cascading issues
|
|
45
|
+
- Create deployment and scaling strategies
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Building large-scale systems
|
|
50
|
+
- Need independent service teams
|
|
51
|
+
- Scaling different services differently
|
|
52
|
+
- Implementing independent deployments
|
|
53
|
+
- Managing service dependencies
|
|
54
|
+
- Handling distributed failures
|
|
55
|
+
- Complex systems requiring decomposition
|
|
56
|
+
- Polyglot microservices
|
|
57
|
+
|
|
58
|
+
## Key techniques
|
|
59
|
+
|
|
60
|
+
- Domain-Driven Design (DDD) for boundaries
|
|
61
|
+
- Synchronous (REST, gRPC) and async (events, queues) patterns
|
|
62
|
+
- Saga pattern for distributed transactions
|
|
63
|
+
- Service discovery (Consul, Eureka)
|
|
64
|
+
- API Gateways (Kong, Ambassador)
|
|
65
|
+
- Event-driven architectures
|
|
66
|
+
- Circuit breaker and bulkhead patterns
|
|
67
|
+
- Distributed tracing and debugging
|
|
68
|
+
|
|
69
|
+
## Tags
|
|
70
|
+
|
|
71
|
+
`microservices` `architecture` `distributed` `ddd` `scalability` `resilience`
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.CODEGEN
|
|
5
|
+
TAG: DEV.CODEGEN.PYTHON_CODEGEN
|
|
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 = python codegen 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/python-codegen/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
|
+
# Python Code Generation
|
|
33
|
+
|
|
34
|
+
**Expert in**: Generating Pythonic, idiomatic code with proper type hints, docstrings, and project structure.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Generate Python modules with proper structure
|
|
39
|
+
- Create dataclasses, Pydantic models, and type hints
|
|
40
|
+
- Implement async/await patterns
|
|
41
|
+
- Generate FastAPI/Django applications
|
|
42
|
+
- Create CLI tools with Click or Argparse
|
|
43
|
+
- Produce production-ready Python packages
|
|
44
|
+
|
|
45
|
+
## Use this skill when:
|
|
46
|
+
|
|
47
|
+
- You need to generate Python code from specifications
|
|
48
|
+
- Creating data models and classes
|
|
49
|
+
- Building FastAPI or Flask applications
|
|
50
|
+
- Generating CLI tools or scripts
|
|
51
|
+
- Creating Python libraries
|
|
52
|
+
|
|
53
|
+
## Key techniques
|
|
54
|
+
|
|
55
|
+
- Type hints and mypy compliance
|
|
56
|
+
- Async patterns with asyncio
|
|
57
|
+
- Dataclass and Pydantic modeling
|
|
58
|
+
- Proper module organization
|
|
59
|
+
- Documentation and docstrings
|
|
60
|
+
- Exception handling patterns
|
|
61
|
+
|
|
62
|
+
## Tags
|
|
63
|
+
|
|
64
|
+
`python` `code-generation` `dataclasses` `async` `fastapi`
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.CODEGEN
|
|
5
|
+
TAG: DEV.CODEGEN.TYPESCRIPT_CODEGEN
|
|
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 = typescript codegen 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/typescript-codegen/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
|
+
# TypeScript Code Generation
|
|
33
|
+
|
|
34
|
+
**Expert in**: Generating production-ready TypeScript code, interfaces, types, and complete modules from specifications.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Generate type-safe TypeScript/JavaScript from specifications
|
|
39
|
+
- Create interfaces, types, and type definitions
|
|
40
|
+
- Generate complete modules with proper exports
|
|
41
|
+
- Implement async/await patterns
|
|
42
|
+
- Create React components with hooks
|
|
43
|
+
- Generate Node.js server code
|
|
44
|
+
- Produce ESLint-compliant, well-formatted code
|
|
45
|
+
|
|
46
|
+
## Use this skill when:
|
|
47
|
+
|
|
48
|
+
- You need to generate TypeScript/JavaScript from requirements
|
|
49
|
+
- Creating type definitions for APIs
|
|
50
|
+
- Building React or Vue components
|
|
51
|
+
- Generating all or part of a module
|
|
52
|
+
- Creating type stubs for third-party libraries
|
|
53
|
+
|
|
54
|
+
## Key techniques
|
|
55
|
+
|
|
56
|
+
- Type inference and gradual typing
|
|
57
|
+
- Generic type parameters
|
|
58
|
+
- Discriminated unions and exhaustiveness checking
|
|
59
|
+
- Async patterns and Promise handling
|
|
60
|
+
- Module exports and import organization
|
|
61
|
+
|
|
62
|
+
## Tags
|
|
63
|
+
|
|
64
|
+
`typescript` `javascript` `code-generation` `types` `modules`
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.DATA_ANALYSIS
|
|
5
|
+
TAG: AI.SKILL.DATA_ANALYSIS.ADVANCED_ANALYTICS
|
|
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 = advanced analytics skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for data-analysis within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/data-analysis/advanced-analytics/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
|
+
# Advanced Data Analytics
|
|
33
|
+
|
|
34
|
+
**Expert in**: Performing sophisticated data analysis including statistical testing, causal inference, and machine learning-based insights.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Implement experimental design (A/B testing)
|
|
39
|
+
- Perform causal inference and impact analysis
|
|
40
|
+
- Conduct hypothesis testing
|
|
41
|
+
- Implement time series forecasting
|
|
42
|
+
- Perform clustering and segmentation
|
|
43
|
+
- Conduct anomaly detection
|
|
44
|
+
- Build predictive models
|
|
45
|
+
- Create data visualization and storytelling
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Need to make data-driven decisions
|
|
50
|
+
- Running experiments and A/B tests
|
|
51
|
+
- Understanding causality in data
|
|
52
|
+
- Forecasting future trends
|
|
53
|
+
- Segmenting users or customers
|
|
54
|
+
- Detecting anomalies or fraud
|
|
55
|
+
- Building predictive systems
|
|
56
|
+
- Data storytelling and reporting
|
|
57
|
+
|
|
58
|
+
## Key techniques
|
|
59
|
+
|
|
60
|
+
- Statistical hypothesis testing
|
|
61
|
+
- A/B testing and multi-armed bandits
|
|
62
|
+
- Causal inference (propensity matching, IV, DiD)
|
|
63
|
+
- ARIMA and SARIMA forecasting
|
|
64
|
+
- Prophet for time series
|
|
65
|
+
- K-means, DBSCAN, hierarchical clustering
|
|
66
|
+
- Isolation Forest and Mahalanobis distance
|
|
67
|
+
- Visualization libraries (matplotlib, plotly, seaborn)
|
|
68
|
+
|
|
69
|
+
## Tags
|
|
70
|
+
|
|
71
|
+
`analytics` `data-science` `statistics` `forecasting` `testing` `insights`
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.DATA_ANALYSIS
|
|
5
|
+
TAG: AI.SKILL.DATA_ANALYSIS.PANDAS_ANALYSIS
|
|
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 = pandas analysis skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for data-analysis within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/data-analysis/pandas-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
|
+
# Pandas Data Analysis
|
|
33
|
+
|
|
34
|
+
**Expert in**: Analyzing, transforming, and visualizing data using Pandas and Python data science tools.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Data loading and cleaning
|
|
39
|
+
- DataFrame transformations and aggregations
|
|
40
|
+
- Time series analysis
|
|
41
|
+
- Statistical analysis and hypothesis testing
|
|
42
|
+
- Data visualization with matplotlib/seaborn
|
|
43
|
+
- Handling missing data and outliers
|
|
44
|
+
- Groupby operations and pivoting
|
|
45
|
+
|
|
46
|
+
## Use this skill when:
|
|
47
|
+
|
|
48
|
+
- You need to analyze data with Pandas
|
|
49
|
+
- Cleaning and preparing datasets
|
|
50
|
+
- Generating statistical reports
|
|
51
|
+
- Creating data visualizations
|
|
52
|
+
- Time series analysis
|
|
53
|
+
- Correlation and regression analysis
|
|
54
|
+
|
|
55
|
+
## Key techniques
|
|
56
|
+
|
|
57
|
+
- DataFrame operations (merge, groupby, pivot)
|
|
58
|
+
- Statistical functions and distributions
|
|
59
|
+
- FFT and signal processing
|
|
60
|
+
- Resampling and rolling windows
|
|
61
|
+
- Data normalization and scaling
|
|
62
|
+
- Matplotlib and Seaborn plotting
|
|
63
|
+
|
|
64
|
+
## Tags
|
|
65
|
+
|
|
66
|
+
`python` `data-analysis` `pandas` `statistics` `visualization`
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.DATABASE_DESIGN
|
|
5
|
+
TAG: AI.SKILL.DATABASE_DESIGN.DATABASE_DESIGN_OPTIMIZATION
|
|
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 = database design optimization skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for database-design within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/database-design/database-design-optimization/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
|
+
# Database Design and Optimization
|
|
33
|
+
|
|
34
|
+
**Expert in**: Designing scalable, efficient database systems with proper modeling, indexing, and query optimization.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design relational and NoSQL database schemas
|
|
39
|
+
- Implement normalization and denormalization strategies
|
|
40
|
+
- Create optimal indexing strategies
|
|
41
|
+
- Optimize complex queries and execution plans
|
|
42
|
+
- Implement partitioning and sharding strategies
|
|
43
|
+
- Design data migration and backfill processes
|
|
44
|
+
- Handle eventual consistency and CAP theorem trade-offs
|
|
45
|
+
- Implement caching strategies (Redis, Memcached)
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Designing new database systems
|
|
50
|
+
- Scaling databases for performance
|
|
51
|
+
- Optimizing slow queries
|
|
52
|
+
- Planning data structure changes
|
|
53
|
+
- Implementing complex queries
|
|
54
|
+
- Managing data growth and scale
|
|
55
|
+
- Handling consistency requirements
|
|
56
|
+
|
|
57
|
+
## Key techniques
|
|
58
|
+
|
|
59
|
+
- Relational normalization (1NF through BCNF)
|
|
60
|
+
- Index design (B-tree, hash, bitmap)
|
|
61
|
+
- Query planning and optimization
|
|
62
|
+
- Join strategies and explanation
|
|
63
|
+
- Partitioning strategies (range, hash, list)
|
|
64
|
+
- Sharding and distributed databases
|
|
65
|
+
- MVCC and transaction isolation levels
|
|
66
|
+
- Connection pooling and resource management
|
|
67
|
+
|
|
68
|
+
## Tags
|
|
69
|
+
|
|
70
|
+
`database` `sql` `optimization` `schema-design` `performance` `scaling`
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.DEBUGGING
|
|
5
|
+
TAG: AI.SKILL.DEBUGGING.JAVASCRIPT_DEBUGGING
|
|
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 = javascript debugging skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for debugging within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/debugging/javascript-debugging/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
|
+
# JavaScript/Node.js Debugging
|
|
33
|
+
|
|
34
|
+
**Expert in**: Debugging JavaScript code using DevTools, Node.js debugger, and debugging techniques.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Use Chrome DevTools for browser debugging
|
|
39
|
+
- Debug Node.js with built-in debugger or tools
|
|
40
|
+
- Set breakpoints and step through code
|
|
41
|
+
- Inspect variables and call stacks
|
|
42
|
+
- Analyze performance with DevTools
|
|
43
|
+
- Use console methods effectively
|
|
44
|
+
- Debug async code and promises
|
|
45
|
+
- Memory profiling and leak detection
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Code isn't behaving as expected
|
|
50
|
+
- Need to understand execution flow
|
|
51
|
+
- Tracking down race conditions
|
|
52
|
+
- Performance issues
|
|
53
|
+
- Memory leaks
|
|
54
|
+
- Event handling problems
|
|
55
|
+
|
|
56
|
+
## Key techniques
|
|
57
|
+
|
|
58
|
+
- Breakpoints and conditional breaks
|
|
59
|
+
- Stepping (over, into, out)
|
|
60
|
+
- Watch expressions and locals inspection
|
|
61
|
+
- Call stack analysis
|
|
62
|
+
- Performance profiling
|
|
63
|
+
- Heap snapshots and memory analysis
|
|
64
|
+
|
|
65
|
+
## Tags
|
|
66
|
+
|
|
67
|
+
`javascript` `debugging` `devtools` `nodejs` `performance`
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.DEBUGGING
|
|
5
|
+
TAG: AI.SKILL.DEBUGGING.PYTHON_DEBUGGING
|
|
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 = python debugging skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for debugging within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/debugging/python-debugging/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
|
+
# Python Debugging
|
|
33
|
+
|
|
34
|
+
**Expert in**: Debugging Python code using pdb, third-party debuggers, and effective debugging techniques.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Use pdb (Python Debugger)
|
|
39
|
+
- Debug with IDE debuggers (VS Code, PyCharm)
|
|
40
|
+
- Set breakpoints and inspect state
|
|
41
|
+
- Step through code execution
|
|
42
|
+
- Analyze stack traces
|
|
43
|
+
- Profile code performance
|
|
44
|
+
- Memory profiling
|
|
45
|
+
- Debug async Python code
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Python code has unexpected behavior
|
|
50
|
+
- Need to trace execution flow
|
|
51
|
+
- Identifying performance bottlenecks
|
|
52
|
+
- Memory usage issues
|
|
53
|
+
- Async/await problems
|
|
54
|
+
- Exception handling issues
|
|
55
|
+
|
|
56
|
+
## Key techniques
|
|
57
|
+
|
|
58
|
+
- pdb commands and workflow
|
|
59
|
+
- Conditional breakpoints
|
|
60
|
+
- Post-mortem debugging
|
|
61
|
+
- cProfile and line_profiler
|
|
62
|
+
- Memory_profiler and tracemalloc
|
|
63
|
+
- Debugging async code with asyncio
|
|
64
|
+
|
|
65
|
+
## Tags
|
|
66
|
+
|
|
67
|
+
`python` `debugging` `pdb` `performance` `profiling`
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.DEVOPS
|
|
5
|
+
TAG: DEV.DEVOPS.DOCKERFILE_CREATION
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#FF8C00
|
|
9
|
+
FLUO=#FFA500
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = dockerfile creation skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for devops within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/devops/dockerfile-creation/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
|
+
# Dockerfile Creation
|
|
33
|
+
|
|
34
|
+
**Expert in**: Creating efficient, secure, and maintainable Docker containers for applications.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Write multi-stage Dockerfiles
|
|
39
|
+
- Optimize image sizes and build times
|
|
40
|
+
- Handle secrets and environment variables securely
|
|
41
|
+
- Create health checks
|
|
42
|
+
- Set proper user permissions
|
|
43
|
+
- Implement proper signal handling
|
|
44
|
+
|
|
45
|
+
## Use this skill when:
|
|
46
|
+
|
|
47
|
+
- You need to containerize an application
|
|
48
|
+
- Optimizing Docker images
|
|
49
|
+
- Creating CI/CD-friendly containers
|
|
50
|
+
- Improving container security
|
|
51
|
+
- Troubleshooting container issues
|
|
52
|
+
|
|
53
|
+
## Key techniques
|
|
54
|
+
|
|
55
|
+
- Multi-stage builds for size optimization
|
|
56
|
+
- Layer caching optimization
|
|
57
|
+
- Security best practices
|
|
58
|
+
- Signal handling (PID 1 processes)
|
|
59
|
+
- Health checks and readiness probes
|
|
60
|
+
- Using minimal base images (alpine, distroless)
|
|
61
|
+
|
|
62
|
+
## Tags
|
|
63
|
+
|
|
64
|
+
`docker` `devops` `containerization` `ci-cd` `security`
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.DEVOPS
|
|
5
|
+
TAG: DEV.DEVOPS.KUBERNETES_DEPLOYMENT
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#FF8C00
|
|
9
|
+
FLUO=#FFA500
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = kubernetes deployment skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for devops within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/devops/kubernetes-deployment/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
|
+
# Kubernetes Deployment
|
|
33
|
+
|
|
34
|
+
**Expert in**: Writing Kubernetes manifests, configuring deployments, and managing cluster operations.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Write Kubernetes YAML manifests (Deployments, Services, Ingress)
|
|
39
|
+
- Configure resource limits and requests
|
|
40
|
+
- Set up health checks and probes
|
|
41
|
+
- Implement scaling strategies
|
|
42
|
+
- Configure networking and service discovery
|
|
43
|
+
- Manage ConfigMaps and Secrets
|
|
44
|
+
|
|
45
|
+
## Use this skill when:
|
|
46
|
+
|
|
47
|
+
- Deploying applications to Kubernetes
|
|
48
|
+
- Creating production-ready manifests
|
|
49
|
+
- Configuring clustering and scaling
|
|
50
|
+
- Setting up ingress and load balancing
|
|
51
|
+
- Managing application secrets
|
|
52
|
+
- Troubleshooting K8s deployments
|
|
53
|
+
|
|
54
|
+
## Key techniques
|
|
55
|
+
|
|
56
|
+
- Manifest design and organization
|
|
57
|
+
- Resource management and QoS
|
|
58
|
+
- Health probes and restarts
|
|
59
|
+
- ReplicaSets and StatefulSets
|
|
60
|
+
- Networking and service meshes
|
|
61
|
+
- RBAC and security policies
|
|
62
|
+
|
|
63
|
+
## Tags
|
|
64
|
+
|
|
65
|
+
`kubernetes` `devops` `container-orchestration` `deployment` `scaling`
|