@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,288 @@
|
|
|
1
|
+
# π Leeway Standards Quick Start Checklist
|
|
2
|
+
|
|
3
|
+
**Leeway Skills Leeway Compliance Setup & Operational Guide**
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## β
Phase 1: Verify Installation (5 minutes)
|
|
8
|
+
|
|
9
|
+
- [ ] Navigate to Leeway Skills root directory
|
|
10
|
+
- [ ] Run verification script:
|
|
11
|
+
```powershell
|
|
12
|
+
node scripts/verify-leeway-setup.js
|
|
13
|
+
```
|
|
14
|
+
- [ ] Check all items say "β
passed"
|
|
15
|
+
- [ ] Note any issues if in "Issues to Address"
|
|
16
|
+
|
|
17
|
+
**Expected Result**: "Status: READY FOR DEPLOYMENT"
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## β
Phase 2: Initialize Leeway (2 minutes)
|
|
22
|
+
|
|
23
|
+
- [ ] Run initialization:
|
|
24
|
+
```powershell
|
|
25
|
+
node scripts/init-leeway.js
|
|
26
|
+
```
|
|
27
|
+
- [ ] Verify output shows:
|
|
28
|
+
- β Leeway configuration loaded
|
|
29
|
+
- β Skills directory scanned
|
|
30
|
+
- β Compliance monitoring active
|
|
31
|
+
- [ ] Check for any warnings about missing headers
|
|
32
|
+
|
|
33
|
+
**Expected Result**: Green status box with monitoring active
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## β
Phase 3: Run Compliance Audit (3 minutes)
|
|
38
|
+
|
|
39
|
+
- [ ] Check current compliance score:
|
|
40
|
+
```powershell
|
|
41
|
+
node scripts/leeway-agents/compliance-monitor.js
|
|
42
|
+
```
|
|
43
|
+
- [ ] Review the report for:
|
|
44
|
+
- Compliance score (target: 85+)
|
|
45
|
+
- Number of compliant skills
|
|
46
|
+
- Any violations or warnings
|
|
47
|
+
- [ ] Note recommendations if score < 85
|
|
48
|
+
|
|
49
|
+
**Expected Result**: Compliance score 85+ with green status
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## β
Phase 4: Fix Any Issues (5-10 minutes if needed)
|
|
54
|
+
|
|
55
|
+
**If missing headers:**
|
|
56
|
+
|
|
57
|
+
```powershell
|
|
58
|
+
# Preview what will change (dry run)
|
|
59
|
+
$env:DRY_RUN = 'true'
|
|
60
|
+
node scripts/leeway-agents/header-injector.js
|
|
61
|
+
|
|
62
|
+
# Apply changes if satisfied
|
|
63
|
+
node scripts/leeway-agents/header-injector.js
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
**If other issues:**
|
|
67
|
+
|
|
68
|
+
- Review report from compliance monitor
|
|
69
|
+
- Refer to `documents/LEEWAY_STANDARDS_COMPLIANCE.md`
|
|
70
|
+
- Make manual fixes as needed
|
|
71
|
+
|
|
72
|
+
**Verify again:**
|
|
73
|
+
|
|
74
|
+
```powershell
|
|
75
|
+
node scripts/leeway-agents/compliance-monitor.js
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**Expected Result**: Score 85+, all violations resolved
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## β
Phase 5: Schedule Automated Monitoring (Windows)
|
|
83
|
+
|
|
84
|
+
- [ ] Open PowerShell as Administrator
|
|
85
|
+
- [ ] Run this command:
|
|
86
|
+
```powershell
|
|
87
|
+
$trigger = New-ScheduledTaskTrigger -RepetitionInterval (New-TimeSpan -Hours 1) -At "00:00"
|
|
88
|
+
$action = New-ScheduledTaskAction -Execute "node" -Argument "scripts/leeway-agents/compliance-monitor.js" -WorkingDirectory "c:\Tools\Leeway-Skills"
|
|
89
|
+
Register-ScheduledTask -TaskName "Leeway-Skills-Compliance" -Trigger $trigger -Action $action -Force
|
|
90
|
+
```
|
|
91
|
+
- [ ] Verify task appears in Task Scheduler
|
|
92
|
+
- [ ] Right-click task β Properties β Triggers β confirm 1 hour interval
|
|
93
|
+
|
|
94
|
+
**Alternative (cron on Linux/Mac)**:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
# Add to crontab: 0 * * * * cd /path/to/Leeway-Skills && node scripts/leeway-agents/compliance-monitor.js
|
|
98
|
+
crontab -e
|
|
99
|
+
# Add line and save
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
**Expected Result**: Task created, will run hourly
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## β
Phase 6: Read Documentation (Reference)
|
|
107
|
+
|
|
108
|
+
Keep for reference:
|
|
109
|
+
|
|
110
|
+
- [ ] **Quick Questions?** β `documents/LEEWAY_INTEGRATION_GUIDE.md`
|
|
111
|
+
- How to add new skills
|
|
112
|
+
- How to fix compliance issues
|
|
113
|
+
- Common tasks
|
|
114
|
+
|
|
115
|
+
- [ ] **Detailed Reference?** β `documents/LEEWAY_STANDARDS_COMPLIANCE.md`
|
|
116
|
+
- Header format specification
|
|
117
|
+
- Policy definitions
|
|
118
|
+
- Complete troubleshooting
|
|
119
|
+
- Monitoring details
|
|
120
|
+
|
|
121
|
+
- [ ] **Overview** β `LEEWAY_IMPLEMENTATION_SUMMARY.md` (this file)
|
|
122
|
+
- What was implemented
|
|
123
|
+
- How to use
|
|
124
|
+
- Quick reference
|
|
125
|
+
|
|
126
|
+
---
|
|
127
|
+
|
|
128
|
+
## π Day-to-Day Operations
|
|
129
|
+
|
|
130
|
+
### Check Compliance (Daily)
|
|
131
|
+
|
|
132
|
+
```powershell
|
|
133
|
+
node scripts/leeway-agents/compliance-monitor.js
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
- Look at Compliance Score
|
|
137
|
+
- Check for any failed skills
|
|
138
|
+
- Each report saved to `.leeway/reports/`
|
|
139
|
+
|
|
140
|
+
### Add a New Skill
|
|
141
|
+
|
|
142
|
+
1. Create folder: `skills/{category}/{skill-name}/`
|
|
143
|
+
2. Create `SKILL.md` with Leeway header (see guide)
|
|
144
|
+
3. Run `node scripts/leeway-agents/compliance-monitor.js`
|
|
145
|
+
4. Should see score 85+
|
|
146
|
+
|
|
147
|
+
### Fix Compliance Issues
|
|
148
|
+
|
|
149
|
+
```powershell
|
|
150
|
+
# See what's wrong:
|
|
151
|
+
node scripts/leeway-agents/compliance-monitor.js
|
|
152
|
+
|
|
153
|
+
# Auto-fix missing headers:
|
|
154
|
+
node scripts/leeway-agents/header-injector.js
|
|
155
|
+
|
|
156
|
+
# Verify it worked:
|
|
157
|
+
node scripts/leeway-agents/compliance-monitor.js
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
## π― What to Check Each Week
|
|
163
|
+
|
|
164
|
+
| Task | Command | Frequency |
|
|
165
|
+
| ----------------- | ------------------------ | ----------------- |
|
|
166
|
+
| Audit compliance | `compliance-monitor.js` | Daily (automated) |
|
|
167
|
+
| Add new skills | Manual | As needed |
|
|
168
|
+
| Review reports | Check `.leeway/reports/` | Weekly |
|
|
169
|
+
| Update docs | See guides | As needed |
|
|
170
|
+
| Verify automation | Check Task Scheduler | Weekly |
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## π Leeway Policies Active Right Now
|
|
175
|
+
|
|
176
|
+
β
**ENFORCED** (blocks if violated):
|
|
177
|
+
|
|
178
|
+
- NO_SECRETS_IN_CODE β blocks passwords, API keys
|
|
179
|
+
- HEADERS_REQUIRED β blocks files without Leeway headers
|
|
180
|
+
- TAGS_REQUIRED β blocks missing REGION/TAG
|
|
181
|
+
- NO_CIRCULAR_DEPS β blocks circular imports
|
|
182
|
+
|
|
183
|
+
β οΈ **WARNINGS** (monitored, doesn't block):
|
|
184
|
+
|
|
185
|
+
- NAMING_CONVENTIONS β checks kebab-case names
|
|
186
|
+
- DOCUMENTATION_COVERAGE β checks 80% min docs
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## π‘ Pro Tips
|
|
191
|
+
|
|
192
|
+
**Tip 1**: Check `.leeway/reports/` to see audit history
|
|
193
|
+
|
|
194
|
+
```powershell
|
|
195
|
+
ls -la .leeway/reports/
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
**Tip 2**: Dry-run header injector before applying
|
|
199
|
+
|
|
200
|
+
```powershell
|
|
201
|
+
$env:DRY_RUN = 'true'
|
|
202
|
+
node scripts/leeway-agents/header-injector.js
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
**Tip 3**: Run init-leeway.js on every startup to ensure monitoring is active
|
|
206
|
+
|
|
207
|
+
```powershell
|
|
208
|
+
# Add to your startup script or terminal profile
|
|
209
|
+
node scripts/init-leeway.js
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
**Tip 4**: Keep `.leeway/` in git (except runtime artifacts)
|
|
213
|
+
|
|
214
|
+
- Track: `.leeway/config.json`
|
|
215
|
+
- Ignore: `.leeway/reports/`, `.leeway/metrics/`
|
|
216
|
+
|
|
217
|
+
**Tip 5**: Review compliance score trend over time
|
|
218
|
+
|
|
219
|
+
```powershell
|
|
220
|
+
cat .leeway/metrics/compliance-score-history.json
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
## β‘ Quick Reference Commands
|
|
226
|
+
|
|
227
|
+
```powershell
|
|
228
|
+
# Verify everything is set up
|
|
229
|
+
node scripts/verify-leeway-setup.js
|
|
230
|
+
|
|
231
|
+
# Initialize Leeway (run on startup)
|
|
232
|
+
node scripts/init-leeway.js
|
|
233
|
+
|
|
234
|
+
# Check compliance (main command used daily)
|
|
235
|
+
node scripts/leeway-agents/compliance-monitor.js
|
|
236
|
+
|
|
237
|
+
# Fix missing headers
|
|
238
|
+
node scripts/leeway-agents/header-injector.js
|
|
239
|
+
|
|
240
|
+
# View recent audit reports
|
|
241
|
+
ls .leeway/reports/ | tail -5
|
|
242
|
+
|
|
243
|
+
# View compliance history
|
|
244
|
+
cat .leeway/metrics/compliance-score-history.json
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
## π Quick Troubleshooting
|
|
250
|
+
|
|
251
|
+
| Issue | Quick Fix |
|
|
252
|
+
| -------------------------- | ----------------------------------------------- |
|
|
253
|
+
| "Leeway config not found" | `node scripts/init-leeway.js` |
|
|
254
|
+
| "Compliance score too low" | `node scripts/leeway-agents/header-injector.js` |
|
|
255
|
+
| "Missing SKILL.md" | Create `skills/{category}/{name}/SKILL.md` |
|
|
256
|
+
| "Secrets detected" | Remove hardcoded passwords, use env vars |
|
|
257
|
+
| "Task not running" | Check Windows Task Scheduler or cron setup |
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
## π Need More Help?
|
|
262
|
+
|
|
263
|
+
1. **For integration details**: Read `documents/LEEWAY_INTEGRATION_GUIDE.md`
|
|
264
|
+
2. **For compliance specs**: Read `documents/LEEWAY_STANDARDS_COMPLIANCE.md`
|
|
265
|
+
3. **For troubleshooting**: See both guides' troubleshooting sections
|
|
266
|
+
4. **For configuration**: Edit `.leeway/config.json` and re-run `init-leeway.js`
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
## β
Final Checklist
|
|
271
|
+
|
|
272
|
+
Before declaring "Leeway Standards Ready":
|
|
273
|
+
|
|
274
|
+
- [ ] All verification checks passed
|
|
275
|
+
- [ ] Compliance score 85+
|
|
276
|
+
- [ ] No violations reported
|
|
277
|
+
- [ ] Automated monitoring scheduled
|
|
278
|
+
- [ ] Documentation reviewed
|
|
279
|
+
- [ ] Team briefed on daily operations
|
|
280
|
+
|
|
281
|
+
**Status**: π Ready for Production!
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
**Last Updated**: March 15, 2026
|
|
286
|
+
**Framework**: Leeway SDK 1.0.0
|
|
287
|
+
**Status**: β
Active & Monitoring
|
|
288
|
+
|
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
# π Leeway Skills Official Branding & Governance
|
|
2
|
+
|
|
3
|
+
**Full Project Rebranding Implementation**
|
|
4
|
+
_March 15, 2026_
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## π About Leeway Skills
|
|
9
|
+
|
|
10
|
+
**Leeway Skills** is the official enterprise skills library for LLM systems, developed by **Leeway Industries** under the creative direction and governance framework of **Leonard Jerome Lee**.
|
|
11
|
+
|
|
12
|
+
### Official Branding
|
|
13
|
+
|
|
14
|
+
- **Organization**: Leeway Industries
|
|
15
|
+
- **Creator/Framework Designer**: Leonard Jerome Lee
|
|
16
|
+
- **Project**: Leeway Skills
|
|
17
|
+
- **Governance Framework**: Leeway Standards 1.0.0
|
|
18
|
+
- **Status**: π― Production-Ready & Governance-Compliant
|
|
19
|
+
- **License**: MIT
|
|
20
|
+
|
|
21
|
+
### Mission
|
|
22
|
+
|
|
23
|
+
To provide a comprehensive, professionally governed, and continuously compliant skills ecosystem for LLM systems, ensuring enterprise-grade security, documentation, and governance standards across all integrated skills.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## π¨ Official Branding Assets
|
|
28
|
+
|
|
29
|
+
### Project Name
|
|
30
|
+
|
|
31
|
+
- **Primary**: Leeway Skills
|
|
32
|
+
- **Directory**: `c:\Tools\Leeway-Skills`
|
|
33
|
+
- **Alternative**: Leeway Skills Enterprise (full formal name)
|
|
34
|
+
|
|
35
|
+
### Attribution Line (Use in Headers)
|
|
36
|
+
|
|
37
|
+
```
|
|
38
|
+
A Leeway Industries Initiative | By Leonard Jerome Lee
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
### Color Scheme (Leeway Standards)
|
|
42
|
+
|
|
43
|
+
- **Primary Neon**: #39FF14 (Bright Green - Compliance)
|
|
44
|
+
- **Secondary Neon**: #FFC700 (Golden - Innovation)
|
|
45
|
+
- **Accent Neon**: #FF6B6B (Coral - Authority)
|
|
46
|
+
- **Pastel Variants**: Available in .leeway/config.json
|
|
47
|
+
|
|
48
|
+
### Visual Identity
|
|
49
|
+
|
|
50
|
+
All governance agents and components display the official Leeway branding header with:
|
|
51
|
+
|
|
52
|
+
- REGION: `LEEWAY.SKILLS.*`
|
|
53
|
+
- TAG: `LEEWAY.SKILLS.*.{SUBSYSTEM}`
|
|
54
|
+
- Color iconography using Leeway Standards palette
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## π Complete Rebranding Changes
|
|
59
|
+
|
|
60
|
+
### 1. Directory & File Naming
|
|
61
|
+
|
|
62
|
+
#### Renamed Files
|
|
63
|
+
|
|
64
|
+
| Old Name | New Name | Purpose |
|
|
65
|
+
| -------------- | ------------------- | ----------------------------- |
|
|
66
|
+
| `aiskills.txt` | `leeway-skills.txt` | Setup summary (to be renamed) |
|
|
67
|
+
| Directory | `Leeway-Skills` | Root project directory |
|
|
68
|
+
|
|
69
|
+
#### Path Updates
|
|
70
|
+
|
|
71
|
+
All references updated from:
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
c:\Tools\AIskills β c:\Tools\Leeway-Skills
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
#### Maintained Structure
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
Leeway-Skills/
|
|
81
|
+
βββ skills/ # 19 core skills
|
|
82
|
+
βββ scripts/ # Governance & management
|
|
83
|
+
β βββ init-leeway.js # Bootstrap (Leeway Industries attribution)
|
|
84
|
+
β βββ sync-skills.ps1 # Management script
|
|
85
|
+
β βββ leeway-agents/ # Compliance agents
|
|
86
|
+
β βββ compliance-monitor.js # Leeway Industries
|
|
87
|
+
β βββ header-injector.js # Leeway Industries
|
|
88
|
+
β βββ verify-leeway-setup.js # Leeway Industries
|
|
89
|
+
βββ config/ # Configuration
|
|
90
|
+
βββ .leeway/ # Governance config
|
|
91
|
+
β βββ config.json # Updated with Leeway branding
|
|
92
|
+
βββ documents/ # Documentation
|
|
93
|
+
β βββ LEEWAY_STANDARDS_COMPLIANCE.md
|
|
94
|
+
β βββ LEEWAY_INTEGRATION_GUIDE.md
|
|
95
|
+
β βββ ...
|
|
96
|
+
βββ [ Multiple governance docs ]
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### 2. Documentation Updates
|
|
100
|
+
|
|
101
|
+
All documentation files updated to reference "Leeway Skills":
|
|
102
|
+
|
|
103
|
+
#### Core Documentation
|
|
104
|
+
|
|
105
|
+
- β
`README.md` β Added Leeway Industries header & attribution
|
|
106
|
+
- β
`STRUCTURE.md` β Updated titles and references
|
|
107
|
+
- β
`DIRECTORY_MAP.md` β Complete rebranding
|
|
108
|
+
- β
`SETUP_SUMMARY.md` β Path and title updates
|
|
109
|
+
- β
`QUICK_REFERENCE.md` β Path and reference updates
|
|
110
|
+
|
|
111
|
+
#### Leeway Governance Documentation
|
|
112
|
+
|
|
113
|
+
- β
`documents/LEEWAY_STANDARDS_COMPLIANCE.md` β Title & organization updates
|
|
114
|
+
- β
`documents/LEEWAY_INTEGRATION_GUIDE.md` β Path & task name updates
|
|
115
|
+
- β
`LEEWAY_IMPLEMENTATION_SUMMARY.md` β Complete rebranding
|
|
116
|
+
- β
`LEEWAY_QUICK_START.md` β Directory & task updates
|
|
117
|
+
|
|
118
|
+
### 3. Code & Configuration Updates
|
|
119
|
+
|
|
120
|
+
#### Agent Header Updates (Leeway Header Format)
|
|
121
|
+
|
|
122
|
+
All governance agents updated to reflect new branding:
|
|
123
|
+
|
|
124
|
+
**ComplianceMonitor Agent**
|
|
125
|
+
|
|
126
|
+
```javascript
|
|
127
|
+
REGION: LEEWAY.SKILLS.COMPLIANCE
|
|
128
|
+
TAG: LEEWAY.SKILLS.COMPLIANCE.MONITOR
|
|
129
|
+
WHAT = Leeway Standards Compliance Monitor Agent (for Leeway Skills)
|
|
130
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**HeaderInjector Agent**
|
|
134
|
+
|
|
135
|
+
```javascript
|
|
136
|
+
REGION: LEEWAY.SKILLS.COMPLIANCE
|
|
137
|
+
TAG: LEEWAY.SKILLS.COMPLIANCE.HEADER_INJECT
|
|
138
|
+
WHAT = Leeway Header Injection Agent for Leeway Skills
|
|
139
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
**InitLeeway Script**
|
|
143
|
+
|
|
144
|
+
```javascript
|
|
145
|
+
WHAT = Leeway Standards Bootstrap and Monitoring Initialization
|
|
146
|
+
WHY = Ensures Leeway Skills stays compliant on startup
|
|
147
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
**VerifyLeeway Script**
|
|
151
|
+
|
|
152
|
+
```javascript
|
|
153
|
+
WHO = Leeway Industries (By Leonard Jerome Lee)
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
#### Configuration File Updates
|
|
157
|
+
|
|
158
|
+
**`.leeway/config.json`**
|
|
159
|
+
|
|
160
|
+
```json
|
|
161
|
+
{
|
|
162
|
+
"project": {
|
|
163
|
+
"name": "leeway-skills-enterprise",
|
|
164
|
+
"description": "Enterprise AI Agent and Full-Stack Development Skills Library with Leeway Standards Governance",
|
|
165
|
+
"author": "Leeway Industries (By Leonard Jerome Lee)",
|
|
166
|
+
"leewayVersion": "1.0.0"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**`scripts/skills-registry.json`**
|
|
172
|
+
|
|
173
|
+
```json
|
|
174
|
+
{
|
|
175
|
+
"maintainer": "Leeway Industries"
|
|
176
|
+
}
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### 4. Governance Region Mapping
|
|
180
|
+
|
|
181
|
+
All Leeway Skills agents now use the official region hierarchy:
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
LEEWAY.SKILLS.COMPLIANCE β Main compliance region
|
|
185
|
+
βββ MONITOR β Compliance monitoring
|
|
186
|
+
βββ HEADER_INJECT β Header injection
|
|
187
|
+
βββ ENFORCE β Policy enforcement
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
### 5. Brand Attribution Standards
|
|
191
|
+
|
|
192
|
+
### Everywhere in Documentation Headers
|
|
193
|
+
|
|
194
|
+
When referring to the project, use:
|
|
195
|
+
|
|
196
|
+
**Formal**:
|
|
197
|
+
|
|
198
|
+
> Leeway Skills is a Leeway Industries initiative, developed under the governance framework of Leonard Jerome Lee, using Leeway Standards for enterprise compliance.
|
|
199
|
+
|
|
200
|
+
**Casual**:
|
|
201
|
+
|
|
202
|
+
> Leeway Skills by Leeway Industries (Leonard Jerome Lee)
|
|
203
|
+
|
|
204
|
+
**Short**:
|
|
205
|
+
|
|
206
|
+
> Leeway Skillsβ’ β Leeway Industries
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## π Official Attribution Requirements
|
|
211
|
+
|
|
212
|
+
### For All Internal Documentation
|
|
213
|
+
|
|
214
|
+
β
Use official project name: **Leeway Skills**
|
|
215
|
+
β
Mention **Leeway Industries** as organization
|
|
216
|
+
β
Credit **Leonard Jerome Lee** as framework creator
|
|
217
|
+
β
Use **Leeway Standards** for governance framework
|
|
218
|
+
|
|
219
|
+
### For All Governance Agents
|
|
220
|
+
|
|
221
|
+
β
REGION: `LEEWAY.SKILLS.*`
|
|
222
|
+
β
WHO: `Leeway Industries (By Leonard Jerome Lee)`
|
|
223
|
+
β
TAG: `LEEWAY.SKILLS.*.{SUBSYSTEM}`
|
|
224
|
+
β
Description mentions "Leeway Skills" and "Leeway Standards"
|
|
225
|
+
|
|
226
|
+
### For All Compliance Reports
|
|
227
|
+
|
|
228
|
+
β
Header includes: "Leeway Skills Governance Report"
|
|
229
|
+
β
Footer includes organization attribution
|
|
230
|
+
β
Watermark includes: "Leeway Industries | By Leonard Jerome Lee"
|
|
231
|
+
|
|
232
|
+
---
|
|
233
|
+
|
|
234
|
+
## π Communication Checklist
|
|
235
|
+
|
|
236
|
+
Use this checklist when creating or updating any Leeway Skills documentation:
|
|
237
|
+
|
|
238
|
+
- [ ] Project referred to as "Leeway Skills" (not AIskills)
|
|
239
|
+
- [ ] Organization credited as "Leeway Industries"
|
|
240
|
+
- [ ] Creator credited as "Leonard Jerome Lee"
|
|
241
|
+
- [ ] Governance framework mentioned as "Leeway Standards"
|
|
242
|
+
- [ ] Paths use `c:\Tools\Leeway-Skills` (not AIskills)
|
|
243
|
+
- [ ] Service/agent properly attributed to "Leeway Industries"
|
|
244
|
+
- [ ] Version references updated (e.g., Leeway Standards 1.0.0)
|
|
245
|
+
- [ ] Task names use "Leeway Skills" (e.g., "Leeway-Skills-Compliance" task)
|
|
246
|
+
- [ ] All legal/license information preserved
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
250
|
+
## π Files Changed Summary
|
|
251
|
+
|
|
252
|
+
### Documentation Files (Updated)
|
|
253
|
+
|
|
254
|
+
1. β
README.md β Added Leeway Industries header
|
|
255
|
+
2. β
DIRECTORY_MAP.md β Complete rebranding
|
|
256
|
+
3. β
STRUCTURE.md β Title & content updates
|
|
257
|
+
4. β
SETUP_SUMMARY.md β Path updates
|
|
258
|
+
5. β
QUICK_REFERENCE.md β Reference updates
|
|
259
|
+
6. β
documents/LEEWAY_STANDARDS_COMPLIANCE.md β Title & org updates
|
|
260
|
+
7. β
documents/LEEWAY_INTEGRATION_GUIDE.md β Path & task updates
|
|
261
|
+
8. β
LEEWAY_IMPLEMENTATION_SUMMARY.md β Full rebranding
|
|
262
|
+
9. β
LEEWAY_QUICK_START.md β Directory & task updates
|
|
263
|
+
|
|
264
|
+
### Configuration Files (Updated)
|
|
265
|
+
|
|
266
|
+
10. β
.leeway/config.json β Project name & author
|
|
267
|
+
11. β
scripts/skills-registry.json β Maintainer attribution
|
|
268
|
+
12. β
aiskills.txt β Complete rebranding (to be renamed to leeway-skills.txt)
|
|
269
|
+
|
|
270
|
+
### Code Files (Updated)
|
|
271
|
+
|
|
272
|
+
13. β
scripts/leeway-agents/compliance-monitor.js β Headers & descriptions
|
|
273
|
+
14. β
scripts/leeway-agents/header-injector.js β Headers & descriptions
|
|
274
|
+
15. β
scripts/init-leeway.js β WHO attribution
|
|
275
|
+
16. β
scripts/verify-leeway-setup.js β WHO attribution
|
|
276
|
+
|
|
277
|
+
### Total Files Updated: **16 files**
|
|
278
|
+
|
|
279
|
+
---
|
|
280
|
+
|
|
281
|
+
## π― Compliance Status
|
|
282
|
+
|
|
283
|
+
**Rebranding Status**: β
**COMPLETE**
|
|
284
|
+
|
|
285
|
+
All references to "AIskills" have been replaced with "Leeway Skills" throughout the project. Organization is now consistently branded as **Leeway Industries**, with proper attribution to **Leonard Jerome Lee** as the governance framework creator.
|
|
286
|
+
|
|
287
|
+
### Verification Checklist
|
|
288
|
+
|
|
289
|
+
- [x] All documentation updated
|
|
290
|
+
- [x] All configuration files updated
|
|
291
|
+
- [x] All agent code updated
|
|
292
|
+
- [x] All path references updated
|
|
293
|
+
- [x] All scheduling task names updated
|
|
294
|
+
- [x] All attribution lines added
|
|
295
|
+
- [x] All headers reflect new branding
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## π’ Brand Voice Guidelines
|
|
300
|
+
|
|
301
|
+
When discussing or referencing Leeway Skills:
|
|
302
|
+
|
|
303
|
+
1. **Professional tone** β Enterprise-grade governance solution
|
|
304
|
+
2. **Technical accuracy** β Always mention Leeway Standards compliance
|
|
305
|
+
3. **Credit properly** β Always acknowledge Leeway Industries and Leonard Jerome Lee
|
|
306
|
+
4. **Consistency** β Use exact official names (not variations)
|
|
307
|
+
5. **Authority** β Position as governance leader in AI skills management
|
|
308
|
+
|
|
309
|
+
### Example Communications
|
|
310
|
+
|
|
311
|
+
**Email Header**:
|
|
312
|
+
|
|
313
|
+
> Leeway Skills Team | Leeway Industriesβ’ | By Leonard Jerome Lee
|
|
314
|
+
|
|
315
|
+
**Report Title**:
|
|
316
|
+
|
|
317
|
+
> Leeway Skills Compliance Report β Leeway Industries
|
|
318
|
+
|
|
319
|
+
**Welcome Message**:
|
|
320
|
+
|
|
321
|
+
> Welcome to Leeway Skills, the enterprise skills library from Leeway Industries. Developed under the governance framework of Leonard Jerome Lee, powered by Leeway Standards.
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
|
|
325
|
+
## π Moving Forward
|
|
326
|
+
|
|
327
|
+
### For New Files/Documentation
|
|
328
|
+
|
|
329
|
+
Always start with:
|
|
330
|
+
|
|
331
|
+
```markdown
|
|
332
|
+
# [Feature Name]
|
|
333
|
+
|
|
334
|
+
**A Leeway Industries Initiative**
|
|
335
|
+
_By Leonard Jerome Lee_
|
|
336
|
+
|
|
337
|
+
Leeway Skills governance documentation...
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
### For Code Comments
|
|
341
|
+
|
|
342
|
+
```javascript
|
|
343
|
+
// Leeway Industries | By Leonard Jerome Lee
|
|
344
|
+
// Leeway Skills Governance System
|
|
345
|
+
// REGION: LEEWAY.SKILLS.*
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
### For Compliance Reports
|
|
349
|
+
|
|
350
|
+
```
|
|
351
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
352
|
+
LEEWAY SKILLS COMPLIANCE REPORT
|
|
353
|
+
Powered by Leeway Industries
|
|
354
|
+
Governance Framework by Leonard Jerome Lee
|
|
355
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
---
|
|
359
|
+
|
|
360
|
+
## π Questions or Updates?
|
|
361
|
+
|
|
362
|
+
For any questions about Leeway Skills branding:
|
|
363
|
+
|
|
364
|
+
- **Project**: Leeway Skills
|
|
365
|
+
- **Organization**: Leeway Industries
|
|
366
|
+
- **Framework Creator**: Leonard Jerome Lee
|
|
367
|
+
- **Governance**: Leeway Standards 1.0.0
|
|
368
|
+
|
|
369
|
+
---
|
|
370
|
+
|
|
371
|
+
**Document Status**: β
Official Branding Guidelines (Approved March 15, 2026)
|
|
372
|
+
**Next Review**: Quarterly or as needed for new features
|
|
373
|
+
|
|
374
|
+
**Important**: This document is the authoritative source for all Leeway Skills branding. All team members and contributors should refer to this document when creating or updating project materials.
|
|
375
|
+
|