@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,66 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.QA
|
|
5
|
+
TAG: DEV.QA.INTEGRATION_TESTING
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#00FF00
|
|
9
|
+
FLUO=#32CD32
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = integration testing skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for testing within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/testing/integration-testing/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
|
+
# Integration Testing
|
|
33
|
+
|
|
34
|
+
**Expert in**: Writing integration tests that verify multiple components work together correctly.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Set up test databases and services
|
|
39
|
+
- Write API/HTTP tests
|
|
40
|
+
- Test database interactions
|
|
41
|
+
- Verify component interactions
|
|
42
|
+
- Manage test data and cleanup
|
|
43
|
+
- Configuration and environment handling
|
|
44
|
+
- Performance testing in integration context
|
|
45
|
+
|
|
46
|
+
## Use this skill when:
|
|
47
|
+
|
|
48
|
+
- Testing APIs and HTTP endpoints
|
|
49
|
+
- Database access code
|
|
50
|
+
- Multi-component interactions
|
|
51
|
+
- End-to-end workflows
|
|
52
|
+
- External service integrations
|
|
53
|
+
- Testing with real or mock infrastructure
|
|
54
|
+
|
|
55
|
+
## Key techniques
|
|
56
|
+
|
|
57
|
+
- Test containers and databases
|
|
58
|
+
- API testing frameworks
|
|
59
|
+
- Fixtures and test data management
|
|
60
|
+
- Environment configuration
|
|
61
|
+
- Service mocking vs. real services
|
|
62
|
+
- Parallel test execution
|
|
63
|
+
|
|
64
|
+
## Tags
|
|
65
|
+
|
|
66
|
+
`testing` `integration` `api` `database` `e2e`
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.QA
|
|
5
|
+
TAG: DEV.QA.LOAD_TESTING_CAPACITY
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#00FF00
|
|
9
|
+
FLUO=#32CD32
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = load testing capacity skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for testing within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/testing/load-testing-capacity/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
|
+
# Load Testing and Capacity Planning
|
|
33
|
+
|
|
34
|
+
**Expert in**: Designing, executing, and analyzing load tests to understand system limits and plan capacity.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design load testing scenarios and workloads
|
|
39
|
+
- Execute load tests with k6, JMeter, Locust
|
|
40
|
+
- Analyze performance under load
|
|
41
|
+
- Identify bottlenecks and limits
|
|
42
|
+
- Plan infrastructure capacity
|
|
43
|
+
- Implement continuous load testing
|
|
44
|
+
- Design spike and soak tests
|
|
45
|
+
- Manage test environment resources
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Planning infrastructure capacity
|
|
50
|
+
- Validating system scalability
|
|
51
|
+
- Understanding performance limits
|
|
52
|
+
- Planning for traffic spikes
|
|
53
|
+
- Choosing infrastructure
|
|
54
|
+
- Optimizing resource allocation
|
|
55
|
+
- SLA verification
|
|
56
|
+
- Stress testing critical systems
|
|
57
|
+
|
|
58
|
+
## Key techniques
|
|
59
|
+
|
|
60
|
+
- Linear, ramp, spike, and step load profiles
|
|
61
|
+
- Think time and realistic user behavior
|
|
62
|
+
- Percentile analysis and histogram analysis
|
|
63
|
+
- Bottleneck identification
|
|
64
|
+
- Resource utilization correlation
|
|
65
|
+
- Continuous integration load testing
|
|
66
|
+
- Cloud burst testing
|
|
67
|
+
- Cost vs. performance trade-offs
|
|
68
|
+
|
|
69
|
+
## Tags
|
|
70
|
+
|
|
71
|
+
`testing` `performance` `load-testing` `capacity` `scalability` `infrastructure`
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: DEV.QA
|
|
5
|
+
TAG: DEV.QA.UNIT_TESTING
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#00FF00
|
|
9
|
+
FLUO=#32CD32
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = unit testing skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for testing within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/testing/unit-testing/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
|
+
# Unit Testing
|
|
33
|
+
|
|
34
|
+
**Expert in**: Writing comprehensive unit tests using frameworks like Jest, Pytest, and Vitest.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Write unit tests with mocking
|
|
39
|
+
- Create test fixtures and factories
|
|
40
|
+
- Set up and teardown test environments
|
|
41
|
+
- Assert on behavior and state
|
|
42
|
+
- Mock external dependencies
|
|
43
|
+
- Achieve high code coverage
|
|
44
|
+
- Organize tests effectively
|
|
45
|
+
|
|
46
|
+
## Use this skill when:
|
|
47
|
+
|
|
48
|
+
- Adding tests to new code
|
|
49
|
+
- Improving test coverage
|
|
50
|
+
- Testing complex functions
|
|
51
|
+
- Setting up test infrastructure
|
|
52
|
+
- Creating reusable test utilities
|
|
53
|
+
- Testing edge cases and error states
|
|
54
|
+
|
|
55
|
+
## Key techniques
|
|
56
|
+
|
|
57
|
+
- Arrange-Act-Assert pattern
|
|
58
|
+
- Mocking with Jest, unittest.mock, pytest-mock
|
|
59
|
+
- Test fixtures and factories
|
|
60
|
+
- Parameterized testing
|
|
61
|
+
- Code coverage analysis
|
|
62
|
+
- Testing error conditions
|
|
63
|
+
|
|
64
|
+
## Tags
|
|
65
|
+
|
|
66
|
+
`testing` `jest` `pytest` `unittest` `mocking`
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.TOOLS
|
|
5
|
+
TAG: AI.TOOLS.CUSTOM_TOOL_CREATION
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#9370DB
|
|
9
|
+
FLUO=#9932CC
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = custom tool creation skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for tool-integration within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/tool-integration/custom-tool-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
|
+
# Custom Tool Integration
|
|
33
|
+
|
|
34
|
+
**Expert in**: Creating, integrating, and managing custom tools and APIs for agents to use autonomously.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design tool interfaces and schemas
|
|
39
|
+
- Implement function calling and tool binding
|
|
40
|
+
- Create REST API wrappers as tools
|
|
41
|
+
- Handle tool versioning and deprecation
|
|
42
|
+
- Implement tool documentation and discovery
|
|
43
|
+
- Create mock tools for testing
|
|
44
|
+
- Handle tool errors and timeouts gracefully
|
|
45
|
+
- Build tool composition and chaining strategies
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Extending agents with custom capabilities
|
|
50
|
+
- Integrating external APIs and services
|
|
51
|
+
- Building domain-specific tools
|
|
52
|
+
- Creating tool ecosystems for agent systems
|
|
53
|
+
- Implementing safety constraints on tool use
|
|
54
|
+
- Building tool testing and validation systems
|
|
55
|
+
- Managing tool dependencies
|
|
56
|
+
|
|
57
|
+
## Key techniques
|
|
58
|
+
|
|
59
|
+
- JSON Schema for tool definitions
|
|
60
|
+
- OpenAPI/REST tool integration
|
|
61
|
+
- Function calling patterns
|
|
62
|
+
- Tool composition and piping
|
|
63
|
+
- Tool versioning and evolution
|
|
64
|
+
- Safety guardrails for tool use
|
|
65
|
+
- Tool caching and optimization
|
|
66
|
+
- Mock tools and simulation
|
|
67
|
+
|
|
68
|
+
## Tags
|
|
69
|
+
|
|
70
|
+
`tools` `integration` `api` `function-calling` `tool-use` `composability`
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.WEB_DEVELOPMENT
|
|
5
|
+
TAG: AI.SKILL.WEB_DEVELOPMENT.ADVANCED_FRONTEND_PATTERNS
|
|
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 frontend patterns skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for web-development within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/web-development/advanced-frontend-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
|
+
# Advanced Frontend Patterns
|
|
33
|
+
|
|
34
|
+
**Expert in**: Building sophisticated frontend applications using advanced patterns and modern frameworks.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design complex state management systems
|
|
39
|
+
- Implement server-driven UI patterns
|
|
40
|
+
- Build real-time collaborative systems
|
|
41
|
+
- Create responsive and adaptive UIs
|
|
42
|
+
- Implement micro-frontend architectures
|
|
43
|
+
- Design offline-first applications
|
|
44
|
+
- Build performance-optimized apps
|
|
45
|
+
- Create accessible, inclusive interfaces
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Building complex interactive applications
|
|
50
|
+
- Managing complex application state
|
|
51
|
+
- Real-time collaboration features
|
|
52
|
+
- Building responsive and adaptive UIs
|
|
53
|
+
- Scaling frontend applications
|
|
54
|
+
- Progressive enhancement
|
|
55
|
+
- Offline functionality
|
|
56
|
+
- Multi-device consistency
|
|
57
|
+
|
|
58
|
+
## Key techniques
|
|
59
|
+
|
|
60
|
+
- Redux, Zustand, Jotai state management
|
|
61
|
+
- Server-driven UI and JSON schemas
|
|
62
|
+
- WebSocket and real-time patterns
|
|
63
|
+
- CSS Grid and responsive design
|
|
64
|
+
- Micro-frontend frameworks (Module Federation)
|
|
65
|
+
- Service Workers and offline-first
|
|
66
|
+
- Code splitting and lazy loading
|
|
67
|
+
- Web accessibility standards (WCAG)
|
|
68
|
+
|
|
69
|
+
## Tags
|
|
70
|
+
|
|
71
|
+
`frontend` `React` `patterns` `state-management` `real-time` `performance`
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.WEB_DEVELOPMENT
|
|
5
|
+
TAG: AI.SKILL.WEB_DEVELOPMENT.API_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 = api design skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for web-development within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/web-development/api-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
|
+
# API Design and REST/GraphQL
|
|
33
|
+
|
|
34
|
+
**Expert in**: Designing and implementing robust, scalable, and developer-friendly APIs with REST, GraphQL, and gRPC.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design REST APIs following best practices
|
|
39
|
+
- Implement versioning and backwards compatibility
|
|
40
|
+
- Build GraphQL schemas and resolvers
|
|
41
|
+
- Design gRPC services for high performance
|
|
42
|
+
- Implement rate limiting and quotas
|
|
43
|
+
- Design pagination and filtering
|
|
44
|
+
- Create API documentation and SDKs
|
|
45
|
+
- Implement caching strategies
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Designing new API services
|
|
50
|
+
- Ensuring API scalability
|
|
51
|
+
- Building API ecosystems
|
|
52
|
+
- Creating developer-friendly APIs
|
|
53
|
+
- Handling versioning challenges
|
|
54
|
+
- Managing API complexity
|
|
55
|
+
- Implementing API governance
|
|
56
|
+
- Building API platforms
|
|
57
|
+
|
|
58
|
+
## Key techniques
|
|
59
|
+
|
|
60
|
+
- REST design principles and HATEOAS
|
|
61
|
+
- HTTP status codes and error handling
|
|
62
|
+
- OpenAPI/Swagger specifications
|
|
63
|
+
- GraphQL query language and schemas
|
|
64
|
+
- gRPC protocol buffers
|
|
65
|
+
- API versioning strategies
|
|
66
|
+
- Pagination (cursor, offset, keyset)
|
|
67
|
+
- API rate limiting and quotas
|
|
68
|
+
|
|
69
|
+
## Tags
|
|
70
|
+
|
|
71
|
+
`api` `rest` `graphql` `grpc` `design` `documentation`
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.WEB_DEVELOPMENT
|
|
5
|
+
TAG: AI.SKILL.WEB_DEVELOPMENT.CSS_STYLING
|
|
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 = css styling skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for web-development within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/web-development/css-styling/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
|
+
# CSS Styling and Layout
|
|
33
|
+
|
|
34
|
+
**Expert in**: Creating responsive, accessible, and maintainable CSS with modern techniques.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Create responsive layouts with Flexbox and Grid
|
|
39
|
+
- Implement CSS custom properties (variables)
|
|
40
|
+
- Use CSS preprocessors (Sass, Less)
|
|
41
|
+
- Create accessible color contrasts
|
|
42
|
+
- Mobile-first design
|
|
43
|
+
- CSS animations and transitions
|
|
44
|
+
- Tailwind CSS and utility frameworks
|
|
45
|
+
- CSS modules and BEM naming
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Building responsive layouts
|
|
50
|
+
- Improving visual design
|
|
51
|
+
- Creating accessible interfaces
|
|
52
|
+
- Optimization and performance
|
|
53
|
+
- Theming and customization
|
|
54
|
+
- Cross-browser compatibility
|
|
55
|
+
|
|
56
|
+
## Key techniques
|
|
57
|
+
|
|
58
|
+
- Flexbox and CSS Grid
|
|
59
|
+
- CSS custom properties and theming
|
|
60
|
+
- Media queries and responsive design
|
|
61
|
+
- Accessibility (WCAG, color contrast)
|
|
62
|
+
- CSS-in-JS and scoped styles
|
|
63
|
+
- Performance optimization
|
|
64
|
+
|
|
65
|
+
## Tags
|
|
66
|
+
|
|
67
|
+
`css` `styling` `responsive` `accessibility` `frontend`
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.SKILL.WEB_DEVELOPMENT
|
|
5
|
+
TAG: AI.SKILL.WEB_DEVELOPMENT.REACT_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 = react development skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for web-development within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/web-development/react-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
|
+
# React Development
|
|
33
|
+
|
|
34
|
+
**Expert in**: Building modern React applications with hooks, state management, performance optimization, and enterprise patterns.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Build functional components with React hooks
|
|
39
|
+
- Manage state with useState, useReducer, and context
|
|
40
|
+
- Handle side effects with useEffect and custom hooks
|
|
41
|
+
- Create custom hooks for reusable logic
|
|
42
|
+
- Implement context API with proper provider patterns
|
|
43
|
+
- Optimize performance (React.memo, useMemo, useCallback)
|
|
44
|
+
- Debug React applications effectively
|
|
45
|
+
- Implement server-side rendering (Next.js)
|
|
46
|
+
- Create component composition patterns
|
|
47
|
+
- Handle async data fetching
|
|
48
|
+
- Implement error boundaries
|
|
49
|
+
- Create accessible React components
|
|
50
|
+
- Test React components thoroughly
|
|
51
|
+
- Optimize bundle size and code splitting
|
|
52
|
+
|
|
53
|
+
## Use this skill when:
|
|
54
|
+
|
|
55
|
+
- Building React applications
|
|
56
|
+
- Managing complex state
|
|
57
|
+
- Optimizing performance
|
|
58
|
+
- Creating reusable component logic
|
|
59
|
+
- Integrating with third-party libraries
|
|
60
|
+
- Testing React code
|
|
61
|
+
- Building full-stack applications
|
|
62
|
+
- Creating scalable component systems
|
|
63
|
+
|
|
64
|
+
## Key techniques
|
|
65
|
+
|
|
66
|
+
- Hooks (useState, useEffect, useContext, useReducer)
|
|
67
|
+
- Custom hooks for logic extraction
|
|
68
|
+
- Component composition patterns
|
|
69
|
+
- Context API for state management
|
|
70
|
+
- React.memo and useMemo for optimization
|
|
71
|
+
- useCallback for function memoization
|
|
72
|
+
- Suspense and lazy loading
|
|
73
|
+
- React DevTools profiling
|
|
74
|
+
- Error boundaries for error handling
|
|
75
|
+
- Server components and streaming
|
|
76
|
+
|
|
77
|
+
## Tags
|
|
78
|
+
|
|
79
|
+
`react` `javascript` `hooks` `state-management` `frontend` `performance` `component-design`
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
LEEWAY HEADER — DO NOT REMOVE
|
|
3
|
+
|
|
4
|
+
REGION: AI.WORKFLOW
|
|
5
|
+
TAG: AI.WORKFLOW.WORKFLOW_ORCHESTRATION
|
|
6
|
+
|
|
7
|
+
COLOR_ONION_HEX:
|
|
8
|
+
NEON=#FF6347
|
|
9
|
+
FLUO=#FF7F50
|
|
10
|
+
PASTEL=#E8F5E9
|
|
11
|
+
|
|
12
|
+
ICON_ASCII:
|
|
13
|
+
family=lucide
|
|
14
|
+
glyph=zap
|
|
15
|
+
|
|
16
|
+
5WH:
|
|
17
|
+
WHAT = workflow orchestration skill for Leeway-compliant AI systems
|
|
18
|
+
WHY = Provides capabilities for workflow-composition within the AIskills ecosystem
|
|
19
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
20
|
+
WHERE = skills/workflow-composition/workflow-orchestration/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
|
+
# Complex Workflow Composition
|
|
33
|
+
|
|
34
|
+
**Expert in**: Building, orchestrating, and managing complex multi-step workflows with error handling, branching, and dynamic execution.
|
|
35
|
+
|
|
36
|
+
## Capabilities
|
|
37
|
+
|
|
38
|
+
- Design conditional and branching workflows
|
|
39
|
+
- Implement parallel task execution pipelines
|
|
40
|
+
- Create stateful workflow engines
|
|
41
|
+
- Handle dynamic workflow generation
|
|
42
|
+
- Implement rollback and compensation logic
|
|
43
|
+
- Create workflow templates and reusable patterns
|
|
44
|
+
- Monitor and debug workflow execution
|
|
45
|
+
- Implement workflow versioning and evolution
|
|
46
|
+
|
|
47
|
+
## Use this skill when:
|
|
48
|
+
|
|
49
|
+
- Building complex business processes
|
|
50
|
+
- Orchestrating dependent tasks with conditions
|
|
51
|
+
- Creating data pipelines with branching logic
|
|
52
|
+
- Implementing long-running business workflows
|
|
53
|
+
- Building ETL/ELT systems
|
|
54
|
+
- Creating approval and review workflows
|
|
55
|
+
- Handling workflow failures and retries
|
|
56
|
+
|
|
57
|
+
## Key techniques
|
|
58
|
+
|
|
59
|
+
- DAG (Directed Acyclic Graph) workflows
|
|
60
|
+
- State machines for workflow control
|
|
61
|
+
- Temporal patterns for async workflows
|
|
62
|
+
- Saga pattern for distributed transactions
|
|
63
|
+
- Compensation and rollback patterns
|
|
64
|
+
- Workflow scheduling and cron jobs
|
|
65
|
+
- Conditional branching and decision points
|
|
66
|
+
- Error handling and retry strategies
|
|
67
|
+
|
|
68
|
+
## Tags
|
|
69
|
+
|
|
70
|
+
`workflows` `orchestration` `automation` `pipelines` `distributed-systems` `etl`
|