@heytherevibin/skillforge 0.2.1

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 (402) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/CODE_OF_CONDUCT.md +34 -0
  3. package/CONTRIBUTING.md +38 -0
  4. package/LICENSE +21 -0
  5. package/README.md +337 -0
  6. package/RELEASING.md +93 -0
  7. package/SECURITY.md +31 -0
  8. package/STRATEGY.md +26 -0
  9. package/bin/cli.js +547 -0
  10. package/lib/packs.js +184 -0
  11. package/package.json +38 -0
  12. package/python/app/__init__.py +0 -0
  13. package/python/app/__pycache__/__init__.cpython-312.pyc +0 -0
  14. package/python/app/__pycache__/auth.cpython-312.pyc +0 -0
  15. package/python/app/__pycache__/main.cpython-312.pyc +0 -0
  16. package/python/app/auth.py +63 -0
  17. package/python/app/cli.py +78 -0
  18. package/python/app/db_paths.py +26 -0
  19. package/python/app/events_cli.py +175 -0
  20. package/python/app/main.py +647 -0
  21. package/python/app/materialize.py +138 -0
  22. package/python/app/mcp_server.py +610 -0
  23. package/python/app/route_cli.py +117 -0
  24. package/python/requirements-dev.txt +1 -0
  25. package/python/requirements.txt +7 -0
  26. package/python/tests/test_db_paths.py +41 -0
  27. package/skills/accessibility/SKILL.md +145 -0
  28. package/skills/agent-architecture-audit/SKILL.md +256 -0
  29. package/skills/agent-eval/SKILL.md +144 -0
  30. package/skills/agent-harness-construction/SKILL.md +72 -0
  31. package/skills/agent-introspection-debugging/SKILL.md +152 -0
  32. package/skills/agent-payment-x402/SKILL.md +224 -0
  33. package/skills/agent-sort/SKILL.md +214 -0
  34. package/skills/agentic-engineering/SKILL.md +62 -0
  35. package/skills/agentic-os/SKILL.md +386 -0
  36. package/skills/ai-first-engineering/SKILL.md +50 -0
  37. package/skills/ai-regression-testing/SKILL.md +384 -0
  38. package/skills/android-clean-architecture/SKILL.md +338 -0
  39. package/skills/angular-developer/SKILL.md +153 -0
  40. package/skills/angular-developer/references/angular-animations.md +160 -0
  41. package/skills/angular-developer/references/angular-aria.md +410 -0
  42. package/skills/angular-developer/references/cli.md +86 -0
  43. package/skills/angular-developer/references/component-harnesses.md +59 -0
  44. package/skills/angular-developer/references/component-styling.md +91 -0
  45. package/skills/angular-developer/references/components.md +117 -0
  46. package/skills/angular-developer/references/creating-services.md +97 -0
  47. package/skills/angular-developer/references/data-resolvers.md +69 -0
  48. package/skills/angular-developer/references/define-routes.md +67 -0
  49. package/skills/angular-developer/references/defining-providers.md +72 -0
  50. package/skills/angular-developer/references/di-fundamentals.md +120 -0
  51. package/skills/angular-developer/references/e2e-testing.md +56 -0
  52. package/skills/angular-developer/references/effects.md +83 -0
  53. package/skills/angular-developer/references/hierarchical-injectors.md +43 -0
  54. package/skills/angular-developer/references/host-elements.md +80 -0
  55. package/skills/angular-developer/references/injection-context.md +63 -0
  56. package/skills/angular-developer/references/inputs.md +101 -0
  57. package/skills/angular-developer/references/linked-signal.md +59 -0
  58. package/skills/angular-developer/references/loading-strategies.md +61 -0
  59. package/skills/angular-developer/references/mcp.md +108 -0
  60. package/skills/angular-developer/references/navigate-to-routes.md +69 -0
  61. package/skills/angular-developer/references/outputs.md +86 -0
  62. package/skills/angular-developer/references/reactive-forms.md +122 -0
  63. package/skills/angular-developer/references/rendering-strategies.md +44 -0
  64. package/skills/angular-developer/references/resource.md +77 -0
  65. package/skills/angular-developer/references/route-animations.md +56 -0
  66. package/skills/angular-developer/references/route-guards.md +52 -0
  67. package/skills/angular-developer/references/router-lifecycle.md +45 -0
  68. package/skills/angular-developer/references/router-testing.md +87 -0
  69. package/skills/angular-developer/references/show-routes-with-outlets.md +68 -0
  70. package/skills/angular-developer/references/signal-forms.md +795 -0
  71. package/skills/angular-developer/references/signals-overview.md +94 -0
  72. package/skills/angular-developer/references/tailwind-css.md +69 -0
  73. package/skills/angular-developer/references/template-driven-forms.md +114 -0
  74. package/skills/angular-developer/references/testing-fundamentals.md +65 -0
  75. package/skills/api-connector-builder/SKILL.md +120 -0
  76. package/skills/api-design/SKILL.md +522 -0
  77. package/skills/architecture-decision-records/SKILL.md +178 -0
  78. package/skills/article-writing/SKILL.md +78 -0
  79. package/skills/automation-audit-ops/SKILL.md +141 -0
  80. package/skills/autonomous-agent-harness/SKILL.md +272 -0
  81. package/skills/autonomous-loops/SKILL.md +609 -0
  82. package/skills/backend-patterns/SKILL.md +560 -0
  83. package/skills/benchmark/SKILL.md +92 -0
  84. package/skills/blueprint/SKILL.md +104 -0
  85. package/skills/browser-qa/SKILL.md +86 -0
  86. package/skills/bun-runtime/SKILL.md +83 -0
  87. package/skills/canary-watch/SKILL.md +98 -0
  88. package/skills/carrier-relationship-management/SKILL.md +211 -0
  89. package/skills/cisco-ios-patterns/SKILL.md +163 -0
  90. package/skills/ck/SKILL.md +147 -0
  91. package/skills/ck/commands/forget.mjs +44 -0
  92. package/skills/ck/commands/info.mjs +24 -0
  93. package/skills/ck/commands/init.mjs +143 -0
  94. package/skills/ck/commands/list.mjs +40 -0
  95. package/skills/ck/commands/migrate.mjs +202 -0
  96. package/skills/ck/commands/resume.mjs +36 -0
  97. package/skills/ck/commands/save.mjs +210 -0
  98. package/skills/ck/commands/shared.mjs +387 -0
  99. package/skills/ck/hooks/session-start.mjs +224 -0
  100. package/skills/claude-devfleet/SKILL.md +103 -0
  101. package/skills/click-path-audit/SKILL.md +244 -0
  102. package/skills/clickhouse-io/SKILL.md +438 -0
  103. package/skills/code-tour/SKILL.md +235 -0
  104. package/skills/codebase-onboarding/SKILL.md +232 -0
  105. package/skills/coding-standards/SKILL.md +548 -0
  106. package/skills/compose-multiplatform-patterns/SKILL.md +298 -0
  107. package/skills/connections-optimizer/SKILL.md +188 -0
  108. package/skills/content-engine/SKILL.md +126 -0
  109. package/skills/content-hash-cache-pattern/SKILL.md +160 -0
  110. package/skills/context-budget/SKILL.md +134 -0
  111. package/skills/continuous-agent-loop/SKILL.md +44 -0
  112. package/skills/continuous-learning/SKILL.md +129 -0
  113. package/skills/continuous-learning/config.json +18 -0
  114. package/skills/continuous-learning/evaluate-session.sh +69 -0
  115. package/skills/continuous-learning-v2/SKILL.md +358 -0
  116. package/skills/continuous-learning-v2/agents/observer-loop.sh +322 -0
  117. package/skills/continuous-learning-v2/agents/observer.md +198 -0
  118. package/skills/continuous-learning-v2/agents/session-guardian.sh +150 -0
  119. package/skills/continuous-learning-v2/agents/start-observer.sh +248 -0
  120. package/skills/continuous-learning-v2/config.json +8 -0
  121. package/skills/continuous-learning-v2/hooks/observe.sh +476 -0
  122. package/skills/continuous-learning-v2/scripts/detect-project.sh +288 -0
  123. package/skills/continuous-learning-v2/scripts/instinct-cli.py +1519 -0
  124. package/skills/continuous-learning-v2/scripts/lib/homunculus-dir.sh +31 -0
  125. package/skills/continuous-learning-v2/scripts/migrate-homunculus.sh +62 -0
  126. package/skills/continuous-learning-v2/scripts/test_parse_instinct.py +1018 -0
  127. package/skills/cost-aware-llm-pipeline/SKILL.md +182 -0
  128. package/skills/cost-tracking/SKILL.md +147 -0
  129. package/skills/council/SKILL.md +202 -0
  130. package/skills/cpp-coding-standards/SKILL.md +722 -0
  131. package/skills/cpp-testing/SKILL.md +323 -0
  132. package/skills/crosspost/SKILL.md +110 -0
  133. package/skills/csharp-testing/SKILL.md +320 -0
  134. package/skills/customer-billing-ops/SKILL.md +139 -0
  135. package/skills/customs-trade-compliance/SKILL.md +262 -0
  136. package/skills/dart-flutter-patterns/SKILL.md +562 -0
  137. package/skills/dashboard-builder/SKILL.md +108 -0
  138. package/skills/data-scraper-agent/SKILL.md +764 -0
  139. package/skills/database-migrations/SKILL.md +428 -0
  140. package/skills/deep-research/SKILL.md +158 -0
  141. package/skills/defi-amm-security/SKILL.md +166 -0
  142. package/skills/deployment-patterns/SKILL.md +426 -0
  143. package/skills/design-system/SKILL.md +81 -0
  144. package/skills/django-celery/SKILL.md +456 -0
  145. package/skills/django-patterns/SKILL.md +733 -0
  146. package/skills/django-security/SKILL.md +592 -0
  147. package/skills/django-tdd/SKILL.md +728 -0
  148. package/skills/django-verification/SKILL.md +468 -0
  149. package/skills/dmux-workflows/SKILL.md +190 -0
  150. package/skills/docker-patterns/SKILL.md +363 -0
  151. package/skills/documentation-lookup/SKILL.md +89 -0
  152. package/skills/dotnet-patterns/SKILL.md +320 -0
  153. package/skills/e2e-testing/SKILL.md +325 -0
  154. package/skills/email-ops/SKILL.md +120 -0
  155. package/skills/energy-procurement/SKILL.md +227 -0
  156. package/skills/enterprise-agent-ops/SKILL.md +49 -0
  157. package/skills/error-handling/SKILL.md +375 -0
  158. package/skills/eval-harness/SKILL.md +269 -0
  159. package/skills/evm-token-decimals/SKILL.md +130 -0
  160. package/skills/exa-search/SKILL.md +106 -0
  161. package/skills/fal-ai-media/SKILL.md +287 -0
  162. package/skills/fastapi-patterns/SKILL.md +327 -0
  163. package/skills/finance-billing-ops/SKILL.md +126 -0
  164. package/skills/flox-environments/SKILL.md +496 -0
  165. package/skills/flutter-dart-code-review/SKILL.md +434 -0
  166. package/skills/foundation-models-on-device/SKILL.md +243 -0
  167. package/skills/frontend-design-direction/SKILL.md +92 -0
  168. package/skills/frontend-patterns/SKILL.md +641 -0
  169. package/skills/frontend-slides/SKILL.md +183 -0
  170. package/skills/frontend-slides/STYLE_PRESETS.md +330 -0
  171. package/skills/frontend-slides/animation-patterns.md +122 -0
  172. package/skills/frontend-slides/html-template.md +419 -0
  173. package/skills/frontend-slides/scripts/export-pdf.sh +418 -0
  174. package/skills/frontend-slides/scripts/extract-pptx.py +96 -0
  175. package/skills/frontend-slides/viewport-base.css +153 -0
  176. package/skills/fsharp-testing/SKILL.md +279 -0
  177. package/skills/gan-style-harness/SKILL.md +278 -0
  178. package/skills/gateguard/SKILL.md +125 -0
  179. package/skills/git-workflow/SKILL.md +714 -0
  180. package/skills/github-ops/SKILL.md +143 -0
  181. package/skills/golang-patterns/SKILL.md +673 -0
  182. package/skills/golang-testing/SKILL.md +719 -0
  183. package/skills/google-workspace-ops/SKILL.md +94 -0
  184. package/skills/healthcare-cdss-patterns/SKILL.md +245 -0
  185. package/skills/healthcare-emr-patterns/SKILL.md +159 -0
  186. package/skills/healthcare-eval-harness/SKILL.md +207 -0
  187. package/skills/healthcare-phi-compliance/SKILL.md +145 -0
  188. package/skills/hermes-imports/SKILL.md +87 -0
  189. package/skills/hexagonal-architecture/SKILL.md +275 -0
  190. package/skills/hipaa-compliance/SKILL.md +78 -0
  191. package/skills/homelab-network-readiness/SKILL.md +169 -0
  192. package/skills/homelab-network-setup/SKILL.md +129 -0
  193. package/skills/homelab-pihole-dns/SKILL.md +274 -0
  194. package/skills/homelab-vlan-segmentation/SKILL.md +311 -0
  195. package/skills/homelab-wireguard-vpn/SKILL.md +305 -0
  196. package/skills/hookify-rules/SKILL.md +128 -0
  197. package/skills/inventory-demand-planning/SKILL.md +246 -0
  198. package/skills/investor-materials/SKILL.md +95 -0
  199. package/skills/investor-outreach/SKILL.md +90 -0
  200. package/skills/ios-icon-gen/SKILL.md +157 -0
  201. package/skills/ios-icon-gen/scripts/generate_icons.swift +258 -0
  202. package/skills/ios-icon-gen/scripts/iconify_gen.sh +235 -0
  203. package/skills/iterative-retrieval/SKILL.md +209 -0
  204. package/skills/java-coding-standards/SKILL.md +382 -0
  205. package/skills/jira-integration/SKILL.md +292 -0
  206. package/skills/jpa-patterns/SKILL.md +150 -0
  207. package/skills/knowledge-ops/SKILL.md +153 -0
  208. package/skills/kotlin-coroutines-flows/SKILL.md +283 -0
  209. package/skills/kotlin-exposed-patterns/SKILL.md +718 -0
  210. package/skills/kotlin-ktor-patterns/SKILL.md +688 -0
  211. package/skills/kotlin-patterns/SKILL.md +710 -0
  212. package/skills/kotlin-testing/SKILL.md +823 -0
  213. package/skills/laravel-patterns/SKILL.md +414 -0
  214. package/skills/laravel-plugin-discovery/SKILL.md +228 -0
  215. package/skills/laravel-security/SKILL.md +284 -0
  216. package/skills/laravel-tdd/SKILL.md +282 -0
  217. package/skills/laravel-verification/SKILL.md +178 -0
  218. package/skills/lead-intelligence/SKILL.md +320 -0
  219. package/skills/lead-intelligence/agents/enrichment-agent.md +85 -0
  220. package/skills/lead-intelligence/agents/mutual-mapper.md +75 -0
  221. package/skills/lead-intelligence/agents/outreach-drafter.md +98 -0
  222. package/skills/lead-intelligence/agents/signal-scorer.md +60 -0
  223. package/skills/liquid-glass-design/SKILL.md +279 -0
  224. package/skills/llm-trading-agent-security/SKILL.md +146 -0
  225. package/skills/logistics-exception-management/SKILL.md +221 -0
  226. package/skills/make-interfaces-feel-better/SKILL.md +151 -0
  227. package/skills/manim-video/SKILL.md +88 -0
  228. package/skills/manim-video/assets/network_graph_scene.py +52 -0
  229. package/skills/market-research/SKILL.md +74 -0
  230. package/skills/mcp-server-patterns/SKILL.md +68 -0
  231. package/skills/messages-ops/SKILL.md +103 -0
  232. package/skills/mle-workflow/SKILL.md +345 -0
  233. package/skills/motion-advanced/SKILL.md +596 -0
  234. package/skills/motion-foundations/SKILL.md +299 -0
  235. package/skills/motion-patterns/SKILL.md +435 -0
  236. package/skills/motion-ui/SKILL.md +574 -0
  237. package/skills/mysql-patterns/SKILL.md +411 -0
  238. package/skills/nanoclaw-repl/SKILL.md +32 -0
  239. package/skills/nestjs-patterns/SKILL.md +229 -0
  240. package/skills/netmiko-ssh-automation/SKILL.md +173 -0
  241. package/skills/network-bgp-diagnostics/SKILL.md +167 -0
  242. package/skills/network-config-validation/SKILL.md +210 -0
  243. package/skills/network-interface-health/SKILL.md +152 -0
  244. package/skills/nextjs-turbopack/SKILL.md +43 -0
  245. package/skills/nodejs-keccak256/SKILL.md +102 -0
  246. package/skills/nutrient-document-processing/SKILL.md +166 -0
  247. package/skills/nuxt4-patterns/SKILL.md +99 -0
  248. package/skills/openclaw-persona-forge/SKILL.md +288 -0
  249. package/skills/openclaw-persona-forge/gacha.py +224 -0
  250. package/skills/openclaw-persona-forge/gacha.sh +5 -0
  251. package/skills/openclaw-persona-forge/references/avatar-style.md +124 -0
  252. package/skills/openclaw-persona-forge/references/boundary-rules.md +53 -0
  253. package/skills/openclaw-persona-forge/references/error-handling.md +53 -0
  254. package/skills/openclaw-persona-forge/references/identity-tension.md +48 -0
  255. package/skills/openclaw-persona-forge/references/naming-system.md +39 -0
  256. package/skills/openclaw-persona-forge/references/output-template.md +166 -0
  257. package/skills/opensource-pipeline/SKILL.md +254 -0
  258. package/skills/perl-patterns/SKILL.md +503 -0
  259. package/skills/perl-security/SKILL.md +502 -0
  260. package/skills/perl-testing/SKILL.md +474 -0
  261. package/skills/plan-orchestrate/SKILL.md +253 -0
  262. package/skills/plankton-code-quality/SKILL.md +236 -0
  263. package/skills/postgres-patterns/SKILL.md +146 -0
  264. package/skills/product-capability/SKILL.md +140 -0
  265. package/skills/product-lens/SKILL.md +91 -0
  266. package/skills/production-audit/SKILL.md +206 -0
  267. package/skills/production-scheduling/SKILL.md +237 -0
  268. package/skills/project-flow-ops/SKILL.md +110 -0
  269. package/skills/prompt-optimizer/SKILL.md +398 -0
  270. package/skills/python-patterns/SKILL.md +749 -0
  271. package/skills/python-testing/SKILL.md +815 -0
  272. package/skills/pytorch-patterns/SKILL.md +395 -0
  273. package/skills/quality-nonconformance/SKILL.md +259 -0
  274. package/skills/quarkus-patterns/SKILL.md +721 -0
  275. package/skills/quarkus-security/SKILL.md +466 -0
  276. package/skills/quarkus-tdd/SKILL.md +810 -0
  277. package/skills/quarkus-verification/SKILL.md +478 -0
  278. package/skills/ralphinho-rfc-pipeline/SKILL.md +66 -0
  279. package/skills/redis-patterns/SKILL.md +402 -0
  280. package/skills/regex-vs-llm-structured-text/SKILL.md +219 -0
  281. package/skills/remotion-video-creation/SKILL.md +43 -0
  282. package/skills/remotion-video-creation/rules/3d.md +86 -0
  283. package/skills/remotion-video-creation/rules/animations.md +29 -0
  284. package/skills/remotion-video-creation/rules/assets/charts-bar-chart.tsx +173 -0
  285. package/skills/remotion-video-creation/rules/assets/text-animations-typewriter.tsx +100 -0
  286. package/skills/remotion-video-creation/rules/assets/text-animations-word-highlight.tsx +108 -0
  287. package/skills/remotion-video-creation/rules/assets.md +78 -0
  288. package/skills/remotion-video-creation/rules/audio.md +172 -0
  289. package/skills/remotion-video-creation/rules/calculate-metadata.md +104 -0
  290. package/skills/remotion-video-creation/rules/can-decode.md +75 -0
  291. package/skills/remotion-video-creation/rules/charts.md +58 -0
  292. package/skills/remotion-video-creation/rules/compositions.md +146 -0
  293. package/skills/remotion-video-creation/rules/display-captions.md +126 -0
  294. package/skills/remotion-video-creation/rules/extract-frames.md +229 -0
  295. package/skills/remotion-video-creation/rules/fonts.md +152 -0
  296. package/skills/remotion-video-creation/rules/get-audio-duration.md +58 -0
  297. package/skills/remotion-video-creation/rules/get-video-dimensions.md +68 -0
  298. package/skills/remotion-video-creation/rules/get-video-duration.md +58 -0
  299. package/skills/remotion-video-creation/rules/gifs.md +138 -0
  300. package/skills/remotion-video-creation/rules/images.md +130 -0
  301. package/skills/remotion-video-creation/rules/import-srt-captions.md +67 -0
  302. package/skills/remotion-video-creation/rules/lottie.md +67 -0
  303. package/skills/remotion-video-creation/rules/measuring-dom-nodes.md +34 -0
  304. package/skills/remotion-video-creation/rules/measuring-text.md +143 -0
  305. package/skills/remotion-video-creation/rules/sequencing.md +106 -0
  306. package/skills/remotion-video-creation/rules/tailwind.md +11 -0
  307. package/skills/remotion-video-creation/rules/text-animations.md +20 -0
  308. package/skills/remotion-video-creation/rules/timing.md +179 -0
  309. package/skills/remotion-video-creation/rules/transcribe-captions.md +19 -0
  310. package/skills/remotion-video-creation/rules/transitions.md +122 -0
  311. package/skills/remotion-video-creation/rules/trimming.md +52 -0
  312. package/skills/remotion-video-creation/rules/videos.md +171 -0
  313. package/skills/repo-scan/SKILL.md +78 -0
  314. package/skills/research-ops/SKILL.md +111 -0
  315. package/skills/returns-reverse-logistics/SKILL.md +239 -0
  316. package/skills/rules-distill/SKILL.md +263 -0
  317. package/skills/rules-distill/scripts/scan-rules.sh +58 -0
  318. package/skills/rules-distill/scripts/scan-skills.sh +129 -0
  319. package/skills/rust-patterns/SKILL.md +498 -0
  320. package/skills/rust-testing/SKILL.md +499 -0
  321. package/skills/safety-guard/SKILL.md +74 -0
  322. package/skills/santa-method/SKILL.md +306 -0
  323. package/skills/scientific-db-pubmed-database/SKILL.md +175 -0
  324. package/skills/scientific-db-uspto-database/SKILL.md +177 -0
  325. package/skills/scientific-pkg-gget/SKILL.md +166 -0
  326. package/skills/scientific-thinking-literature-review/SKILL.md +192 -0
  327. package/skills/scientific-thinking-scholar-evaluation/SKILL.md +160 -0
  328. package/skills/search-first/SKILL.md +181 -0
  329. package/skills/security-bounty-hunter/SKILL.md +99 -0
  330. package/skills/security-review/SKILL.md +502 -0
  331. package/skills/security-review/cloud-infrastructure-security.md +361 -0
  332. package/skills/seo/SKILL.md +153 -0
  333. package/skills/skill-comply/SKILL.md +57 -0
  334. package/skills/skill-comply/fixtures/compliant_trace.jsonl +5 -0
  335. package/skills/skill-comply/fixtures/noncompliant_trace.jsonl +3 -0
  336. package/skills/skill-comply/fixtures/tdd_spec.yaml +44 -0
  337. package/skills/skill-comply/prompts/classifier.md +24 -0
  338. package/skills/skill-comply/prompts/scenario_generator.md +62 -0
  339. package/skills/skill-comply/prompts/spec_generator.md +42 -0
  340. package/skills/skill-comply/pyproject.toml +15 -0
  341. package/skills/skill-comply/scripts/__init__.py +0 -0
  342. package/skills/skill-comply/scripts/classifier.py +85 -0
  343. package/skills/skill-comply/scripts/grader.py +124 -0
  344. package/skills/skill-comply/scripts/parser.py +107 -0
  345. package/skills/skill-comply/scripts/report.py +170 -0
  346. package/skills/skill-comply/scripts/run.py +127 -0
  347. package/skills/skill-comply/scripts/runner.py +186 -0
  348. package/skills/skill-comply/scripts/scenario_generator.py +70 -0
  349. package/skills/skill-comply/scripts/spec_generator.py +72 -0
  350. package/skills/skill-comply/scripts/utils.py +13 -0
  351. package/skills/skill-comply/tests/test_grader.py +197 -0
  352. package/skills/skill-comply/tests/test_parser.py +90 -0
  353. package/skills/skill-comply/tests/test_runner.py +172 -0
  354. package/skills/skill-scout/SKILL.md +139 -0
  355. package/skills/skill-stocktake/SKILL.md +193 -0
  356. package/skills/skill-stocktake/scripts/quick-diff.sh +87 -0
  357. package/skills/skill-stocktake/scripts/save-results.sh +56 -0
  358. package/skills/skill-stocktake/scripts/scan.sh +170 -0
  359. package/skills/social-graph-ranker/SKILL.md +153 -0
  360. package/skills/springboot-patterns/SKILL.md +313 -0
  361. package/skills/springboot-security/SKILL.md +271 -0
  362. package/skills/springboot-tdd/SKILL.md +157 -0
  363. package/skills/springboot-verification/SKILL.md +230 -0
  364. package/skills/strategic-compact/SKILL.md +129 -0
  365. package/skills/strategic-compact/suggest-compact.sh +54 -0
  366. package/skills/swift-actor-persistence/SKILL.md +142 -0
  367. package/skills/swift-concurrency-6-2/SKILL.md +216 -0
  368. package/skills/swift-protocol-di-testing/SKILL.md +189 -0
  369. package/skills/swiftui-patterns/SKILL.md +259 -0
  370. package/skills/tdd-workflow/SKILL.md +462 -0
  371. package/skills/team-builder/SKILL.md +166 -0
  372. package/skills/terminal-ops/SKILL.md +108 -0
  373. package/skills/tinystruct-patterns/SKILL.md +130 -0
  374. package/skills/tinystruct-patterns/references/architecture.md +77 -0
  375. package/skills/tinystruct-patterns/references/data-handling.md +35 -0
  376. package/skills/tinystruct-patterns/references/routing.md +57 -0
  377. package/skills/tinystruct-patterns/references/system-usage.md +74 -0
  378. package/skills/tinystruct-patterns/references/testing.md +59 -0
  379. package/skills/token-budget-advisor/SKILL.md +133 -0
  380. package/skills/ui-demo/SKILL.md +464 -0
  381. package/skills/ui-to-vue/SKILL.md +134 -0
  382. package/skills/unified-notifications-ops/SKILL.md +186 -0
  383. package/skills/verification-loop/SKILL.md +125 -0
  384. package/skills/video-editing/SKILL.md +309 -0
  385. package/skills/videodb/SKILL.md +373 -0
  386. package/skills/videodb/reference/api-reference.md +550 -0
  387. package/skills/videodb/reference/capture-reference.md +407 -0
  388. package/skills/videodb/reference/capture.md +101 -0
  389. package/skills/videodb/reference/editor.md +443 -0
  390. package/skills/videodb/reference/generative.md +331 -0
  391. package/skills/videodb/reference/rtstream-reference.md +564 -0
  392. package/skills/videodb/reference/rtstream.md +65 -0
  393. package/skills/videodb/reference/search.md +230 -0
  394. package/skills/videodb/reference/streaming.md +406 -0
  395. package/skills/videodb/reference/use-cases.md +118 -0
  396. package/skills/videodb/scripts/ws_listener.py +282 -0
  397. package/skills/visa-doc-translate/README.md +86 -0
  398. package/skills/visa-doc-translate/SKILL.md +117 -0
  399. package/skills/vite-patterns/SKILL.md +448 -0
  400. package/skills/windows-desktop-e2e/SKILL.md +787 -0
  401. package/skills/workspace-surface-audit/SKILL.md +124 -0
  402. package/skills/x-api/SKILL.md +233 -0
@@ -0,0 +1,221 @@
1
+ ---
2
+ name: logistics-exception-management
3
+ description: >
4
+ Codified expertise for handling freight exceptions, shipment delays,
5
+ damages, losses, and carrier disputes. Informed by logistics professionals
6
+ with 15+ years operational experience. Includes escalation protocols,
7
+ carrier-specific behaviors, claims procedures, and judgment frameworks.
8
+ Use when handling shipping exceptions, freight claims, delivery issues,
9
+ or carrier disputes.
10
+ license: Apache-2.0
11
+ version: 1.0.0
12
+ origin: the toolset
13
+ metadata:
14
+ author: evos
15
+ clawdbot:
16
+ emoji: ""
17
+ ---
18
+
19
+ # Logistics Exception Management
20
+
21
+ ## Role and Context
22
+
23
+ You are a senior freight exceptions analyst with 15+ years managing shipment exceptions across all modes — LTL, FTL, parcel, intermodal, ocean, and air. You sit at the intersection of shippers, carriers, consignees, insurance providers, and internal stakeholders. Your systems include TMS (transportation management), WMS (warehouse management), carrier portals, claims management platforms, and ERP order management. Your job is to resolve exceptions quickly while protecting financial interests, preserving carrier relationships, and maintaining customer satisfaction.
24
+
25
+ ## When to Use
26
+
27
+ - Shipment is delayed, damaged, lost, or refused at delivery
28
+ - Carrier dispute over liability, accessorial charges, or detention claims
29
+ - Customer escalation due to missed delivery window or incorrect order
30
+ - Filing or managing freight claims with carriers or insurers
31
+ - Building exception handling SOPs or escalation protocols
32
+
33
+ ## How It Works
34
+
35
+ 1. Classify the exception by type (delay, damage, loss, shortage, refusal) and severity
36
+ 2. Apply the appropriate resolution workflow based on classification and financial exposure
37
+ 3. Document evidence per carrier-specific requirements and filing deadlines
38
+ 4. Escalate through defined tiers based on time elapsed and dollar thresholds
39
+ 5. File claims within statute windows, negotiate settlements, and track recovery
40
+
41
+ ## Examples
42
+
43
+ - **Damage claim**: 500-unit shipment arrives with 30% salvageable. Carrier claims force majeure. Walk through evidence collection, salvage assessment, liability determination, claim filing, and negotiation strategy.
44
+ - **Detention dispute**: Carrier bills 8 hours detention at a DC. Receiver says driver arrived 2 hours early. Reconcile GPS data, appointment logs, and gate timestamps to resolve.
45
+ - **Lost shipment**: High-value parcel shows "delivered" but consignee denies receipt. Initiate trace, coordinate with carrier investigation, file claim within the 9-month Carmack window.
46
+
47
+ ## Core Knowledge
48
+
49
+ ### Exception Taxonomy
50
+
51
+ Every exception falls into a classification that determines the resolution workflow, documentation requirements, and urgency:
52
+
53
+ - **Delay (transit):** Shipment not delivered by promised date. Subtypes: weather, mechanical, capacity (no driver), customs hold, consignee reschedule. Most common exception type (~40% of all exceptions). Resolution hinges on whether delay is carrier-fault or force majeure.
54
+ - **Damage (visible):** Noted on POD at delivery. Carrier liability is strong when consignee documents on the delivery receipt. Photograph immediately. Never accept "driver left before we could inspect."
55
+ - **Damage (concealed):** Discovered after delivery, not noted on POD. Must file concealed damage claim within 5 days of delivery (industry standard, not law). Burden of proof shifts to shipper. Carrier will challenge — you need packaging integrity evidence.
56
+ - **Damage (temperature):** Reefer/temperature-controlled failure. Requires continuous temp recorder data (Sensitech, Emerson). Pre-trip inspection records are critical. Carriers will claim "product was loaded warm."
57
+ - **Shortage:** Piece count discrepancy at delivery. Count at the tailgate — never sign clean BOL if count is off. Distinguish driver count vs warehouse count conflicts. OS&D (Over, Short & Damage) report required.
58
+ - **Overage:** More product delivered than on BOL. Often indicates cross-shipment from another consignee. Trace the extra freight — somebody is short.
59
+ - **Refused delivery:** Consignee rejects. Reasons: damaged, late (perishable window), incorrect product, no PO match, dock scheduling conflict. Carrier is entitled to storage charges and return freight if refusal is not carrier-fault.
60
+ - **Misdelivered:** Delivered to wrong address or wrong consignee. Full carrier liability. Time-critical to recover — product deteriorates or gets consumed.
61
+ - **Lost (full shipment):** No delivery, no scan activity. Trigger trace at 24 hours past ETA for FTL, 48 hours for LTL. File formal tracer with carrier OS&D department.
62
+ - **Lost (partial):** Some items missing from shipment. Often happens at LTL terminals during cross-dock handling. Serial number tracking critical for high-value.
63
+ - **Contaminated:** Product exposed to chemicals, odors, or incompatible freight (common in LTL). Regulatory implications for food and pharma.
64
+
65
+ ### Carrier Behaviour by Mode
66
+
67
+ Understanding how different carrier types operate changes your resolution strategy:
68
+
69
+ - **LTL carriers** (FedEx Freight, XPO, Estes): Shipments touch 2-4 terminals. Each touch = damage risk. Claims departments are large and process-driven. Expect 30-60 day claim resolution. Terminal managers have authority up to ~$2,500.
70
+ - **FTL/truckload** (asset carriers + brokers): Single-driver, dock-to-dock. Damage is usually loading/unloading. Brokers add a layer — the broker's carrier may go dark. Always get the actual carrier's MC number.
71
+ - **Parcel** (UPS, FedEx, USPS): Automated claims portals. Strict documentation requirements. Declared value matters — default liability is very low ($100 for UPS). Must purchase additional coverage at shipping.
72
+ - **Intermodal** (rail + drayage): Multiple handoffs. Damage often occurs during rail transit (impact events) or chassis swap. Bill of lading chain determines liability allocation between rail and dray.
73
+ - **Ocean** (container shipping): Governed by Hague-Visby or COGSA (US). Carrier liability is per-package ($500 per package under COGSA unless declared). Container seal integrity is everything. Surveyor inspection at destination port.
74
+ - **Air freight:** Governed by Montreal Convention. Strict 14-day notice for damage, 21 days for delay. Weight-based liability limits unless value declared. Fastest claims resolution of all modes.
75
+
76
+ ### Claims Process Fundamentals
77
+
78
+ - **Carmack Amendment (US domestic surface):** Carrier is liable for actual loss or damage with limited exceptions (act of God, act of public enemy, act of shipper, public authority, inherent vice). Shipper must prove: goods were in good condition when tendered, goods arrived damaged/short, and the amount of damages.
79
+ - **Filing deadline:** 9 months from delivery date for US domestic (49 USC § 14706). Miss this and the claim is time-barred regardless of merit.
80
+ - **Documentation required:** Original BOL (showing clean tender), delivery receipt (showing exception), commercial invoice (proving value), inspection report, photographs, repair estimates or replacement quotes, packaging specifications.
81
+ - **Carrier response:** Carrier has 30 days to acknowledge, 120 days to pay or decline. If they decline, you have 2 years from the decline date to file suit.
82
+
83
+ ### Seasonal and Cyclical Patterns
84
+
85
+ - **Peak season (Oct-Jan):** Exception rates increase 30-50%. Carrier networks are strained. Transit times extend. Claims departments slow down. Build buffer into commitments.
86
+ - **Produce season (Apr-Sep):** Temperature exceptions spike. Reefer availability tightens. Pre-cooling compliance becomes critical.
87
+ - **Hurricane season (Jun-Nov):** Gulf and East Coast disruptions. Force majeure claims increase. Rerouting decisions needed within 4-6 hours of storm track updates.
88
+ - **Month/quarter end:** Shippers rush volume. Carrier tender rejections spike. Double-brokering increases. Quality suffers across the board.
89
+ - **Driver shortage cycles:** Worst in Q4 and after new regulation implementation (ELD mandate, FMCSA drug clearinghouse). Spot rates spike, service drops.
90
+
91
+ ### Fraud and Red Flags
92
+
93
+ - **Staged damages:** Damage patterns inconsistent with transit mode. Multiple claims from same consignee location.
94
+ - **Address manipulation:** Redirect requests post-pickup to different addresses. Common in high-value electronics.
95
+ - **Systematic shortages:** Consistent 1-2 unit shortages across multiple shipments — indicates pilferage at a terminal or during transit.
96
+ - **Double-brokering indicators:** Carrier on BOL doesn't match truck that shows up. Driver can't name their dispatcher. Insurance certificate is from a different entity.
97
+
98
+ ## Decision Frameworks
99
+
100
+ ### Severity Classification
101
+
102
+ Assess every exception on three axes and take the highest severity:
103
+
104
+ **Financial Impact:**
105
+ - Level 1 (Low): < $1,000 product value, no expedite needed
106
+ - Level 2 (Moderate): $1,000 - $5,000 or minor expedite costs
107
+ - Level 3 (Significant): $5,000 - $25,000 or customer penalty risk
108
+ - Level 4 (Major): $25,000 - $100,000 or contract compliance risk
109
+ - Level 5 (Critical): > $100,000 or regulatory/safety implications
110
+
111
+ **Customer Impact:**
112
+ - Standard customer, no SLA at risk → does not elevate
113
+ - Key account with SLA at risk → elevate by 1 level
114
+ - Enterprise customer with penalty clauses → elevate by 2 levels
115
+ - Customer's production line or retail launch at risk → automatic Level 4+
116
+
117
+ **Time Sensitivity:**
118
+ - Standard transit with buffer → does not elevate
119
+ - Delivery needed within 48 hours, no alternative sourced → elevate by 1
120
+ - Same-day or next-day critical (production shutdown, event deadline) → automatic Level 4+
121
+
122
+ ### Eat-the-Cost vs Fight-the-Claim
123
+
124
+ This is the most common judgment call. Thresholds:
125
+
126
+ - **< $500 and carrier relationship is strong:** Absorb. The admin cost of claims processing ($150-250 internal) makes it negative-ROI. Log for carrier scorecard.
127
+ - **$500 - $2,500:** File claim but don't escalate aggressively. This is the "standard process" zone. Accept partial settlements above 70% of value.
128
+ - **$2,500 - $10,000:** Full claims process. Escalate at 30-day mark if no resolution. Involve carrier account manager. Reject settlements below 80%.
129
+ - **> $10,000:** VP-level awareness. Dedicated claims handler. Independent inspection if damage. Reject settlements below 90%. Legal review if denied.
130
+ - **Any amount + pattern:** If this is the 3rd+ exception from the same carrier in 30 days, treat it as a carrier performance issue regardless of individual dollar amounts.
131
+
132
+ ### Priority Sequencing
133
+
134
+ When multiple exceptions are active simultaneously (common during peak season or weather events), prioritize:
135
+
136
+ 1. Safety/regulatory (temperature-controlled pharma, hazmat) — always first
137
+ 2. Customer production shutdown risk — financial multiplier is 10-50x product value
138
+ 3. Perishable with remaining shelf life < 48 hours
139
+ 4. Highest financial impact adjusted for customer tier
140
+ 5. Oldest unresolved exception (prevent aging beyond SLA)
141
+
142
+ ## Key Edge Cases
143
+
144
+ These are situations where the obvious approach is wrong. Brief summaries are included here so you can expand them into project-specific playbooks if needed.
145
+
146
+ 1. **Pharma reefer failure with disputed temps:** Carrier shows correct set-point; your Sensitech data shows excursion. The dispute is about sensor placement and pre-cooling. Never accept carrier's single-point reading — demand continuous data logger download.
147
+
148
+ 2. **Consignee claims damage but caused it during unloading:** POD is signed clean, but consignee calls 2 hours later claiming damage. If your driver witnessed their forklift drop the pallet, the driver's contemporaneous notes are your best defense. Without that, concealed damage claim against you is likely.
149
+
150
+ 3. **72-hour scan gap on high-value shipment:** No tracking updates doesn't always mean lost. LTL scan gaps happen at busy terminals. Before triggering a loss protocol, call the origin and destination terminals directly. Ask for physical trailer/bay location.
151
+
152
+ 4. **Cross-border customs hold:** When a shipment is held at customs, determine quickly if the hold is for documentation (fixable) or compliance (potentially unfixable). Carrier documentation errors (wrong harmonized codes on the carrier's portion) vs shipper errors (incorrect commercial invoice values) require different resolution paths.
153
+
154
+ 5. **Partial deliveries against single BOL:** Multiple delivery attempts where quantities don't match. Maintain a running tally. Don't file shortage claim until all partials are reconciled — carriers will use premature claims as evidence of shipper error.
155
+
156
+ 6. **Broker insolvency mid-shipment:** Your freight is on a truck, the broker who arranged it goes bankrupt. The actual carrier has a lien right. Determine quickly: is the carrier paid? If not, negotiate directly with the carrier for release.
157
+
158
+ 7. **Concealed damage discovered at final customer:** You delivered to distributor, distributor delivered to end customer, end customer finds damage. The chain-of-custody documentation determines who bears the loss.
159
+
160
+ 8. **Peak surcharge dispute during weather event:** Carrier applies emergency surcharge retroactively. Contract may or may not allow this — check force majeure and fuel surcharge clauses specifically.
161
+
162
+ ## Communication Patterns
163
+
164
+ ### Tone Calibration
165
+
166
+ Match communication tone to situation severity and relationship:
167
+
168
+ - **Routine exception, good carrier relationship:** Collaborative. "We've got a delay on PRO# X — can you get me an updated ETA? Customer is asking."
169
+ - **Significant exception, neutral relationship:** Professional and documented. State facts, reference BOL/PRO, specify what you need and by when.
170
+ - **Major exception or pattern, strained relationship:** Formal. CC management. Reference contract terms. Set response deadlines. "Per Section 4.2 of our transportation agreement dated..."
171
+ - **Customer-facing (delay):** Proactive, honest, solution-oriented. Never blame the carrier by name. "Your shipment has experienced a transit delay. Here's what we're doing and your updated timeline."
172
+ - **Customer-facing (damage/loss):** Empathetic, action-oriented. Lead with the resolution, not the problem. "We've identified an issue with your shipment and have already initiated [replacement/credit]."
173
+
174
+ ### Key Templates
175
+
176
+ Brief templates appear below. Adapt them to your carrier, customer, and insurance workflows before using them in production.
177
+
178
+ **Initial carrier inquiry:** Subject: `Exception Notice — PRO# {pro} / BOL# {bol}`. State: what happened, what you need (ETA update, inspection, OS&D report), and by when.
179
+
180
+ **Customer proactive update:** Lead with: what you know, what you're doing about it, what the customer's revised timeline is, and your direct contact for questions.
181
+
182
+ **Escalation to carrier management:** Subject: `ESCALATION: Unresolved Exception — {shipment_ref} — {days} Days`. Include timeline of previous communications, financial impact, and what resolution you expect.
183
+
184
+ ## Escalation Protocols
185
+
186
+ ### Automatic Escalation Triggers
187
+
188
+ | Trigger | Action | Timeline |
189
+ |---|---|---|
190
+ | Exception value > $25,000 | Notify VP Supply Chain immediately | Within 1 hour |
191
+ | Enterprise customer affected | Assign dedicated handler, notify account team | Within 2 hours |
192
+ | Carrier non-response | Escalate to carrier account manager | After 4 hours |
193
+ | Repeated carrier (3+ in 30 days) | Carrier performance review with procurement | Within 1 week |
194
+ | Potential fraud indicators | Notify compliance and halt standard processing | Immediately |
195
+ | Temperature excursion on regulated product | Notify quality/regulatory team | Within 30 minutes |
196
+ | No scan update on high-value (> $50K) | Initiate trace protocol and notify security | After 24 hours |
197
+ | Claims denied > $10,000 | Legal review of denial basis | Within 48 hours |
198
+
199
+ ### Escalation Chain
200
+
201
+ Level 1 (Analyst) → Level 2 (Team Lead, 4 hours) → Level 3 (Manager, 24 hours) → Level 4 (Director, 48 hours) → Level 5 (VP, 72+ hours or any Level 5 severity)
202
+
203
+ ## Performance Indicators
204
+
205
+ Track these metrics weekly and trend monthly:
206
+
207
+ | Metric | Target | Red Flag |
208
+ |---|---|---|
209
+ | Mean resolution time | < 72 hours | > 120 hours |
210
+ | First-contact resolution rate | > 40% | < 25% |
211
+ | Financial recovery rate (claims) | > 75% | < 50% |
212
+ | Customer satisfaction (post-exception) | > 4.0/5.0 | < 3.5/5.0 |
213
+ | Exception rate (per 1,000 shipments) | < 25 | > 40 |
214
+ | Claims filing timeliness | 100% within 30 days | Any > 60 days |
215
+ | Repeat exceptions (same carrier/lane) | < 10% | > 20% |
216
+ | Aged exceptions (> 30 days open) | < 5% of total | > 15% |
217
+
218
+ ## Additional Resources
219
+
220
+ - Pair this skill with your internal claims deadlines, mode-specific escalation matrix, and insurer notice requirements.
221
+ - Keep carrier-specific proof-of-delivery rules and OS&D checklists near the team that will execute the playbooks.
@@ -0,0 +1,151 @@
1
+ ---
2
+ name: make-interfaces-feel-better
3
+ description: Apply concrete design-engineering details that make interfaces feel polished. Use when reviewing or improving UI spacing, typography, borders, shadows, motion, hit areas, icons, text wrapping, and interaction states.
4
+ origin: community
5
+ ---
6
+
7
+ # Make Interfaces Feel Better
8
+
9
+ Use this skill for the small design-engineering details that compound into a
10
+ more polished interface.
11
+
12
+ Source: salvaged from stale community PR #1659 by `linus707`.
13
+
14
+ ## When to Use
15
+
16
+ - The user says the UI feels off, flat, generic, cramped, jumpy, or unfinished.
17
+ - You are building controls, cards, lists, dashboards, navigation, forms, or
18
+ toolbars.
19
+ - A component needs hover, active, focus, enter, exit, loading, or empty states.
20
+ - A frontend review needs specific before/after recommendations.
21
+
22
+ ## Core Principles
23
+
24
+ ### Concentric Radius
25
+
26
+ For nearby nested rounded surfaces:
27
+
28
+ ```text
29
+ outer radius = inner radius + padding
30
+ ```
31
+
32
+ If padding is large, treat layers as separate surfaces instead of forcing the
33
+ math. The point is optical coherence, not formula worship.
34
+
35
+ ### Optical Alignment
36
+
37
+ Geometric centering is not always visual centering. Icon buttons, play
38
+ triangles, arrows, stars, and asymmetric icons often need a small offset. Fix the
39
+ SVG when possible; otherwise adjust with a pixel-level margin or padding change.
40
+
41
+ ### Shadows And Borders
42
+
43
+ Use borders for separation and focus rings. Use layered shadows when a card,
44
+ button, dropdown, or popover needs depth. Shadows should be transparent and
45
+ subtle enough to work across backgrounds.
46
+
47
+ ### Text Wrapping
48
+
49
+ - Use `text-wrap: balance` on headings and short titles.
50
+ - Use `text-wrap: pretty` on short-to-medium body text, captions, descriptions,
51
+ and list items.
52
+ - Avoid both on long prose, code, and preformatted content.
53
+ - Use `font-variant-numeric: tabular-nums` for counters, timers, prices, tables,
54
+ and other updating numbers.
55
+
56
+ ### Font Smoothing
57
+
58
+ On macOS, apply antialiased font smoothing at the root layout when the project
59
+ does not already do so:
60
+
61
+ ```css
62
+ html {
63
+ -webkit-font-smoothing: antialiased;
64
+ -moz-osx-font-smoothing: grayscale;
65
+ }
66
+ ```
67
+
68
+ ### Image Outlines
69
+
70
+ Images often need a subtle inset outline so their edges do not blur into the
71
+ surface.
72
+
73
+ ```css
74
+ img {
75
+ outline: 1px solid rgba(0, 0, 0, 0.1);
76
+ outline-offset: -1px;
77
+ }
78
+
79
+ @media (prefers-color-scheme: dark) {
80
+ img {
81
+ outline-color: rgba(255, 255, 255, 0.1);
82
+ }
83
+ }
84
+ ```
85
+
86
+ Use neutral black or white alpha outlines. Do not tint image outlines with the
87
+ brand palette.
88
+
89
+ ### Motion
90
+
91
+ Use CSS transitions for interactive state changes because they can retarget
92
+ when the user changes intent mid-motion. Reserve keyframes for staged
93
+ one-shot entrances or loading sequences.
94
+
95
+ Good motion defaults:
96
+
97
+ - Enter: combine opacity, small `translateY`, and optionally blur.
98
+ - Exit: shorter and quieter than enter, usually 150ms.
99
+ - Press: `scale(0.96)` for tactile buttons, with a way to disable it when the
100
+ movement distracts.
101
+ - Icon swaps: cross-fade with opacity, scale, and blur instead of instant
102
+ visibility toggles.
103
+
104
+ ### Transition Scope
105
+
106
+ Never use `transition: all`. Specify the changed properties:
107
+
108
+ ```css
109
+ .button {
110
+ transition-property: transform, background-color, box-shadow;
111
+ transition-duration: 150ms;
112
+ transition-timing-function: ease-out;
113
+ }
114
+ ```
115
+
116
+ Use `will-change` only for first-frame stutter on compositor-friendly
117
+ properties such as `transform`, `opacity`, and `filter`. Never use
118
+ `will-change: all`.
119
+
120
+ ### Hit Areas
121
+
122
+ Interactive controls should have at least a 40x40px hit area, ideally 44x44px
123
+ where the layout allows it. Expand with a pseudo-element when the visible icon
124
+ is smaller, but do not let expanded hit areas overlap.
125
+
126
+ ## Review Output
127
+
128
+ When reviewing a UI polish pass, report concrete changes in before/after rows:
129
+
130
+ | Principle | Before | After |
131
+ | --- | --- | --- |
132
+ | Concentric radius | Same radius on parent and child | Parent radius accounts for padding |
133
+ | Tabular numbers | Counter shifts as digits change | Counter uses `tabular-nums` |
134
+ | Transition scope | `transition: all` | Explicit transition properties |
135
+
136
+ Include file paths and properties when they are not obvious from the snippets.
137
+ Omit principles that you checked but did not change.
138
+
139
+ ## Checklist
140
+
141
+ - Nested rounded elements are optically coherent.
142
+ - Icons are visually centered.
143
+ - Buttons, cards, and popovers use borders or shadows for the right reason.
144
+ - Headings and short text avoid awkward wrapping.
145
+ - Dynamic numbers use tabular numerals.
146
+ - Images have neutral outlines where needed.
147
+ - Enter and exit animations are split, subtle, and interruptible where
148
+ appropriate.
149
+ - Buttons have tactile active states without exaggerated motion.
150
+ - `transition: all` and `will-change: all` are absent.
151
+ - Small controls still have usable hit areas.
@@ -0,0 +1,88 @@
1
+ ---
2
+ name: manim-video
3
+ description: Build reusable Manim explainers for technical concepts, graphs, system diagrams, and product walkthroughs, then hand off to the wider the toolset video stack if needed. Use when the user wants a clean animated explainer rather than a generic talking-head script.
4
+ ---
5
+
6
+ # Manim Video
7
+
8
+ Use Manim for technical explainers where motion, structure, and clarity matter more than photorealism.
9
+
10
+ ## When to Activate
11
+
12
+ - the user wants a technical explainer animation
13
+ - the concept is a graph, workflow, architecture, metric progression, or system diagram
14
+ - the user wants a short product or launch explainer for X or a landing page
15
+ - the visual should feel precise instead of generically cinematic
16
+
17
+ ## Tool Requirements
18
+
19
+ - `manim` CLI for scene rendering
20
+ - `ffmpeg` for post-processing if needed
21
+ - `video-editing` for final assembly or polish
22
+ - `remotion-video-creation` when the final package needs composited UI, captions, or additional motion layers
23
+
24
+ ## Default Output
25
+
26
+ - short 16:9 MP4
27
+ - one thumbnail or poster frame
28
+ - storyboard plus scene plan
29
+
30
+ ## Workflow
31
+
32
+ 1. Define the core visual thesis in one sentence.
33
+ 2. Break the concept into 3 to 6 scenes.
34
+ 3. Decide what each scene proves.
35
+ 4. Write the scene outline before writing Manim code.
36
+ 5. Render the smallest working version first.
37
+ 6. Tighten typography, spacing, color, and pacing after the render works.
38
+ 7. Hand off to the wider video stack only if it adds value.
39
+
40
+ ## Scene Planning Rules
41
+
42
+ - each scene should prove one thing
43
+ - avoid overstuffed diagrams
44
+ - prefer progressive reveal over full-screen clutter
45
+ - use motion to explain state change, not just to keep the screen busy
46
+ - title cards should be short and loaded with meaning
47
+
48
+ ## Network Graph Default
49
+
50
+ For social-graph and network-optimization explainers:
51
+
52
+ - show the current graph before showing the optimized graph
53
+ - distinguish low-signal follow clutter from high-signal bridges
54
+ - highlight warm-path nodes and target clusters
55
+ - if useful, add a final scene showing the self-improvement lineage that informed the skill
56
+
57
+ ## Render Conventions
58
+
59
+ - default to 16:9 landscape unless the user asks for vertical
60
+ - start with a low-quality smoke test render
61
+ - only push to higher quality after composition and timing are stable
62
+ - export one clean thumbnail frame that reads at social size
63
+
64
+ ## Reusable Starter
65
+
66
+ Use [assets/network_graph_scene.py](assets/network_graph_scene.py) as a starting point for network-graph explainers.
67
+
68
+ Example smoke test:
69
+
70
+ ```bash
71
+ manim -ql assets/network_graph_scene.py NetworkGraphExplainer
72
+ ```
73
+
74
+ ## Output Format
75
+
76
+ Return:
77
+
78
+ - core visual thesis
79
+ - storyboard
80
+ - scene outline
81
+ - render plan
82
+ - any follow-on polish recommendations
83
+
84
+ ## Related Skills
85
+
86
+ - `video-editing` for final polish
87
+ - `remotion-video-creation` for motion-heavy post-processing or compositing
88
+ - `content-engine` when the animation is part of a broader launch
@@ -0,0 +1,52 @@
1
+ from manim import DOWN, LEFT, RIGHT, UP, Circle, Create, FadeIn, FadeOut, Scene, Text, VGroup, CurvedArrow
2
+
3
+
4
+ class NetworkGraphExplainer(Scene):
5
+ def construct(self):
6
+ title = Text("Connections Optimizer", font_size=40).to_edge(UP)
7
+ subtitle = Text("Prune low-signal follows. Strengthen warm paths.", font_size=20).next_to(title, DOWN)
8
+
9
+ you = Circle(radius=0.45, color="#4F8EF7").shift(LEFT * 4 + DOWN * 0.5)
10
+ you_label = Text("You", font_size=22).move_to(you.get_center())
11
+
12
+ stale_a = Circle(radius=0.32, color="#7A7A7A").shift(LEFT * 1.6 + UP * 1.2)
13
+ stale_b = Circle(radius=0.32, color="#7A7A7A").shift(LEFT * 1.2 + DOWN * 1.4)
14
+ bridge = Circle(radius=0.38, color="#21A179").shift(RIGHT * 0.2 + UP * 0.2)
15
+ target = Circle(radius=0.42, color="#FF9F1C").shift(RIGHT * 3.2 + UP * 0.7)
16
+ new_target = Circle(radius=0.42, color="#FF9F1C").shift(RIGHT * 3.0 + DOWN * 1.4)
17
+
18
+ stale_a_label = Text("stale", font_size=18).move_to(stale_a.get_center())
19
+ stale_b_label = Text("noise", font_size=18).move_to(stale_b.get_center())
20
+ bridge_label = Text("bridge", font_size=18).move_to(bridge.get_center())
21
+ target_label = Text("target", font_size=18).move_to(target.get_center())
22
+ new_target_label = Text("add", font_size=18).move_to(new_target.get_center())
23
+
24
+ edge_stale_a = CurvedArrow(you.get_right(), stale_a.get_left(), angle=0.2, color="#7A7A7A")
25
+ edge_stale_b = CurvedArrow(you.get_right(), stale_b.get_left(), angle=-0.2, color="#7A7A7A")
26
+ edge_bridge = CurvedArrow(you.get_right(), bridge.get_left(), angle=0.0, color="#21A179")
27
+ edge_target = CurvedArrow(bridge.get_right(), target.get_left(), angle=0.1, color="#21A179")
28
+ edge_new_target = CurvedArrow(bridge.get_right(), new_target.get_left(), angle=-0.12, color="#21A179")
29
+
30
+ self.play(FadeIn(title), FadeIn(subtitle))
31
+ self.play(
32
+ Create(you),
33
+ FadeIn(you_label),
34
+ Create(stale_a),
35
+ Create(stale_b),
36
+ Create(bridge),
37
+ Create(target),
38
+ FadeIn(stale_a_label),
39
+ FadeIn(stale_b_label),
40
+ FadeIn(bridge_label),
41
+ FadeIn(target_label),
42
+ )
43
+ self.play(Create(edge_stale_a), Create(edge_stale_b), Create(edge_bridge), Create(edge_target))
44
+
45
+ optimize = Text("Optimize the graph", font_size=24).to_edge(DOWN)
46
+ self.play(FadeIn(optimize))
47
+ self.play(FadeOut(stale_a), FadeOut(stale_b), FadeOut(stale_a_label), FadeOut(stale_b_label), FadeOut(edge_stale_a), FadeOut(edge_stale_b))
48
+ self.play(Create(new_target), FadeIn(new_target_label), Create(edge_new_target))
49
+
50
+ final_group = VGroup(you, you_label, bridge, bridge_label, target, target_label, new_target, new_target_label)
51
+ self.play(final_group.animate.shift(UP * 0.1))
52
+ self.wait(1)
@@ -0,0 +1,74 @@
1
+ ---
2
+ name: market-research
3
+ description: Conduct market research, competitive analysis, investor due diligence, and industry intelligence with source attribution and decision-oriented summaries. Use when the user wants market sizing, competitor comparisons, fund research, technology scans, or research that informs business decisions.
4
+ ---
5
+
6
+ # Market Research
7
+
8
+ Produce research that supports decisions, not research theater.
9
+
10
+ ## When to Activate
11
+
12
+ - researching a market, category, company, investor, or technology trend
13
+ - building TAM/SAM/SOM estimates
14
+ - comparing competitors or adjacent products
15
+ - preparing investor dossiers before outreach
16
+ - pressure-testing a thesis before building, funding, or entering a market
17
+
18
+ ## Research Standards
19
+
20
+ 1. Every important claim needs a source.
21
+ 2. Prefer recent data and call out stale data.
22
+ 3. Include contrarian evidence and downside cases.
23
+ 4. Translate findings into a decision, not just a summary.
24
+ 5. Separate fact, inference, and recommendation clearly.
25
+
26
+ ## Common Research Modes
27
+
28
+ ### Investor / Fund Diligence
29
+ Collect:
30
+ - fund size, stage, and typical check size
31
+ - relevant portfolio companies
32
+ - public thesis and recent activity
33
+ - reasons the fund is or is not a fit
34
+ - any obvious red flags or mismatches
35
+
36
+ ### Competitive Analysis
37
+ Collect:
38
+ - product reality, not marketing copy
39
+ - funding and investor history if public
40
+ - traction metrics if public
41
+ - distribution and pricing clues
42
+ - strengths, weaknesses, and positioning gaps
43
+
44
+ ### Market Sizing
45
+ Use:
46
+ - top-down estimates from reports or public datasets
47
+ - bottom-up sanity checks from realistic customer acquisition assumptions
48
+ - explicit assumptions for every leap in logic
49
+
50
+ ### Technology / Vendor Research
51
+ Collect:
52
+ - how it works
53
+ - trade-offs and adoption signals
54
+ - integration complexity
55
+ - lock-in, security, compliance, and operational risk
56
+
57
+ ## Output Format
58
+
59
+ Default structure:
60
+ 1. executive summary
61
+ 2. key findings
62
+ 3. implications
63
+ 4. risks and caveats
64
+ 5. recommendation
65
+ 6. sources
66
+
67
+ ## Quality Gate
68
+
69
+ Before delivering:
70
+ - all numbers are sourced or labeled as estimates
71
+ - old data is flagged
72
+ - the recommendation follows from the evidence
73
+ - risks and counterarguments are included
74
+ - the output makes a decision easier
@@ -0,0 +1,68 @@
1
+ ---
2
+ name: mcp-server-patterns
3
+ description: Build MCP servers with Node/TypeScript SDK — tools, resources, prompts, Zod validation, stdio vs Streamable HTTP. Use Context7 or official MCP docs for latest API.
4
+ ---
5
+
6
+ # MCP Server Patterns
7
+
8
+ The Model Context Protocol (MCP) lets AI assistants call tools, read resources, and use prompts from your server. Use this skill when building or maintaining MCP servers. The SDK API evolves; check Context7 (query-docs for "MCP") or the official MCP documentation for current method names and signatures.
9
+
10
+ For the broader routing decision of when a capability should be a rule, a skill, MCP, or a plain CLI/API workflow, see [docs/capability-surface-selection.md](../../docs/capability-surface-selection.md).
11
+
12
+ ## When to Use
13
+
14
+ Use when: implementing a new MCP server, adding tools or resources, choosing stdio vs HTTP, upgrading the SDK, or debugging MCP registration and transport issues.
15
+
16
+ ## How It Works
17
+
18
+ ### Core concepts
19
+
20
+ - **Tools**: Actions the model can invoke (e.g. search, run a command). Register with `registerTool()` or `tool()` depending on SDK version.
21
+ - **Resources**: Read-only data the model can fetch (e.g. file contents, API responses). Register with `registerResource()` or `resource()`. Handlers typically receive a `uri` argument.
22
+ - **Prompts**: Reusable, parameterised prompt templates the client can surface (e.g. in Claude Desktop). Register with `registerPrompt()` or equivalent.
23
+ - **Transport**: stdio for local clients (e.g. Claude Desktop); Streamable HTTP is preferred for remote (Cursor, cloud). Legacy HTTP/SSE is for backward compatibility.
24
+
25
+ The Node/TypeScript SDK may expose `tool()` / `resource()` or `registerTool()` / `registerResource()`; the official SDK has changed over time. Always verify against the current [MCP docs](https://modelcontextprotocol.io) or Context7.
26
+
27
+ ### Connecting with stdio
28
+
29
+ For local clients, create a stdio transport and pass it to your server’s connect method. The exact API varies by SDK version (e.g. constructor vs factory). See the official MCP documentation or query Context7 for "MCP stdio server" for the current pattern.
30
+
31
+ Keep server logic (tools + resources) independent of transport so you can plug in stdio or HTTP in the entrypoint.
32
+
33
+ ### Remote (Streamable HTTP)
34
+
35
+ For Cursor, cloud, or other remote clients, use **Streamable HTTP** (single MCP HTTP endpoint per current spec). Support legacy HTTP/SSE only when backward compatibility is required.
36
+
37
+ ## Examples
38
+
39
+ ### Install and server setup
40
+
41
+ ```bash
42
+ npm install @modelcontextprotocol/sdk zod
43
+ ```
44
+
45
+ ```typescript
46
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
47
+ import { z } from "zod";
48
+
49
+ const server = new McpServer({ name: "my-server", version: "1.0.0" });
50
+ ```
51
+
52
+ Register tools and resources using the API your SDK version provides: some versions use `server.tool(name, description, schema, handler)` (positional args), others use `server.tool({ name, description, inputSchema }, handler)` or `registerTool()`. Same for resources — include a `uri` in the handler when the API provides it. Check the official MCP docs or Context7 for the current `@modelcontextprotocol/sdk` signatures to avoid copy-paste errors.
53
+
54
+ Use **Zod** (or the SDK’s preferred schema format) for input validation.
55
+
56
+ ## Best Practices
57
+
58
+ - **Schema first**: Define input schemas for every tool; document parameters and return shape.
59
+ - **Errors**: Return structured errors or messages the model can interpret; avoid raw stack traces.
60
+ - **Idempotency**: Prefer idempotent tools where possible so retries are safe.
61
+ - **Rate and cost**: For tools that call external APIs, consider rate limits and cost; document in the tool description.
62
+ - **Versioning**: Pin SDK version in package.json; check release notes when upgrading.
63
+
64
+ ## Official SDKs and Docs
65
+
66
+ - **JavaScript/TypeScript**: `@modelcontextprotocol/sdk` (npm). Use Context7 with library name "MCP" for current registration and transport patterns.
67
+ - **Go**: Official Go SDK on GitHub (`modelcontextprotocol/go-sdk`).
68
+ - **C#**: Official C# SDK for .NET.