@hera-al/server 1.6.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 (348) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +325 -0
  3. package/bundled/apple-notes/SKILL.md +77 -0
  4. package/bundled/apple-reminders/SKILL.md +96 -0
  5. package/bundled/blogwatcher/SKILL.md +69 -0
  6. package/bundled/camsnap/SKILL.md +45 -0
  7. package/bundled/discord/SKILL.md +578 -0
  8. package/bundled/gemini/SKILL.md +43 -0
  9. package/bundled/gifgrep/SKILL.md +79 -0
  10. package/bundled/github/SKILL.md +77 -0
  11. package/bundled/gog/SKILL.md +116 -0
  12. package/bundled/goplaces/SKILL.md +52 -0
  13. package/bundled/himalaya/SKILL.md +257 -0
  14. package/bundled/himalaya/references/configuration.md +184 -0
  15. package/bundled/himalaya/references/message-composition.md +199 -0
  16. package/bundled/homebrew/SKILL.md +82 -0
  17. package/bundled/local-places/SERVER_README.md +101 -0
  18. package/bundled/local-places/SKILL.md +102 -0
  19. package/bundled/local-places/pyproject.toml +21 -0
  20. package/bundled/local-places/src/local_places/__init__.py +2 -0
  21. package/bundled/local-places/src/local_places/google_places.py +314 -0
  22. package/bundled/local-places/src/local_places/main.py +65 -0
  23. package/bundled/local-places/src/local_places/schemas.py +107 -0
  24. package/bundled/markitdown/SKILL.md +96 -0
  25. package/bundled/mcporter/SKILL.md +61 -0
  26. package/bundled/merge-pr/SKILL.md +187 -0
  27. package/bundled/merge-pr/agents/openai.yaml +4 -0
  28. package/bundled/nano-banana-pro/SKILL.md +58 -0
  29. package/bundled/nano-banana-pro/scripts/generate_image.py +184 -0
  30. package/bundled/nano-pdf/SKILL.md +38 -0
  31. package/bundled/open-prose/README.md +25 -0
  32. package/bundled/open-prose/index.ts +5 -0
  33. package/bundled/open-prose/openclaw.plugin.json +11 -0
  34. package/bundled/open-prose/package.json +15 -0
  35. package/bundled/open-prose/skills/prose/LICENSE +21 -0
  36. package/bundled/open-prose/skills/prose/SKILL.md +323 -0
  37. package/bundled/open-prose/skills/prose/alt-borges.md +141 -0
  38. package/bundled/open-prose/skills/prose/alts/arabian-nights.md +358 -0
  39. package/bundled/open-prose/skills/prose/alts/borges.md +360 -0
  40. package/bundled/open-prose/skills/prose/alts/folk.md +322 -0
  41. package/bundled/open-prose/skills/prose/alts/homer.md +346 -0
  42. package/bundled/open-prose/skills/prose/alts/kafka.md +373 -0
  43. package/bundled/open-prose/skills/prose/compiler.md +2971 -0
  44. package/bundled/open-prose/skills/prose/examples/01-hello-world.prose +4 -0
  45. package/bundled/open-prose/skills/prose/examples/02-research-and-summarize.prose +6 -0
  46. package/bundled/open-prose/skills/prose/examples/03-code-review.prose +17 -0
  47. package/bundled/open-prose/skills/prose/examples/04-write-and-refine.prose +14 -0
  48. package/bundled/open-prose/skills/prose/examples/05-debug-issue.prose +20 -0
  49. package/bundled/open-prose/skills/prose/examples/06-explain-codebase.prose +17 -0
  50. package/bundled/open-prose/skills/prose/examples/07-refactor.prose +20 -0
  51. package/bundled/open-prose/skills/prose/examples/08-blog-post.prose +20 -0
  52. package/bundled/open-prose/skills/prose/examples/09-research-with-agents.prose +25 -0
  53. package/bundled/open-prose/skills/prose/examples/10-code-review-agents.prose +32 -0
  54. package/bundled/open-prose/skills/prose/examples/11-skills-and-imports.prose +27 -0
  55. package/bundled/open-prose/skills/prose/examples/12-secure-agent-permissions.prose +43 -0
  56. package/bundled/open-prose/skills/prose/examples/13-variables-and-context.prose +51 -0
  57. package/bundled/open-prose/skills/prose/examples/14-composition-blocks.prose +48 -0
  58. package/bundled/open-prose/skills/prose/examples/15-inline-sequences.prose +23 -0
  59. package/bundled/open-prose/skills/prose/examples/16-parallel-reviews.prose +19 -0
  60. package/bundled/open-prose/skills/prose/examples/17-parallel-research.prose +19 -0
  61. package/bundled/open-prose/skills/prose/examples/18-mixed-parallel-sequential.prose +36 -0
  62. package/bundled/open-prose/skills/prose/examples/19-advanced-parallel.prose +71 -0
  63. package/bundled/open-prose/skills/prose/examples/20-fixed-loops.prose +20 -0
  64. package/bundled/open-prose/skills/prose/examples/21-pipeline-operations.prose +35 -0
  65. package/bundled/open-prose/skills/prose/examples/22-error-handling.prose +51 -0
  66. package/bundled/open-prose/skills/prose/examples/23-retry-with-backoff.prose +63 -0
  67. package/bundled/open-prose/skills/prose/examples/24-choice-blocks.prose +86 -0
  68. package/bundled/open-prose/skills/prose/examples/25-conditionals.prose +114 -0
  69. package/bundled/open-prose/skills/prose/examples/26-parameterized-blocks.prose +100 -0
  70. package/bundled/open-prose/skills/prose/examples/27-string-interpolation.prose +105 -0
  71. package/bundled/open-prose/skills/prose/examples/28-automated-pr-review.prose +37 -0
  72. package/bundled/open-prose/skills/prose/examples/28-gas-town.prose +1572 -0
  73. package/bundled/open-prose/skills/prose/examples/29-captains-chair.prose +218 -0
  74. package/bundled/open-prose/skills/prose/examples/30-captains-chair-simple.prose +42 -0
  75. package/bundled/open-prose/skills/prose/examples/31-captains-chair-with-memory.prose +145 -0
  76. package/bundled/open-prose/skills/prose/examples/33-pr-review-autofix.prose +168 -0
  77. package/bundled/open-prose/skills/prose/examples/34-content-pipeline.prose +204 -0
  78. package/bundled/open-prose/skills/prose/examples/35-feature-factory.prose +296 -0
  79. package/bundled/open-prose/skills/prose/examples/36-bug-hunter.prose +237 -0
  80. package/bundled/open-prose/skills/prose/examples/37-the-forge.prose +1474 -0
  81. package/bundled/open-prose/skills/prose/examples/38-skill-scan.prose +455 -0
  82. package/bundled/open-prose/skills/prose/examples/39-architect-by-simulation.prose +277 -0
  83. package/bundled/open-prose/skills/prose/examples/40-rlm-self-refine.prose +32 -0
  84. package/bundled/open-prose/skills/prose/examples/41-rlm-divide-conquer.prose +38 -0
  85. package/bundled/open-prose/skills/prose/examples/42-rlm-filter-recurse.prose +46 -0
  86. package/bundled/open-prose/skills/prose/examples/43-rlm-pairwise.prose +50 -0
  87. package/bundled/open-prose/skills/prose/examples/44-run-endpoint-ux-test.prose +261 -0
  88. package/bundled/open-prose/skills/prose/examples/45-plugin-release.prose +159 -0
  89. package/bundled/open-prose/skills/prose/examples/45-run-endpoint-ux-test-with-remediation.prose +637 -0
  90. package/bundled/open-prose/skills/prose/examples/46-run-endpoint-ux-test-fast.prose +148 -0
  91. package/bundled/open-prose/skills/prose/examples/46-workflow-crystallizer.prose +225 -0
  92. package/bundled/open-prose/skills/prose/examples/47-language-self-improvement.prose +356 -0
  93. package/bundled/open-prose/skills/prose/examples/48-habit-miner.prose +445 -0
  94. package/bundled/open-prose/skills/prose/examples/49-prose-run-retrospective.prose +210 -0
  95. package/bundled/open-prose/skills/prose/examples/README.md +391 -0
  96. package/bundled/open-prose/skills/prose/examples/roadmap/README.md +22 -0
  97. package/bundled/open-prose/skills/prose/examples/roadmap/iterative-refinement.prose +20 -0
  98. package/bundled/open-prose/skills/prose/examples/roadmap/parallel-review.prose +18 -0
  99. package/bundled/open-prose/skills/prose/examples/roadmap/simple-pipeline.prose +17 -0
  100. package/bundled/open-prose/skills/prose/examples/roadmap/syntax/open-prose-syntax.prose +223 -0
  101. package/bundled/open-prose/skills/prose/guidance/antipatterns.md +951 -0
  102. package/bundled/open-prose/skills/prose/guidance/patterns.md +700 -0
  103. package/bundled/open-prose/skills/prose/guidance/system-prompt.md +180 -0
  104. package/bundled/open-prose/skills/prose/help.md +144 -0
  105. package/bundled/open-prose/skills/prose/lib/README.md +108 -0
  106. package/bundled/open-prose/skills/prose/lib/calibrator.prose +215 -0
  107. package/bundled/open-prose/skills/prose/lib/cost-analyzer.prose +174 -0
  108. package/bundled/open-prose/skills/prose/lib/error-forensics.prose +250 -0
  109. package/bundled/open-prose/skills/prose/lib/inspector.prose +196 -0
  110. package/bundled/open-prose/skills/prose/lib/profiler.prose +460 -0
  111. package/bundled/open-prose/skills/prose/lib/program-improver.prose +275 -0
  112. package/bundled/open-prose/skills/prose/lib/project-memory.prose +118 -0
  113. package/bundled/open-prose/skills/prose/lib/user-memory.prose +93 -0
  114. package/bundled/open-prose/skills/prose/lib/vm-improver.prose +243 -0
  115. package/bundled/open-prose/skills/prose/primitives/session.md +593 -0
  116. package/bundled/open-prose/skills/prose/prose.md +1237 -0
  117. package/bundled/open-prose/skills/prose/state/filesystem.md +498 -0
  118. package/bundled/open-prose/skills/prose/state/in-context.md +384 -0
  119. package/bundled/open-prose/skills/prose/state/postgres.md +880 -0
  120. package/bundled/open-prose/skills/prose/state/sqlite.md +574 -0
  121. package/bundled/peekaboo/SKILL.md +190 -0
  122. package/bundled/prepare-pr/SKILL.md +277 -0
  123. package/bundled/prepare-pr/agents/openai.yaml +4 -0
  124. package/bundled/review-pr/SKILL.md +228 -0
  125. package/bundled/review-pr/agents/openai.yaml +4 -0
  126. package/bundled/sag/SKILL.md +87 -0
  127. package/bundled/skill-creator/SKILL.md +370 -0
  128. package/bundled/skill-creator/license.txt +202 -0
  129. package/bundled/skill-creator/scripts/init_skill.py +378 -0
  130. package/bundled/skill-creator/scripts/package_skill.py +111 -0
  131. package/bundled/skill-creator/scripts/quick_validate.py +101 -0
  132. package/bundled/spotify-player/SKILL.md +64 -0
  133. package/bundled/ssh/SKILL.md +119 -0
  134. package/bundled/summarize/SKILL.md +87 -0
  135. package/bundled/video-frames/SKILL.md +46 -0
  136. package/bundled/video-frames/scripts/frame.sh +81 -0
  137. package/bundled/voice-call/SKILL.md +45 -0
  138. package/bundled/wacli/SKILL.md +72 -0
  139. package/bundled/weather/SKILL.md +54 -0
  140. package/dist/agent/agent-service.d.ts +88 -0
  141. package/dist/agent/agent-service.js +1 -0
  142. package/dist/agent/message-queue.d.ts +24 -0
  143. package/dist/agent/message-queue.js +1 -0
  144. package/dist/agent/prompt-builder.d.ts +58 -0
  145. package/dist/agent/prompt-builder.js +1 -0
  146. package/dist/agent/session-agent.d.ts +197 -0
  147. package/dist/agent/session-agent.js +1 -0
  148. package/dist/agent/session-db.d.ts +26 -0
  149. package/dist/agent/session-db.js +1 -0
  150. package/dist/agent/session-error-handler.d.ts +37 -0
  151. package/dist/agent/session-error-handler.js +1 -0
  152. package/dist/agent/session-manager.d.ts +19 -0
  153. package/dist/agent/session-manager.js +1 -0
  154. package/dist/agent/workspace-files.d.ts +51 -0
  155. package/dist/agent/workspace-files.js +1 -0
  156. package/dist/auth/auth-middleware.d.ts +9 -0
  157. package/dist/auth/auth-middleware.js +1 -0
  158. package/dist/auth/node-signature-db.d.ts +30 -0
  159. package/dist/auth/node-signature-db.js +1 -0
  160. package/dist/auth/token-db.d.ts +38 -0
  161. package/dist/auth/token-db.js +1 -0
  162. package/dist/browser/browser-service.d.ts +9 -0
  163. package/dist/browser/browser-service.js +1 -0
  164. package/dist/channels/channel.d.ts +2 -0
  165. package/dist/channels/channel.js +1 -0
  166. package/dist/channels/responses.d.ts +21 -0
  167. package/dist/channels/responses.js +1 -0
  168. package/dist/commands/clear.d.ts +7 -0
  169. package/dist/commands/clear.js +1 -0
  170. package/dist/commands/cmd.d.ts +7 -0
  171. package/dist/commands/cmd.js +1 -0
  172. package/dist/commands/coder.d.ts +12 -0
  173. package/dist/commands/coder.js +1 -0
  174. package/dist/commands/command-registry.d.ts +12 -0
  175. package/dist/commands/command-registry.js +1 -0
  176. package/dist/commands/command.d.ts +22 -0
  177. package/dist/commands/command.js +1 -0
  178. package/dist/commands/compact.d.ts +7 -0
  179. package/dist/commands/compact.js +1 -0
  180. package/dist/commands/customsubagents.d.ts +15 -0
  181. package/dist/commands/customsubagents.js +1 -0
  182. package/dist/commands/help.d.ts +9 -0
  183. package/dist/commands/help.js +1 -0
  184. package/dist/commands/mcp.d.ts +9 -0
  185. package/dist/commands/mcp.js +1 -0
  186. package/dist/commands/model.d.ts +22 -0
  187. package/dist/commands/model.js +1 -0
  188. package/dist/commands/models.d.ts +11 -0
  189. package/dist/commands/models.js +1 -0
  190. package/dist/commands/new.d.ts +7 -0
  191. package/dist/commands/new.js +1 -0
  192. package/dist/commands/plugin.d.ts +7 -0
  193. package/dist/commands/plugin.js +1 -0
  194. package/dist/commands/sandbox.d.ts +12 -0
  195. package/dist/commands/sandbox.js +1 -0
  196. package/dist/commands/showtool.d.ts +12 -0
  197. package/dist/commands/showtool.js +1 -0
  198. package/dist/commands/status.d.ts +24 -0
  199. package/dist/commands/status.js +1 -0
  200. package/dist/commands/stop.d.ts +10 -0
  201. package/dist/commands/stop.js +1 -0
  202. package/dist/commands/subagents.d.ts +12 -0
  203. package/dist/commands/subagents.js +1 -0
  204. package/dist/commands/usage.d.ts +25 -0
  205. package/dist/commands/usage.js +1 -0
  206. package/dist/commands/useplugin.d.ts +7 -0
  207. package/dist/commands/useplugin.js +1 -0
  208. package/dist/config-watcher.d.ts +14 -0
  209. package/dist/config-watcher.js +1 -0
  210. package/dist/config.d.ts +267 -0
  211. package/dist/config.js +1 -0
  212. package/dist/cron/cron-service.d.ts +57 -0
  213. package/dist/cron/cron-service.js +1 -0
  214. package/dist/cron/heartbeat-token.d.ts +29 -0
  215. package/dist/cron/heartbeat-token.js +1 -0
  216. package/dist/cron/schedule.d.ts +3 -0
  217. package/dist/cron/schedule.js +1 -0
  218. package/dist/cron/store.d.ts +4 -0
  219. package/dist/cron/store.js +1 -0
  220. package/dist/cron/types.d.ts +47 -0
  221. package/dist/cron/types.js +1 -0
  222. package/dist/gateway/bridge.d.ts +38 -0
  223. package/dist/gateway/bridge.js +1 -0
  224. package/dist/gateway/channel-manager.d.ts +45 -0
  225. package/dist/gateway/channel-manager.js +1 -0
  226. package/dist/gateway/channels/qr-image.d.ts +5 -0
  227. package/dist/gateway/channels/qr-image.js +1 -0
  228. package/dist/gateway/channels/telegram.d.ts +39 -0
  229. package/dist/gateway/channels/telegram.js +1 -0
  230. package/dist/gateway/channels/webchat.d.ts +51 -0
  231. package/dist/gateway/channels/webchat.js +1 -0
  232. package/dist/gateway/channels/whatsapp.d.ts +40 -0
  233. package/dist/gateway/channels/whatsapp.js +1 -0
  234. package/dist/gateway/node-registry.d.ts +38 -0
  235. package/dist/gateway/node-registry.js +1 -0
  236. package/dist/heracli/index.d.ts +3 -0
  237. package/dist/heracli/index.js +2 -0
  238. package/dist/heracli/logs.d.ts +13 -0
  239. package/dist/heracli/logs.js +1 -0
  240. package/dist/heracli/security/audit.d.ts +17 -0
  241. package/dist/heracli/security/audit.js +1 -0
  242. package/dist/heracli/security/checks/channel-policies.d.ts +6 -0
  243. package/dist/heracli/security/checks/channel-policies.js +1 -0
  244. package/dist/heracli/security/checks/credentials.d.ts +6 -0
  245. package/dist/heracli/security/checks/credentials.js +1 -0
  246. package/dist/heracli/security/checks/fs-permissions.d.ts +6 -0
  247. package/dist/heracli/security/checks/fs-permissions.js +1 -0
  248. package/dist/heracli/security/checks/network.d.ts +4 -0
  249. package/dist/heracli/security/checks/network.js +1 -0
  250. package/dist/heracli/security/report.d.ts +4 -0
  251. package/dist/heracli/security/report.js +1 -0
  252. package/dist/index.d.ts +3 -0
  253. package/dist/index.js +2 -0
  254. package/dist/installer/hera.d.ts +3 -0
  255. package/dist/installer/hera.js +2 -0
  256. package/dist/media/message-processor.d.ts +23 -0
  257. package/dist/media/message-processor.js +1 -0
  258. package/dist/memory/memory-manager.d.ts +21 -0
  259. package/dist/memory/memory-manager.js +1 -0
  260. package/dist/memory/memory-provider.d.ts +22 -0
  261. package/dist/memory/memory-provider.js +1 -0
  262. package/dist/memory/memory-search.d.ts +102 -0
  263. package/dist/memory/memory-search.js +1 -0
  264. package/dist/memory/recall-strategies.d.ts +2 -0
  265. package/dist/memory/recall-strategies.js +1 -0
  266. package/dist/nostromo/auth.d.ts +29 -0
  267. package/dist/nostromo/auth.js +1 -0
  268. package/dist/nostromo/nostromo.d.ts +23 -0
  269. package/dist/nostromo/nostromo.js +1 -0
  270. package/dist/nostromo/ui-html-layout.d.ts +3 -0
  271. package/dist/nostromo/ui-html-layout.js +1 -0
  272. package/dist/nostromo/ui-html-modals.d.ts +3 -0
  273. package/dist/nostromo/ui-html-modals.js +1 -0
  274. package/dist/nostromo/ui-js-agent.d.ts +3 -0
  275. package/dist/nostromo/ui-js-agent.js +1 -0
  276. package/dist/nostromo/ui-js-channels.d.ts +3 -0
  277. package/dist/nostromo/ui-js-channels.js +1 -0
  278. package/dist/nostromo/ui-js-competences.d.ts +3 -0
  279. package/dist/nostromo/ui-js-competences.js +1 -0
  280. package/dist/nostromo/ui-js-config.d.ts +3 -0
  281. package/dist/nostromo/ui-js-config.js +1 -0
  282. package/dist/nostromo/ui-js-core.d.ts +3 -0
  283. package/dist/nostromo/ui-js-core.js +1 -0
  284. package/dist/nostromo/ui-js-ops.d.ts +3 -0
  285. package/dist/nostromo/ui-js-ops.js +1 -0
  286. package/dist/nostromo/ui-js-prompts.d.ts +3 -0
  287. package/dist/nostromo/ui-js-prompts.js +1 -0
  288. package/dist/nostromo/ui-styles.d.ts +3 -0
  289. package/dist/nostromo/ui-styles.js +1 -0
  290. package/dist/nostromo/ui.d.ts +2 -0
  291. package/dist/nostromo/ui.js +1 -0
  292. package/dist/server.d.ts +80 -0
  293. package/dist/server.js +1 -0
  294. package/dist/stt/local-whisper.d.ts +9 -0
  295. package/dist/stt/local-whisper.js +1 -0
  296. package/dist/stt/openai-whisper.d.ts +14 -0
  297. package/dist/stt/openai-whisper.js +1 -0
  298. package/dist/stt/stt-loader.d.ts +4 -0
  299. package/dist/stt/stt-loader.js +1 -0
  300. package/dist/stt/stt-provider.d.ts +4 -0
  301. package/dist/stt/stt-provider.js +1 -0
  302. package/dist/tools/browser-tools.d.ts +9 -0
  303. package/dist/tools/browser-tools.js +1 -0
  304. package/dist/tools/cron-tools.d.ts +4 -0
  305. package/dist/tools/cron-tools.js +1 -0
  306. package/dist/tools/memory-tools.d.ts +3 -0
  307. package/dist/tools/memory-tools.js +1 -0
  308. package/dist/tools/message-tools.d.ts +5 -0
  309. package/dist/tools/message-tools.js +1 -0
  310. package/dist/tools/node-tools.d.ts +3 -0
  311. package/dist/tools/node-tools.js +1 -0
  312. package/dist/tools/server-tools.d.ts +2 -0
  313. package/dist/tools/server-tools.js +1 -0
  314. package/dist/tools/tts-tools.d.ts +3 -0
  315. package/dist/tools/tts-tools.js +1 -0
  316. package/dist/tts/tts-service.d.ts +19 -0
  317. package/dist/tts/tts-service.js +1 -0
  318. package/dist/utils/chunk.d.ts +3 -0
  319. package/dist/utils/chunk.js +1 -0
  320. package/dist/utils/logger.d.ts +16 -0
  321. package/dist/utils/logger.js +1 -0
  322. package/dist/utils/markdown/fences.d.ts +11 -0
  323. package/dist/utils/markdown/fences.js +1 -0
  324. package/dist/utils/markdown/ir.d.ts +33 -0
  325. package/dist/utils/markdown/ir.js +1 -0
  326. package/dist/utils/markdown/render.d.ts +19 -0
  327. package/dist/utils/markdown/render.js +1 -0
  328. package/dist/utils/markdown/tables.d.ts +3 -0
  329. package/dist/utils/markdown/tables.js +1 -0
  330. package/dist/utils/media-response.d.ts +29 -0
  331. package/dist/utils/media-response.js +1 -0
  332. package/dist/utils/package-paths.d.ts +5 -0
  333. package/dist/utils/package-paths.js +1 -0
  334. package/dist/utils/telegram-format.d.ts +13 -0
  335. package/dist/utils/telegram-format.js +1 -0
  336. package/installationPkg/.env.example +26 -0
  337. package/installationPkg/AGENTS.md +143 -0
  338. package/installationPkg/BOOTSTRAP.md +45 -0
  339. package/installationPkg/CBINT.json +16 -0
  340. package/installationPkg/HEARTBEAT.md +5 -0
  341. package/installationPkg/IDENTITY.md +7 -0
  342. package/installationPkg/SOUL.md +36 -0
  343. package/installationPkg/SYSTEM_PROMPT.md +55 -0
  344. package/installationPkg/SYSTEM_PROMPT_SUBAGENT.md +40 -0
  345. package/installationPkg/TOOLS.md +36 -0
  346. package/installationPkg/USER.md +11 -0
  347. package/installationPkg/config.example.yaml +291 -0
  348. package/package.json +95 -0
@@ -0,0 +1,378 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Skill Initializer - Creates a new skill from template
4
+
5
+ Usage:
6
+ init_skill.py <skill-name> --path <path> [--resources scripts,references,assets] [--examples]
7
+
8
+ Examples:
9
+ init_skill.py my-new-skill --path skills/public
10
+ init_skill.py my-new-skill --path skills/public --resources scripts,references
11
+ init_skill.py my-api-helper --path skills/private --resources scripts --examples
12
+ init_skill.py custom-skill --path /custom/location
13
+ """
14
+
15
+ import argparse
16
+ import re
17
+ import sys
18
+ from pathlib import Path
19
+
20
+ MAX_SKILL_NAME_LENGTH = 64
21
+ ALLOWED_RESOURCES = {"scripts", "references", "assets"}
22
+
23
+ SKILL_TEMPLATE = """---
24
+ name: {skill_name}
25
+ description: [TODO: Complete and informative explanation of what the skill does and when to use it. Include WHEN to use this skill - specific scenarios, file types, or tasks that trigger it.]
26
+ ---
27
+
28
+ # {skill_title}
29
+
30
+ ## Overview
31
+
32
+ [TODO: 1-2 sentences explaining what this skill enables]
33
+
34
+ ## Structuring This Skill
35
+
36
+ [TODO: Choose the structure that best fits this skill's purpose. Common patterns:
37
+
38
+ **1. Workflow-Based** (best for sequential processes)
39
+ - Works well when there are clear step-by-step procedures
40
+ - Example: DOCX skill with "Workflow Decision Tree" -> "Reading" -> "Creating" -> "Editing"
41
+ - Structure: ## Overview -> ## Workflow Decision Tree -> ## Step 1 -> ## Step 2...
42
+
43
+ **2. Task-Based** (best for tool collections)
44
+ - Works well when the skill offers different operations/capabilities
45
+ - Example: PDF skill with "Quick Start" -> "Merge PDFs" -> "Split PDFs" -> "Extract Text"
46
+ - Structure: ## Overview -> ## Quick Start -> ## Task Category 1 -> ## Task Category 2...
47
+
48
+ **3. Reference/Guidelines** (best for standards or specifications)
49
+ - Works well for brand guidelines, coding standards, or requirements
50
+ - Example: Brand styling with "Brand Guidelines" -> "Colors" -> "Typography" -> "Features"
51
+ - Structure: ## Overview -> ## Guidelines -> ## Specifications -> ## Usage...
52
+
53
+ **4. Capabilities-Based** (best for integrated systems)
54
+ - Works well when the skill provides multiple interrelated features
55
+ - Example: Product Management with "Core Capabilities" -> numbered capability list
56
+ - Structure: ## Overview -> ## Core Capabilities -> ### 1. Feature -> ### 2. Feature...
57
+
58
+ Patterns can be mixed and matched as needed. Most skills combine patterns (e.g., start with task-based, add workflow for complex operations).
59
+
60
+ Delete this entire "Structuring This Skill" section when done - it's just guidance.]
61
+
62
+ ## [TODO: Replace with the first main section based on chosen structure]
63
+
64
+ [TODO: Add content here. See examples in existing skills:
65
+ - Code samples for technical skills
66
+ - Decision trees for complex workflows
67
+ - Concrete examples with realistic user requests
68
+ - References to scripts/templates/references as needed]
69
+
70
+ ## Resources (optional)
71
+
72
+ Create only the resource directories this skill actually needs. Delete this section if no resources are required.
73
+
74
+ ### scripts/
75
+ Executable code (Python/Bash/etc.) that can be run directly to perform specific operations.
76
+
77
+ **Examples from other skills:**
78
+ - PDF skill: `fill_fillable_fields.py`, `extract_form_field_info.py` - utilities for PDF manipulation
79
+ - DOCX skill: `document.py`, `utilities.py` - Python modules for document processing
80
+
81
+ **Appropriate for:** Python scripts, shell scripts, or any executable code that performs automation, data processing, or specific operations.
82
+
83
+ **Note:** Scripts may be executed without loading into context, but can still be read by Codex for patching or environment adjustments.
84
+
85
+ ### references/
86
+ Documentation and reference material intended to be loaded into context to inform Codex's process and thinking.
87
+
88
+ **Examples from other skills:**
89
+ - Product management: `communication.md`, `context_building.md` - detailed workflow guides
90
+ - BigQuery: API reference documentation and query examples
91
+ - Finance: Schema documentation, company policies
92
+
93
+ **Appropriate for:** In-depth documentation, API references, database schemas, comprehensive guides, or any detailed information that Codex should reference while working.
94
+
95
+ ### assets/
96
+ Files not intended to be loaded into context, but rather used within the output Codex produces.
97
+
98
+ **Examples from other skills:**
99
+ - Brand styling: PowerPoint template files (.pptx), logo files
100
+ - Frontend builder: HTML/React boilerplate project directories
101
+ - Typography: Font files (.ttf, .woff2)
102
+
103
+ **Appropriate for:** Templates, boilerplate code, document templates, images, icons, fonts, or any files meant to be copied or used in the final output.
104
+
105
+ ---
106
+
107
+ **Not every skill requires all three types of resources.**
108
+ """
109
+
110
+ EXAMPLE_SCRIPT = '''#!/usr/bin/env python3
111
+ """
112
+ Example helper script for {skill_name}
113
+
114
+ This is a placeholder script that can be executed directly.
115
+ Replace with actual implementation or delete if not needed.
116
+
117
+ Example real scripts from other skills:
118
+ - pdf/scripts/fill_fillable_fields.py - Fills PDF form fields
119
+ - pdf/scripts/convert_pdf_to_images.py - Converts PDF pages to images
120
+ """
121
+
122
+ def main():
123
+ print("This is an example script for {skill_name}")
124
+ # TODO: Add actual script logic here
125
+ # This could be data processing, file conversion, API calls, etc.
126
+
127
+ if __name__ == "__main__":
128
+ main()
129
+ '''
130
+
131
+ EXAMPLE_REFERENCE = """# Reference Documentation for {skill_title}
132
+
133
+ This is a placeholder for detailed reference documentation.
134
+ Replace with actual reference content or delete if not needed.
135
+
136
+ Example real reference docs from other skills:
137
+ - product-management/references/communication.md - Comprehensive guide for status updates
138
+ - product-management/references/context_building.md - Deep-dive on gathering context
139
+ - bigquery/references/ - API references and query examples
140
+
141
+ ## When Reference Docs Are Useful
142
+
143
+ Reference docs are ideal for:
144
+ - Comprehensive API documentation
145
+ - Detailed workflow guides
146
+ - Complex multi-step processes
147
+ - Information too lengthy for main SKILL.md
148
+ - Content that's only needed for specific use cases
149
+
150
+ ## Structure Suggestions
151
+
152
+ ### API Reference Example
153
+ - Overview
154
+ - Authentication
155
+ - Endpoints with examples
156
+ - Error codes
157
+ - Rate limits
158
+
159
+ ### Workflow Guide Example
160
+ - Prerequisites
161
+ - Step-by-step instructions
162
+ - Common patterns
163
+ - Troubleshooting
164
+ - Best practices
165
+ """
166
+
167
+ EXAMPLE_ASSET = """# Example Asset File
168
+
169
+ This placeholder represents where asset files would be stored.
170
+ Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed.
171
+
172
+ Asset files are NOT intended to be loaded into context, but rather used within
173
+ the output Codex produces.
174
+
175
+ Example asset files from other skills:
176
+ - Brand guidelines: logo.png, slides_template.pptx
177
+ - Frontend builder: hello-world/ directory with HTML/React boilerplate
178
+ - Typography: custom-font.ttf, font-family.woff2
179
+ - Data: sample_data.csv, test_dataset.json
180
+
181
+ ## Common Asset Types
182
+
183
+ - Templates: .pptx, .docx, boilerplate directories
184
+ - Images: .png, .jpg, .svg, .gif
185
+ - Fonts: .ttf, .otf, .woff, .woff2
186
+ - Boilerplate code: Project directories, starter files
187
+ - Icons: .ico, .svg
188
+ - Data files: .csv, .json, .xml, .yaml
189
+
190
+ Note: This is a text placeholder. Actual assets can be any file type.
191
+ """
192
+
193
+
194
+ def normalize_skill_name(skill_name):
195
+ """Normalize a skill name to lowercase hyphen-case."""
196
+ normalized = skill_name.strip().lower()
197
+ normalized = re.sub(r"[^a-z0-9]+", "-", normalized)
198
+ normalized = normalized.strip("-")
199
+ normalized = re.sub(r"-{2,}", "-", normalized)
200
+ return normalized
201
+
202
+
203
+ def title_case_skill_name(skill_name):
204
+ """Convert hyphenated skill name to Title Case for display."""
205
+ return " ".join(word.capitalize() for word in skill_name.split("-"))
206
+
207
+
208
+ def parse_resources(raw_resources):
209
+ if not raw_resources:
210
+ return []
211
+ resources = [item.strip() for item in raw_resources.split(",") if item.strip()]
212
+ invalid = sorted({item for item in resources if item not in ALLOWED_RESOURCES})
213
+ if invalid:
214
+ allowed = ", ".join(sorted(ALLOWED_RESOURCES))
215
+ print(f"[ERROR] Unknown resource type(s): {', '.join(invalid)}")
216
+ print(f" Allowed: {allowed}")
217
+ sys.exit(1)
218
+ deduped = []
219
+ seen = set()
220
+ for resource in resources:
221
+ if resource not in seen:
222
+ deduped.append(resource)
223
+ seen.add(resource)
224
+ return deduped
225
+
226
+
227
+ def create_resource_dirs(skill_dir, skill_name, skill_title, resources, include_examples):
228
+ for resource in resources:
229
+ resource_dir = skill_dir / resource
230
+ resource_dir.mkdir(exist_ok=True)
231
+ if resource == "scripts":
232
+ if include_examples:
233
+ example_script = resource_dir / "example.py"
234
+ example_script.write_text(EXAMPLE_SCRIPT.format(skill_name=skill_name))
235
+ example_script.chmod(0o755)
236
+ print("[OK] Created scripts/example.py")
237
+ else:
238
+ print("[OK] Created scripts/")
239
+ elif resource == "references":
240
+ if include_examples:
241
+ example_reference = resource_dir / "api_reference.md"
242
+ example_reference.write_text(EXAMPLE_REFERENCE.format(skill_title=skill_title))
243
+ print("[OK] Created references/api_reference.md")
244
+ else:
245
+ print("[OK] Created references/")
246
+ elif resource == "assets":
247
+ if include_examples:
248
+ example_asset = resource_dir / "example_asset.txt"
249
+ example_asset.write_text(EXAMPLE_ASSET)
250
+ print("[OK] Created assets/example_asset.txt")
251
+ else:
252
+ print("[OK] Created assets/")
253
+
254
+
255
+ def init_skill(skill_name, path, resources, include_examples):
256
+ """
257
+ Initialize a new skill directory with template SKILL.md.
258
+
259
+ Args:
260
+ skill_name: Name of the skill
261
+ path: Path where the skill directory should be created
262
+ resources: Resource directories to create
263
+ include_examples: Whether to create example files in resource directories
264
+
265
+ Returns:
266
+ Path to created skill directory, or None if error
267
+ """
268
+ # Determine skill directory path
269
+ skill_dir = Path(path).resolve() / skill_name
270
+
271
+ # Check if directory already exists
272
+ if skill_dir.exists():
273
+ print(f"[ERROR] Skill directory already exists: {skill_dir}")
274
+ return None
275
+
276
+ # Create skill directory
277
+ try:
278
+ skill_dir.mkdir(parents=True, exist_ok=False)
279
+ print(f"[OK] Created skill directory: {skill_dir}")
280
+ except Exception as e:
281
+ print(f"[ERROR] Error creating directory: {e}")
282
+ return None
283
+
284
+ # Create SKILL.md from template
285
+ skill_title = title_case_skill_name(skill_name)
286
+ skill_content = SKILL_TEMPLATE.format(skill_name=skill_name, skill_title=skill_title)
287
+
288
+ skill_md_path = skill_dir / "SKILL.md"
289
+ try:
290
+ skill_md_path.write_text(skill_content)
291
+ print("[OK] Created SKILL.md")
292
+ except Exception as e:
293
+ print(f"[ERROR] Error creating SKILL.md: {e}")
294
+ return None
295
+
296
+ # Create resource directories if requested
297
+ if resources:
298
+ try:
299
+ create_resource_dirs(skill_dir, skill_name, skill_title, resources, include_examples)
300
+ except Exception as e:
301
+ print(f"[ERROR] Error creating resource directories: {e}")
302
+ return None
303
+
304
+ # Print next steps
305
+ print(f"\n[OK] Skill '{skill_name}' initialized successfully at {skill_dir}")
306
+ print("\nNext steps:")
307
+ print("1. Edit SKILL.md to complete the TODO items and update the description")
308
+ if resources:
309
+ if include_examples:
310
+ print("2. Customize or delete the example files in scripts/, references/, and assets/")
311
+ else:
312
+ print("2. Add resources to scripts/, references/, and assets/ as needed")
313
+ else:
314
+ print("2. Create resource directories only if needed (scripts/, references/, assets/)")
315
+ print("3. Run the validator when ready to check the skill structure")
316
+
317
+ return skill_dir
318
+
319
+
320
+ def main():
321
+ parser = argparse.ArgumentParser(
322
+ description="Create a new skill directory with a SKILL.md template.",
323
+ )
324
+ parser.add_argument("skill_name", help="Skill name (normalized to hyphen-case)")
325
+ parser.add_argument("--path", required=True, help="Output directory for the skill")
326
+ parser.add_argument(
327
+ "--resources",
328
+ default="",
329
+ help="Comma-separated list: scripts,references,assets",
330
+ )
331
+ parser.add_argument(
332
+ "--examples",
333
+ action="store_true",
334
+ help="Create example files inside the selected resource directories",
335
+ )
336
+ args = parser.parse_args()
337
+
338
+ raw_skill_name = args.skill_name
339
+ skill_name = normalize_skill_name(raw_skill_name)
340
+ if not skill_name:
341
+ print("[ERROR] Skill name must include at least one letter or digit.")
342
+ sys.exit(1)
343
+ if len(skill_name) > MAX_SKILL_NAME_LENGTH:
344
+ print(
345
+ f"[ERROR] Skill name '{skill_name}' is too long ({len(skill_name)} characters). "
346
+ f"Maximum is {MAX_SKILL_NAME_LENGTH} characters."
347
+ )
348
+ sys.exit(1)
349
+ if skill_name != raw_skill_name:
350
+ print(f"Note: Normalized skill name from '{raw_skill_name}' to '{skill_name}'.")
351
+
352
+ resources = parse_resources(args.resources)
353
+ if args.examples and not resources:
354
+ print("[ERROR] --examples requires --resources to be set.")
355
+ sys.exit(1)
356
+
357
+ path = args.path
358
+
359
+ print(f"Initializing skill: {skill_name}")
360
+ print(f" Location: {path}")
361
+ if resources:
362
+ print(f" Resources: {', '.join(resources)}")
363
+ if args.examples:
364
+ print(" Examples: enabled")
365
+ else:
366
+ print(" Resources: none (create as needed)")
367
+ print()
368
+
369
+ result = init_skill(skill_name, path, resources, args.examples)
370
+
371
+ if result:
372
+ sys.exit(0)
373
+ else:
374
+ sys.exit(1)
375
+
376
+
377
+ if __name__ == "__main__":
378
+ main()
@@ -0,0 +1,111 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Skill Packager - Creates a distributable .skill file of a skill folder
4
+
5
+ Usage:
6
+ python utils/package_skill.py <path/to/skill-folder> [output-directory]
7
+
8
+ Example:
9
+ python utils/package_skill.py skills/public/my-skill
10
+ python utils/package_skill.py skills/public/my-skill ./dist
11
+ """
12
+
13
+ import sys
14
+ import zipfile
15
+ from pathlib import Path
16
+
17
+ from quick_validate import validate_skill
18
+
19
+
20
+ def package_skill(skill_path, output_dir=None):
21
+ """
22
+ Package a skill folder into a .skill file.
23
+
24
+ Args:
25
+ skill_path: Path to the skill folder
26
+ output_dir: Optional output directory for the .skill file (defaults to current directory)
27
+
28
+ Returns:
29
+ Path to the created .skill file, or None if error
30
+ """
31
+ skill_path = Path(skill_path).resolve()
32
+
33
+ # Validate skill folder exists
34
+ if not skill_path.exists():
35
+ print(f"[ERROR] Skill folder not found: {skill_path}")
36
+ return None
37
+
38
+ if not skill_path.is_dir():
39
+ print(f"[ERROR] Path is not a directory: {skill_path}")
40
+ return None
41
+
42
+ # Validate SKILL.md exists
43
+ skill_md = skill_path / "SKILL.md"
44
+ if not skill_md.exists():
45
+ print(f"[ERROR] SKILL.md not found in {skill_path}")
46
+ return None
47
+
48
+ # Run validation before packaging
49
+ print("Validating skill...")
50
+ valid, message = validate_skill(skill_path)
51
+ if not valid:
52
+ print(f"[ERROR] Validation failed: {message}")
53
+ print(" Please fix the validation errors before packaging.")
54
+ return None
55
+ print(f"[OK] {message}\n")
56
+
57
+ # Determine output location
58
+ skill_name = skill_path.name
59
+ if output_dir:
60
+ output_path = Path(output_dir).resolve()
61
+ output_path.mkdir(parents=True, exist_ok=True)
62
+ else:
63
+ output_path = Path.cwd()
64
+
65
+ skill_filename = output_path / f"{skill_name}.skill"
66
+
67
+ # Create the .skill file (zip format)
68
+ try:
69
+ with zipfile.ZipFile(skill_filename, "w", zipfile.ZIP_DEFLATED) as zipf:
70
+ # Walk through the skill directory
71
+ for file_path in skill_path.rglob("*"):
72
+ if file_path.is_file():
73
+ # Calculate the relative path within the zip
74
+ arcname = file_path.relative_to(skill_path.parent)
75
+ zipf.write(file_path, arcname)
76
+ print(f" Added: {arcname}")
77
+
78
+ print(f"\n[OK] Successfully packaged skill to: {skill_filename}")
79
+ return skill_filename
80
+
81
+ except Exception as e:
82
+ print(f"[ERROR] Error creating .skill file: {e}")
83
+ return None
84
+
85
+
86
+ def main():
87
+ if len(sys.argv) < 2:
88
+ print("Usage: python utils/package_skill.py <path/to/skill-folder> [output-directory]")
89
+ print("\nExample:")
90
+ print(" python utils/package_skill.py skills/public/my-skill")
91
+ print(" python utils/package_skill.py skills/public/my-skill ./dist")
92
+ sys.exit(1)
93
+
94
+ skill_path = sys.argv[1]
95
+ output_dir = sys.argv[2] if len(sys.argv) > 2 else None
96
+
97
+ print(f"Packaging skill: {skill_path}")
98
+ if output_dir:
99
+ print(f" Output directory: {output_dir}")
100
+ print()
101
+
102
+ result = package_skill(skill_path, output_dir)
103
+
104
+ if result:
105
+ sys.exit(0)
106
+ else:
107
+ sys.exit(1)
108
+
109
+
110
+ if __name__ == "__main__":
111
+ main()
@@ -0,0 +1,101 @@
1
+ #!/usr/bin/env python3
2
+ """
3
+ Quick validation script for skills - minimal version
4
+ """
5
+
6
+ import re
7
+ import sys
8
+ from pathlib import Path
9
+
10
+ import yaml
11
+
12
+ MAX_SKILL_NAME_LENGTH = 64
13
+
14
+
15
+ def validate_skill(skill_path):
16
+ """Basic validation of a skill"""
17
+ skill_path = Path(skill_path)
18
+
19
+ skill_md = skill_path / "SKILL.md"
20
+ if not skill_md.exists():
21
+ return False, "SKILL.md not found"
22
+
23
+ content = skill_md.read_text()
24
+ if not content.startswith("---"):
25
+ return False, "No YAML frontmatter found"
26
+
27
+ match = re.match(r"^---\n(.*?)\n---", content, re.DOTALL)
28
+ if not match:
29
+ return False, "Invalid frontmatter format"
30
+
31
+ frontmatter_text = match.group(1)
32
+
33
+ try:
34
+ frontmatter = yaml.safe_load(frontmatter_text)
35
+ if not isinstance(frontmatter, dict):
36
+ return False, "Frontmatter must be a YAML dictionary"
37
+ except yaml.YAMLError as e:
38
+ return False, f"Invalid YAML in frontmatter: {e}"
39
+
40
+ allowed_properties = {"name", "description", "license", "allowed-tools", "metadata"}
41
+
42
+ unexpected_keys = set(frontmatter.keys()) - allowed_properties
43
+ if unexpected_keys:
44
+ allowed = ", ".join(sorted(allowed_properties))
45
+ unexpected = ", ".join(sorted(unexpected_keys))
46
+ return (
47
+ False,
48
+ f"Unexpected key(s) in SKILL.md frontmatter: {unexpected}. Allowed properties are: {allowed}",
49
+ )
50
+
51
+ if "name" not in frontmatter:
52
+ return False, "Missing 'name' in frontmatter"
53
+ if "description" not in frontmatter:
54
+ return False, "Missing 'description' in frontmatter"
55
+
56
+ name = frontmatter.get("name", "")
57
+ if not isinstance(name, str):
58
+ return False, f"Name must be a string, got {type(name).__name__}"
59
+ name = name.strip()
60
+ if name:
61
+ if not re.match(r"^[a-z0-9-]+$", name):
62
+ return (
63
+ False,
64
+ f"Name '{name}' should be hyphen-case (lowercase letters, digits, and hyphens only)",
65
+ )
66
+ if name.startswith("-") or name.endswith("-") or "--" in name:
67
+ return (
68
+ False,
69
+ f"Name '{name}' cannot start/end with hyphen or contain consecutive hyphens",
70
+ )
71
+ if len(name) > MAX_SKILL_NAME_LENGTH:
72
+ return (
73
+ False,
74
+ f"Name is too long ({len(name)} characters). "
75
+ f"Maximum is {MAX_SKILL_NAME_LENGTH} characters.",
76
+ )
77
+
78
+ description = frontmatter.get("description", "")
79
+ if not isinstance(description, str):
80
+ return False, f"Description must be a string, got {type(description).__name__}"
81
+ description = description.strip()
82
+ if description:
83
+ if "<" in description or ">" in description:
84
+ return False, "Description cannot contain angle brackets (< or >)"
85
+ if len(description) > 1024:
86
+ return (
87
+ False,
88
+ f"Description is too long ({len(description)} characters). Maximum is 1024 characters.",
89
+ )
90
+
91
+ return True, "Skill is valid!"
92
+
93
+
94
+ if __name__ == "__main__":
95
+ if len(sys.argv) != 2:
96
+ print("Usage: python quick_validate.py <skill_directory>")
97
+ sys.exit(1)
98
+
99
+ valid, message = validate_skill(sys.argv[1])
100
+ print(message)
101
+ sys.exit(0 if valid else 1)
@@ -0,0 +1,64 @@
1
+ ---
2
+ name: spotify-player
3
+ description: Terminal Spotify playback/search via spogo (preferred) or spotify_player.
4
+ homepage: https://www.spotify.com
5
+ metadata:
6
+ {
7
+ "openclaw":
8
+ {
9
+ "emoji": "🎵",
10
+ "requires": { "anyBins": ["spogo", "spotify_player"] },
11
+ "install":
12
+ [
13
+ {
14
+ "id": "brew",
15
+ "kind": "brew",
16
+ "formula": "spogo",
17
+ "tap": "steipete/tap",
18
+ "bins": ["spogo"],
19
+ "label": "Install spogo (brew)",
20
+ },
21
+ {
22
+ "id": "brew",
23
+ "kind": "brew",
24
+ "formula": "spotify_player",
25
+ "bins": ["spotify_player"],
26
+ "label": "Install spotify_player (brew)",
27
+ },
28
+ ],
29
+ },
30
+ }
31
+ ---
32
+
33
+ # spogo / spotify_player
34
+
35
+ Use `spogo` **(preferred)** for Spotify playback/search. Fall back to `spotify_player` if needed.
36
+
37
+ Requirements
38
+
39
+ - Spotify Premium account.
40
+ - Either `spogo` or `spotify_player` installed.
41
+
42
+ spogo setup
43
+
44
+ - Import cookies: `spogo auth import --browser chrome`
45
+
46
+ Common CLI commands
47
+
48
+ - Search: `spogo search track "query"`
49
+ - Playback: `spogo play|pause|next|prev`
50
+ - Devices: `spogo device list`, `spogo device set "<name|id>"`
51
+ - Status: `spogo status`
52
+
53
+ spotify_player commands (fallback)
54
+
55
+ - Search: `spotify_player search "query"`
56
+ - Playback: `spotify_player playback play|pause|next|previous`
57
+ - Connect device: `spotify_player connect`
58
+ - Like track: `spotify_player like`
59
+
60
+ Notes
61
+
62
+ - Config folder: `~/.config/spotify-player` (e.g., `app.toml`).
63
+ - For Spotify Connect integration, set a user `client_id` in config.
64
+ - TUI shortcuts are available via `?` in the app.