@agentlee5/agent-skills 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (182) hide show
  1. package/.leeway/config.json +133 -0
  2. package/LICENSE +21 -0
  3. package/LeeWay-Standards/LICENSE +21 -0
  4. package/LeeWay-Standards/README.md +324 -0
  5. package/LeeWay-Standards/examples/NexusButton.tsx +90 -0
  6. package/LeeWay-Standards/examples/example-agent.js +89 -0
  7. package/LeeWay-Standards/package.json +61 -0
  8. package/LeeWay-Standards/schemas/leeway-config.schema.json +81 -0
  9. package/LeeWay-Standards/schemas/leeway-header.schema.json +63 -0
  10. package/LeeWay-Standards/src/agents/discovery/architecture-map-agent.js +134 -0
  11. package/LeeWay-Standards/src/agents/discovery/docs-agent.js +126 -0
  12. package/LeeWay-Standards/src/agents/discovery/explain-agent.js +95 -0
  13. package/LeeWay-Standards/src/agents/discovery/intent-registry-agent.js +119 -0
  14. package/LeeWay-Standards/src/agents/discovery/schema-agent.js +116 -0
  15. package/LeeWay-Standards/src/agents/discovery/sitemap-agent.js +88 -0
  16. package/LeeWay-Standards/src/agents/governance/align-agent.js +155 -0
  17. package/LeeWay-Standards/src/agents/governance/assess-agent.js +161 -0
  18. package/LeeWay-Standards/src/agents/governance/audit-agent.js +185 -0
  19. package/LeeWay-Standards/src/agents/integrity/circular-dependency-agent.js +88 -0
  20. package/LeeWay-Standards/src/agents/integrity/dependency-graph-agent.js +107 -0
  21. package/LeeWay-Standards/src/agents/integrity/duplicate-logic-agent.js +108 -0
  22. package/LeeWay-Standards/src/agents/integrity/import-agent.js +83 -0
  23. package/LeeWay-Standards/src/agents/integrity/module-policy-agent.js +94 -0
  24. package/LeeWay-Standards/src/agents/integrity/refactor-scan-agent.js +113 -0
  25. package/LeeWay-Standards/src/agents/integrity/syntax-agent.js +84 -0
  26. package/LeeWay-Standards/src/agents/mcp/endpoint-agent.js +106 -0
  27. package/LeeWay-Standards/src/agents/mcp/env-agent.js +111 -0
  28. package/LeeWay-Standards/src/agents/mcp/health-agent-lite.js +119 -0
  29. package/LeeWay-Standards/src/agents/mcp/manifest-agent.js +87 -0
  30. package/LeeWay-Standards/src/agents/mcp/port-agent.js +125 -0
  31. package/LeeWay-Standards/src/agents/mcp/process-agent.js +124 -0
  32. package/LeeWay-Standards/src/agents/mcp/runtime-agent.js +108 -0
  33. package/LeeWay-Standards/src/agents/mcp/transport-agent.js +78 -0
  34. package/LeeWay-Standards/src/agents/orchestration/doctor-agent.js +149 -0
  35. package/LeeWay-Standards/src/agents/orchestration/memory-agent-lite.js +125 -0
  36. package/LeeWay-Standards/src/agents/orchestration/router-agent.js +110 -0
  37. package/LeeWay-Standards/src/agents/security/permission-agent.js +98 -0
  38. package/LeeWay-Standards/src/agents/security/policy-agent.js +100 -0
  39. package/LeeWay-Standards/src/agents/security/privacy-agent.js +83 -0
  40. package/LeeWay-Standards/src/agents/security/prompt-security-agent.js +103 -0
  41. package/LeeWay-Standards/src/agents/security/secret-scan-agent.js +108 -0
  42. package/LeeWay-Standards/src/agents/security/tool-access-agent.js +105 -0
  43. package/LeeWay-Standards/src/agents/standards/authority-agent.js +114 -0
  44. package/LeeWay-Standards/src/agents/standards/discovery-pipeline-agent.js +91 -0
  45. package/LeeWay-Standards/src/agents/standards/header-agent.js +120 -0
  46. package/LeeWay-Standards/src/agents/standards/placement-agent.js +96 -0
  47. package/LeeWay-Standards/src/agents/standards/region-agent.js +99 -0
  48. package/LeeWay-Standards/src/agents/standards/registry-agent.js +153 -0
  49. package/LeeWay-Standards/src/agents/standards/tag-agent.js +111 -0
  50. package/LeeWay-Standards/src/cli/leeway.js +225 -0
  51. package/LeeWay-Standards/src/core/compliance-scorer.js +168 -0
  52. package/LeeWay-Standards/src/core/compliance-scorer.test.js +121 -0
  53. package/LeeWay-Standards/src/core/header-parser.js +207 -0
  54. package/LeeWay-Standards/src/core/header-parser.test.js +198 -0
  55. package/LeeWay-Standards/src/core/region-classifier.js +137 -0
  56. package/LeeWay-Standards/src/core/region-classifier.test.js +100 -0
  57. package/LeeWay-Standards/src/core/tag-validator.js +139 -0
  58. package/LeeWay-Standards/src/core/tag-validator.test.js +109 -0
  59. package/LeeWay-Standards/src/index.js +83 -0
  60. package/README.md +217 -0
  61. package/agent-config.yaml +456 -0
  62. package/agentbage.png.png +0 -0
  63. package/bin/leeway-skills-badge.js +52 -0
  64. package/bin/leeway-skills-mcp.js +48 -0
  65. package/bin/leeway-skills.js +160 -0
  66. package/bin/leeway-standards.js +49 -0
  67. package/config/.skillsignore +63 -0
  68. package/config/skills-config.json +70 -0
  69. package/documents/AGENT_LEARNING_REFERENCE.md +329 -0
  70. package/documents/AGENT_LEE_INTEGRATION.md +534 -0
  71. package/documents/COMPLETE_SYSTEM_OVERVIEW.md +502 -0
  72. package/documents/COMPREHENSIVE_SKILL_INTEGRATION_PLAN.md +644 -0
  73. package/documents/DIRECTORY_MAP.md +323 -0
  74. package/documents/EXTENDING.md +514 -0
  75. package/documents/FILE_DIRECTORY_GUIDE.md +427 -0
  76. package/documents/LEEWAY_BADGE_INTEGRATION.md +76 -0
  77. package/documents/LEEWAY_IMPLEMENTATION_SUMMARY.md +384 -0
  78. package/documents/LEEWAY_INTEGRATION_GUIDE.md +414 -0
  79. package/documents/LEEWAY_NPM_SDK.md +66 -0
  80. package/documents/LEEWAY_QUICK_START.md +288 -0
  81. package/documents/LEEWAY_SKILLS_BRANDING.md +375 -0
  82. package/documents/LEEWAY_SKILLS_MCP_SUMMARY.md +593 -0
  83. package/documents/LEEWAY_STANDARDS_COMPLIANCE.md +361 -0
  84. package/documents/LEEWAY_UNIFIED_ARCHITECTURE.md +473 -0
  85. package/documents/LEEWAY_WORKFLOWS_QUICK_REFERENCE.md +307 -0
  86. package/documents/LEEWAY_WORKFLOWS_STRATEGIC_PLAN.md +515 -0
  87. package/documents/LIFELONG_LEARNING_LAYER.md +478 -0
  88. package/documents/MCP_ARCHITECTURE.md +683 -0
  89. package/documents/QUICK_REFERENCE.md +301 -0
  90. package/documents/SETUP.md +325 -0
  91. package/documents/SETUP_SUMMARY.md +413 -0
  92. package/documents/SKILL_ACQUISITION_EXECUTIVE_SUMMARY.md +373 -0
  93. package/documents/SKILL_ACQUISITION_IMPLEMENTATION.md +692 -0
  94. package/documents/SKILL_ACQUISITION_MANIFEST.md +404 -0
  95. package/documents/SKILL_ACQUISITION_QUICK_REFERENCE.md +349 -0
  96. package/documents/SKILL_WORKFLOW_COMPOSITION_MATRIX.md +537 -0
  97. package/documents/STRUCTURE.md +382 -0
  98. package/documents/SYSTEM_TRANSFORMATION_SUMMARY.md +560 -0
  99. package/documents/USAGE.md +390 -0
  100. package/documents/WORKFLOW_ACQUISITION_MANIFEST.md +576 -0
  101. package/documents/aiskills.txt +460 -0
  102. package/mcp-server/README.md +697 -0
  103. package/mcp-server/dist/badge-proof.d.ts +66 -0
  104. package/mcp-server/dist/badge-proof.d.ts.map +1 -0
  105. package/mcp-server/dist/badge-proof.js +324 -0
  106. package/mcp-server/dist/badge-proof.js.map +1 -0
  107. package/mcp-server/dist/index.d.ts +64 -0
  108. package/mcp-server/dist/index.d.ts.map +1 -0
  109. package/mcp-server/dist/index.js +263 -0
  110. package/mcp-server/dist/index.js.map +1 -0
  111. package/mcp-server/dist/install-badge-proof.d.ts +3 -0
  112. package/mcp-server/dist/install-badge-proof.d.ts.map +1 -0
  113. package/mcp-server/dist/install-badge-proof.js +109 -0
  114. package/mcp-server/dist/install-badge-proof.js.map +1 -0
  115. package/mcp-server/package.json +43 -0
  116. package/mcp-server/src/badge-proof.ts +469 -0
  117. package/mcp-server/src/index.ts +355 -0
  118. package/mcp-server/src/install-badge-proof.ts +132 -0
  119. package/mcp-server/tsconfig.json +22 -0
  120. package/package.json +84 -0
  121. package/scripts/init-leeway.js +217 -0
  122. package/scripts/leeway-agents/compliance-monitor.js +374 -0
  123. package/scripts/leeway-agents/header-injector.js +321 -0
  124. package/scripts/skill-integration-toolkit.py +319 -0
  125. package/scripts/skills-registry.json +1117 -0
  126. package/scripts/sync-skills.ps1 +275 -0
  127. package/scripts/verify-leeway-setup.js +249 -0
  128. package/scripts/workflow-integration-toolkit.py +522 -0
  129. package/sdk/application-installer.js +92 -0
  130. package/sdk/index.js +43 -0
  131. package/sdk/paths.js +167 -0
  132. package/skills/agent-autonomy/autonomous-conductor/SKILL.md +206 -0
  133. package/skills/agent-autonomy/full-stack-delivery/SKILL.md +206 -0
  134. package/skills/agent-orchestration/multi-agent-orchestration/SKILL.md +68 -0
  135. package/skills/agent-patterns/agent-design-patterns/SKILL.md +70 -0
  136. package/skills/ai-ml/llm-prompting/SKILL.md +71 -0
  137. package/skills/ai-ml/ml-model-development/SKILL.md +67 -0
  138. package/skills/ai-ml/multimodal-systems/SKILL.md +71 -0
  139. package/skills/ai-ml/retrieval-generation-fine-tuning/SKILL.md +71 -0
  140. package/skills/architecture/system-design/SKILL.md +67 -0
  141. package/skills/code-analysis/refactoring/SKILL.md +64 -0
  142. package/skills/code-analysis/security-vulnerability-scanning/SKILL.md +71 -0
  143. package/skills/code-analysis/static-analysis/SKILL.md +64 -0
  144. package/skills/code-generation/full-stack-application/SKILL.md +70 -0
  145. package/skills/code-generation/microservices-architecture/SKILL.md +71 -0
  146. package/skills/code-generation/python-codegen/SKILL.md +64 -0
  147. package/skills/code-generation/typescript-codegen/SKILL.md +64 -0
  148. package/skills/data-analysis/advanced-analytics/SKILL.md +71 -0
  149. package/skills/data-analysis/pandas-analysis/SKILL.md +66 -0
  150. package/skills/database-design/database-design-optimization/SKILL.md +70 -0
  151. package/skills/debugging/javascript-debugging/SKILL.md +67 -0
  152. package/skills/debugging/python-debugging/SKILL.md +67 -0
  153. package/skills/devops/dockerfile-creation/SKILL.md +64 -0
  154. package/skills/devops/kubernetes-deployment/SKILL.md +65 -0
  155. package/skills/documentation/api-documentation/SKILL.md +67 -0
  156. package/skills/error-handling/resilience-patterns/SKILL.md +70 -0
  157. package/skills/git-workflow/git-collaboration/SKILL.md +67 -0
  158. package/skills/infrastructure/cicd-pipelines/SKILL.md +70 -0
  159. package/skills/infrastructure/infrastructure-as-code/SKILL.md +70 -0
  160. package/skills/observability/monitoring-and-observability/SKILL.md +70 -0
  161. package/skills/performance-optimization/performance-engineering/SKILL.md +70 -0
  162. package/skills/prompt-optimization/prompt-engineering-advanced/SKILL.md +70 -0
  163. package/skills/quality-assurance/deployment-validator/SKILL.md +382 -0
  164. package/skills/quality-assurance/web-security-sweep/SKILL.md +320 -0
  165. package/skills/rag-knowledge/rag-systems/SKILL.md +70 -0
  166. package/skills/research/knowledge-synthesis/SKILL.md +71 -0
  167. package/skills/security/authentication-authorization/SKILL.md +71 -0
  168. package/skills/security/code-security/SKILL.md +66 -0
  169. package/skills/security/secure-architecture/SKILL.md +71 -0
  170. package/skills/self-optimization/dev-loop-optimizer/SKILL.md +344 -0
  171. package/skills/self-optimization/memory-learning/SKILL.md +335 -0
  172. package/skills/self-optimization/runtime-self-profiling/SKILL.md +250 -0
  173. package/skills/testing/advanced-testing-strategies/SKILL.md +71 -0
  174. package/skills/testing/integration-testing/SKILL.md +66 -0
  175. package/skills/testing/load-testing-capacity/SKILL.md +71 -0
  176. package/skills/testing/unit-testing/SKILL.md +66 -0
  177. package/skills/tool-integration/custom-tool-creation/SKILL.md +70 -0
  178. package/skills/web-development/advanced-frontend-patterns/SKILL.md +71 -0
  179. package/skills/web-development/api-design/SKILL.md +71 -0
  180. package/skills/web-development/css-styling/SKILL.md +67 -0
  181. package/skills/web-development/react-development/SKILL.md +79 -0
  182. package/skills/workflow-composition/workflow-orchestration/SKILL.md +70 -0
@@ -0,0 +1,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
+