@hasna/skills 0.1.62 → 0.1.64

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 (541) hide show
  1. package/README.md +38 -12
  2. package/bin/index.js +15743 -21709
  3. package/bin/mcp.js +3866 -11522
  4. package/bin/migrate.js +281 -35
  5. package/bin/server.js +5805 -2682
  6. package/bin/worker.js +5280 -2388
  7. package/dist/cli/commands/publish.d.ts +2 -0
  8. package/dist/cli/commands/registry-reconcile.d.ts +2 -0
  9. package/dist/cli/components/App.d.ts +2 -1
  10. package/dist/cli/components/CategorySelect.d.ts +2 -1
  11. package/dist/cli/components/Header.d.ts +2 -1
  12. package/dist/cli/components/InstallProgress.d.ts +2 -1
  13. package/dist/cli/components/SearchView.d.ts +2 -1
  14. package/dist/cli/components/SkillSelect.d.ts +2 -1
  15. package/dist/index.d.ts +5 -2
  16. package/dist/index.js +5386 -13739
  17. package/dist/lib/agent-sync.d.ts +61 -6
  18. package/dist/lib/auth-store.d.ts +37 -0
  19. package/dist/lib/config.d.ts +51 -0
  20. package/dist/lib/home-adoption.d.ts +91 -0
  21. package/dist/lib/home-census.d.ts +26 -0
  22. package/dist/lib/home-migration.d.ts +60 -0
  23. package/dist/lib/native-storage.d.ts +1 -1
  24. package/dist/lib/portable-skills-files.d.ts +21 -1
  25. package/dist/lib/portable-skills-types.d.ts +46 -0
  26. package/dist/lib/portable-skills.d.ts +35 -6
  27. package/dist/lib/pull.d.ts +97 -0
  28. package/dist/lib/registry-reconcile.d.ts +114 -0
  29. package/dist/lib/registry.d.ts +7 -4
  30. package/dist/lib/remote-client.d.ts +124 -1
  31. package/dist/lib/remote-registry.d.ts +26 -0
  32. package/dist/lib/revision.d.ts +29 -0
  33. package/dist/lib/run-state.d.ts +5 -0
  34. package/dist/lib/skill-bundles.d.ts +54 -0
  35. package/dist/lib/skill-contract.d.ts +35 -0
  36. package/dist/lib/skill-hash.d.ts +77 -0
  37. package/dist/sdk/cancel.d.ts +30 -0
  38. package/dist/sdk/dispatcher.d.ts +40 -0
  39. package/dist/sdk/event-sink.d.ts +2 -0
  40. package/dist/sdk/events.d.ts +79 -0
  41. package/dist/sdk/execution/admission.d.ts +44 -0
  42. package/dist/sdk/execution/dispatchers/e2b.d.ts +17 -0
  43. package/dist/sdk/execution/dispatchers/ecs.d.ts +151 -0
  44. package/dist/sdk/execution/image-profile.d.ts +73 -0
  45. package/dist/sdk/execution/index.d.ts +15 -0
  46. package/dist/sdk/execution/receipts.d.ts +44 -0
  47. package/dist/sdk/execution/state-machine.d.ts +38 -0
  48. package/dist/sdk/execution/storage.d.ts +158 -0
  49. package/dist/sdk/execution/types.d.ts +130 -0
  50. package/dist/sdk/executor.d.ts +17 -0
  51. package/dist/sdk/governance-store.d.ts +156 -0
  52. package/dist/sdk/governance.d.ts +92 -0
  53. package/dist/sdk/index.d.ts +26 -0
  54. package/dist/sdk/index.js +49728 -0
  55. package/dist/sdk/offline.d.ts +16 -0
  56. package/dist/sdk/outputs.d.ts +71 -0
  57. package/dist/sdk/registry.d.ts +28 -0
  58. package/dist/sdk/runs.d.ts +229 -0
  59. package/dist/sdk/server.d.ts +35 -0
  60. package/dist/sdk/spend.d.ts +36 -0
  61. package/dist/sdk/storage.d.ts +25 -0
  62. package/dist/server/app.d.ts +42 -0
  63. package/dist/server/artifact-storage.d.ts +102 -0
  64. package/dist/server/auth.d.ts +5 -0
  65. package/dist/server/config.d.ts +50 -0
  66. package/dist/server/database-url.d.ts +42 -0
  67. package/dist/server/handlers.d.ts +3 -0
  68. package/dist/server/index.d.ts +2 -0
  69. package/dist/server/migrate.d.ts +13 -0
  70. package/dist/server/migrations-dir.d.ts +18 -0
  71. package/dist/server/redaction.d.ts +1 -0
  72. package/dist/server/registry.d.ts +5 -0
  73. package/dist/server/rows.d.ts +24 -0
  74. package/dist/server/skills-api.d.ts +170 -0
  75. package/dist/server/sqlite-store.d.ts +131 -0
  76. package/dist/server/store-fixtures.d.ts +25 -0
  77. package/dist/server/store.d.ts +170 -0
  78. package/dist/server/types.d.ts +337 -0
  79. package/dist/server/worker.d.ts +4 -0
  80. package/dist/storage.js +39 -2
  81. package/docs/skill-standard.md +211 -39
  82. package/migrations/postgres/0003_run_outputs_governance.sql +83 -0
  83. package/migrations/postgres/0004_hosted_pins.sql +28 -0
  84. package/migrations/postgres/0005_revision_tombstone_registry.sql +37 -0
  85. package/migrations/postgres/0005_tag_projection.sql +36 -0
  86. package/migrations/sqlite/0003_run_outputs_governance.sql +58 -0
  87. package/migrations/sqlite/0004_hosted_pins.sql +21 -0
  88. package/migrations/sqlite/0005_revision_tombstone_registry.sql +18 -0
  89. package/migrations/sqlite/0005_tag_projection.sql +25 -0
  90. package/package.json +12 -8
  91. package/schemas/skill.schema.json +181 -0
  92. package/agent-skills/README.md +0 -41
  93. package/agent-skills/fleet-package-rollout/SKILL.md +0 -169
  94. package/agent-skills/inbox/SKILL.md +0 -25
  95. package/agent-skills/inbox/scripts/inbox +0 -109
  96. package/agent-skills/inbox/tests/test_registered_sender_id.sh +0 -92
  97. package/agent-skills/inbox-monitor/SKILL.md +0 -41
  98. package/agent-skills/inbox-monitor/scripts/inbox_monitor.sh +0 -91
  99. package/agent-skills/inbox-monitor/scripts/test_inbox_monitor.sh +0 -71
  100. package/agent-skills/merge-pr/SKILL.md +0 -85
  101. package/agent-skills/merge-pr/references/merge-safety.md +0 -82
  102. package/agent-skills/merge-pr/scripts/merge_pr_guard.py +0 -694
  103. package/agent-skills/merge-pr/scripts/test_merge_pr_guard.py +0 -647
  104. package/agent-skills/merge-pr/tests/fixtures/multi-commit-synthesized.json +0 -28
  105. package/agent-skills/merge-pr/tests/fixtures/trailer-free-provider.json +0 -28
  106. package/agent-skills/skill-goal-execute/SKILL.md +0 -115
  107. package/agent-skills/skill-login/SKILL.md +0 -109
  108. package/agent-skills/skill-project-create/SKILL.md +0 -91
  109. package/agent-skills/skill-publish/SKILL.md +0 -254
  110. package/agent-skills/skill-publish/scripts/capture_registry.js +0 -47
  111. package/agent-skills/skill-publish/scripts/publish_with_git_head.sh +0 -143
  112. package/agent-skills/skill-publish/scripts/test_publish_with_git_head.sh +0 -231
  113. package/skills/_common/auth.ts +0 -45
  114. package/skills/_common/http-client.ts +0 -143
  115. package/skills/_common/index.ts +0 -26
  116. package/skills/_common/install.sh +0 -7
  117. package/skills/_common/installer.ts +0 -72
  118. package/skills/_common/skill-install.ts +0 -37
  119. package/skills/_common/vision.ts +0 -374
  120. package/skills/ad-creative-pack/SKILL.md +0 -55
  121. package/skills/ad-creative-pack/package.json +0 -10
  122. package/skills/analyze-data/CLAUDE.md +0 -16
  123. package/skills/analyze-data/SKILL.md +0 -112
  124. package/skills/analyze-data/package.json +0 -23
  125. package/skills/analyze-data/src/analysis.ts +0 -401
  126. package/skills/analyze-data/src/cli.ts +0 -66
  127. package/skills/analyze-data/src/formatters.ts +0 -235
  128. package/skills/analyze-data/src/index.ts +0 -74
  129. package/skills/analyze-data/src/logger.ts +0 -36
  130. package/skills/analyze-data/src/parsers.ts +0 -57
  131. package/skills/analyze-data/src/stats.ts +0 -151
  132. package/skills/analyze-data/src/types.ts +0 -85
  133. package/skills/analyze-data/tsconfig.json +0 -19
  134. package/skills/api-docs-portal/SKILL.md +0 -84
  135. package/skills/api-docs-portal/package.json +0 -35
  136. package/skills/api-docs-portal/src/index.ts +0 -919
  137. package/skills/api-docs-portal/tsconfig.json +0 -17
  138. package/skills/api-test-suite/CLAUDE.md +0 -19
  139. package/skills/api-test-suite/package.json +0 -27
  140. package/skills/api-test-suite/src/index.ts +0 -381
  141. package/skills/api-test-suite/tsconfig.json +0 -10
  142. package/skills/audio-extract/CLAUDE.md +0 -9
  143. package/skills/audio-extract/SKILL.md +0 -73
  144. package/skills/audio-extract/package.json +0 -23
  145. package/skills/audio-extract/src/index.ts +0 -323
  146. package/skills/audio-extract/tsconfig.json +0 -11
  147. package/skills/bio-sequence-tool/CLAUDE.md +0 -19
  148. package/skills/bio-sequence-tool/package.json +0 -27
  149. package/skills/bio-sequence-tool/src/index.ts +0 -85
  150. package/skills/bio-sequence-tool/tsconfig.json +0 -10
  151. package/skills/blog-article/CLAUDE.md +0 -12
  152. package/skills/blog-article/SKILL.md +0 -55
  153. package/skills/blog-article/package.json +0 -10
  154. package/skills/blog-article/tsconfig.json +0 -10
  155. package/skills/brand-assets/SKILL.md +0 -118
  156. package/skills/brand-assets/package.json +0 -35
  157. package/skills/brand-assets/src/cli.ts +0 -155
  158. package/skills/brand-assets/src/constants.ts +0 -8
  159. package/skills/brand-assets/src/extract.ts +0 -236
  160. package/skills/brand-assets/src/index.ts +0 -668
  161. package/skills/brand-assets/src/types.ts +0 -59
  162. package/skills/brand-assets/tsconfig.json +0 -17
  163. package/skills/brand-kit/SKILL.md +0 -54
  164. package/skills/brand-kit/package.json +0 -10
  165. package/skills/businessactivity/CLAUDE.md +0 -176
  166. package/skills/businessactivity/LICENSE +0 -192
  167. package/skills/businessactivity/README.md +0 -287
  168. package/skills/businessactivity/package.json +0 -25
  169. package/skills/businessactivity/scripts/publish.ts +0 -210
  170. package/skills/businessactivity/src/commands/activity.ts +0 -211
  171. package/skills/businessactivity/src/commands/function.ts +0 -227
  172. package/skills/businessactivity/src/commands/owner.ts +0 -193
  173. package/skills/businessactivity/src/commands/profile.ts +0 -121
  174. package/skills/businessactivity/src/commands/responsibility.ts +0 -264
  175. package/skills/businessactivity/src/commands/team.ts +0 -244
  176. package/skills/businessactivity/src/commands/workflow.ts +0 -359
  177. package/skills/businessactivity/src/index.ts +0 -3
  178. package/skills/businessactivity/src/lib/config.ts +0 -167
  179. package/skills/businessactivity/src/lib/output.ts +0 -76
  180. package/skills/businessactivity/src/lib/paths.ts +0 -79
  181. package/skills/businessactivity/src/lib/storage.ts +0 -95
  182. package/skills/businessactivity/src/types/index.ts +0 -86
  183. package/skills/businessactivity/tsconfig.json +0 -29
  184. package/skills/codefix/LICENSE +0 -192
  185. package/skills/codefix/README.md +0 -232
  186. package/skills/codefix/SKILL.md +0 -94
  187. package/skills/codefix/package.json +0 -21
  188. package/skills/codefix/src/fixers/batch.ts +0 -213
  189. package/skills/codefix/src/fixers/detector.ts +0 -160
  190. package/skills/codefix/src/fixers/index.ts +0 -7
  191. package/skills/codefix/src/fixers/runner.ts +0 -522
  192. package/skills/codefix/src/index-local.ts +0 -431
  193. package/skills/codefix/src/index.ts +0 -4
  194. package/skills/codefix/src/types.ts +0 -211
  195. package/skills/codefix/tsconfig.json +0 -15
  196. package/skills/commitpush/SKILL.md +0 -57
  197. package/skills/commitpush/package.json +0 -33
  198. package/skills/commitpush/src/index.ts +0 -34
  199. package/skills/commitpush/tsconfig.json +0 -17
  200. package/skills/commitpushpr/SKILL.md +0 -55
  201. package/skills/commitpushpr/package.json +0 -33
  202. package/skills/commitpushpr/src/index.ts +0 -34
  203. package/skills/commitpushpr/tsconfig.json +0 -17
  204. package/skills/compress-video/CLAUDE.md +0 -9
  205. package/skills/compress-video/SKILL.md +0 -79
  206. package/skills/compress-video/package.json +0 -23
  207. package/skills/compress-video/src/index.ts +0 -473
  208. package/skills/compress-video/tsconfig.json +0 -11
  209. package/skills/contract-review-report/SKILL.md +0 -52
  210. package/skills/contract-review-report/package.json +0 -10
  211. package/skills/customer-feedback-report/SKILL.md +0 -52
  212. package/skills/customer-feedback-report/package.json +0 -10
  213. package/skills/dashboard-builder/CLAUDE.md +0 -19
  214. package/skills/dashboard-builder/package.json +0 -29
  215. package/skills/dashboard-builder/src/index.ts +0 -150
  216. package/skills/dashboard-builder/tsconfig.json +0 -10
  217. package/skills/data-anonymizer/CLAUDE.md +0 -19
  218. package/skills/data-anonymizer/package.json +0 -27
  219. package/skills/data-anonymizer/src/index.ts +0 -183
  220. package/skills/data-anonymizer/tsconfig.json +0 -10
  221. package/skills/database-explorer/CLAUDE.md +0 -19
  222. package/skills/database-explorer/package.json +0 -29
  223. package/skills/database-explorer/src/index.ts +0 -95
  224. package/skills/database-explorer/tsconfig.json +0 -10
  225. package/skills/diff-viewer/CLAUDE.md +0 -19
  226. package/skills/diff-viewer/package.json +0 -30
  227. package/skills/diff-viewer/src/index.ts +0 -164
  228. package/skills/diff-viewer/tsconfig.json +0 -10
  229. package/skills/doc-read/SKILL.md +0 -45
  230. package/skills/doc-read/package.json +0 -29
  231. package/skills/doc-read/src/index.ts +0 -324
  232. package/skills/doc-read/tsconfig.json +0 -8
  233. package/skills/domainpurchase/LICENSE +0 -192
  234. package/skills/domainpurchase/SKILL.md +0 -29
  235. package/skills/domainpurchase/package.json +0 -30
  236. package/skills/domainpurchase/src/index.ts +0 -3
  237. package/skills/domainpurchase/tsconfig.json +0 -21
  238. package/skills/email-sequence/SKILL.md +0 -53
  239. package/skills/email-sequence/package.json +0 -10
  240. package/skills/experiment-power-calculator/CLAUDE.md +0 -19
  241. package/skills/experiment-power-calculator/package.json +0 -29
  242. package/skills/experiment-power-calculator/src/index.ts +0 -86
  243. package/skills/experiment-power-calculator/tsconfig.json +0 -10
  244. package/skills/extract-frames/CLAUDE.md +0 -19
  245. package/skills/extract-frames/package.json +0 -27
  246. package/skills/extract-frames/src/index.ts +0 -616
  247. package/skills/extract-frames/tsconfig.json +0 -10
  248. package/skills/file-organizer/CLAUDE.md +0 -19
  249. package/skills/file-organizer/package.json +0 -27
  250. package/skills/file-organizer/src/index.ts +0 -91
  251. package/skills/file-organizer/tsconfig.json +0 -10
  252. package/skills/folder-tree/CLAUDE.md +0 -19
  253. package/skills/folder-tree/package.json +0 -29
  254. package/skills/folder-tree/src/index.ts +0 -568
  255. package/skills/folder-tree/tsconfig.json +0 -10
  256. package/skills/form-filler/CLAUDE.md +0 -19
  257. package/skills/form-filler/package.json +0 -29
  258. package/skills/form-filler/src/index.ts +0 -81
  259. package/skills/form-filler/tsconfig.json +0 -10
  260. package/skills/generate-api-client/CLAUDE.md +0 -19
  261. package/skills/generate-api-client/package.json +0 -29
  262. package/skills/generate-api-client/src/generator.ts +0 -47
  263. package/skills/generate-api-client/src/index.ts +0 -92
  264. package/skills/generate-api-client/src/logger.ts +0 -34
  265. package/skills/generate-api-client/src/python-generator.ts +0 -245
  266. package/skills/generate-api-client/src/spec-loader.ts +0 -48
  267. package/skills/generate-api-client/src/type-mappers.ts +0 -79
  268. package/skills/generate-api-client/src/types.ts +0 -76
  269. package/skills/generate-api-client/src/typescript-generator.ts +0 -247
  270. package/skills/generate-api-client/tsconfig.json +0 -10
  271. package/skills/generate-chart/CLAUDE.md +0 -19
  272. package/skills/generate-chart/package.json +0 -27
  273. package/skills/generate-chart/src/index.ts +0 -510
  274. package/skills/generate-chart/tsconfig.json +0 -10
  275. package/skills/generate-dockerfile/CLAUDE.md +0 -19
  276. package/skills/generate-dockerfile/package.json +0 -27
  277. package/skills/generate-dockerfile/src/cli.ts +0 -78
  278. package/skills/generate-dockerfile/src/dockerfile-templates.ts +0 -392
  279. package/skills/generate-dockerfile/src/index.ts +0 -81
  280. package/skills/generate-dockerfile/src/logger.ts +0 -30
  281. package/skills/generate-dockerfile/src/project-detection.ts +0 -68
  282. package/skills/generate-dockerfile/src/support-files.ts +0 -171
  283. package/skills/generate-dockerfile/src/types.ts +0 -29
  284. package/skills/generate-dockerfile/tsconfig.json +0 -10
  285. package/skills/generate-env/CLAUDE.md +0 -19
  286. package/skills/generate-env/package.json +0 -29
  287. package/skills/generate-env/src/cli.ts +0 -85
  288. package/skills/generate-env/src/detection.ts +0 -161
  289. package/skills/generate-env/src/env-data.ts +0 -66
  290. package/skills/generate-env/src/generators.ts +0 -240
  291. package/skills/generate-env/src/index.ts +0 -120
  292. package/skills/generate-env/src/runtime.ts +0 -30
  293. package/skills/generate-env/src/types.ts +0 -32
  294. package/skills/generate-env/tsconfig.json +0 -10
  295. package/skills/generate-favicon/CLAUDE.md +0 -19
  296. package/skills/generate-favicon/package.json +0 -29
  297. package/skills/generate-favicon/src/index.ts +0 -421
  298. package/skills/generate-favicon/tsconfig.json +0 -10
  299. package/skills/generate-qrcode/CLAUDE.md +0 -19
  300. package/skills/generate-qrcode/package.json +0 -30
  301. package/skills/generate-qrcode/src/index.ts +0 -584
  302. package/skills/generate-qrcode/tsconfig.json +0 -10
  303. package/skills/generate-resume/CLAUDE.md +0 -19
  304. package/skills/generate-resume/package.json +0 -27
  305. package/skills/generate-resume/src/cli.ts +0 -157
  306. package/skills/generate-resume/src/index.ts +0 -178
  307. package/skills/generate-resume/src/parsers.ts +0 -95
  308. package/skills/generate-resume/src/renderers.ts +0 -538
  309. package/skills/generate-resume/src/security.ts +0 -39
  310. package/skills/generate-resume/src/types.ts +0 -86
  311. package/skills/generate-resume/tsconfig.json +0 -10
  312. package/skills/generate-sitemap/CLAUDE.md +0 -19
  313. package/skills/generate-sitemap/package.json +0 -27
  314. package/skills/generate-sitemap/src/index.ts +0 -626
  315. package/skills/generate-sitemap/tsconfig.json +0 -10
  316. package/skills/gif-maker/CLAUDE.md +0 -19
  317. package/skills/gif-maker/package.json +0 -30
  318. package/skills/gif-maker/src/index.ts +0 -600
  319. package/skills/gif-maker/tsconfig.json +0 -10
  320. package/skills/hook/LICENSE +0 -192
  321. package/skills/hook/README.md +0 -74
  322. package/skills/hook/SKILL.md +0 -85
  323. package/skills/hook/bunfig.toml +0 -5
  324. package/skills/hook/package.json +0 -28
  325. package/skills/hook/src/commands/create.ts +0 -112
  326. package/skills/hook/src/commands/events.ts +0 -37
  327. package/skills/hook/src/commands/validate.ts +0 -117
  328. package/skills/hook/src/index.ts +0 -118
  329. package/skills/hook/src/templates/root.ts +0 -196
  330. package/skills/hook/src/templates/source.ts +0 -647
  331. package/skills/hook/tsconfig.json +0 -18
  332. package/skills/http-server/CLAUDE.md +0 -19
  333. package/skills/http-server/package.json +0 -29
  334. package/skills/http-server/src/index.ts +0 -51
  335. package/skills/http-server/tsconfig.json +0 -10
  336. package/skills/implementation/LICENSE +0 -192
  337. package/skills/implementation/README.md +0 -53
  338. package/skills/implementation/SKILL.md +0 -57
  339. package/skills/implementation/bunfig.toml +0 -5
  340. package/skills/implementation/package.json +0 -28
  341. package/skills/implementation/src/commands/create.ts +0 -187
  342. package/skills/implementation/src/index.ts +0 -62
  343. package/skills/implementation/tsconfig.json +0 -18
  344. package/skills/implementation-plan/CLAUDE.md +0 -19
  345. package/skills/implementation-plan/package.json +0 -29
  346. package/skills/implementation-plan/src/index.ts +0 -520
  347. package/skills/implementation-plan/tsconfig.json +0 -10
  348. package/skills/implementation-todo/CLAUDE.md +0 -19
  349. package/skills/implementation-todo/package.json +0 -29
  350. package/skills/implementation-todo/src/index.ts +0 -429
  351. package/skills/implementation-todo/tsconfig.json +0 -10
  352. package/skills/invoice/.env.example +0 -3
  353. package/skills/invoice/CLAUDE.md +0 -31
  354. package/skills/invoice/LICENSE +0 -192
  355. package/skills/invoice/README.md +0 -70
  356. package/skills/invoice/package.json +0 -26
  357. package/skills/invoice/src/commands/companies.ts +0 -202
  358. package/skills/invoice/src/commands/config.ts +0 -132
  359. package/skills/invoice/src/commands/generate.ts +0 -177
  360. package/skills/invoice/src/commands/invoices.ts +0 -218
  361. package/skills/invoice/src/index.ts +0 -3
  362. package/skills/invoice/src/lib/api.ts +0 -124
  363. package/skills/invoice/src/lib/storage.ts +0 -171
  364. package/skills/invoice/src/types/index.ts +0 -86
  365. package/skills/invoice/src/utils/logger.ts +0 -33
  366. package/skills/invoice/src/utils/paths.ts +0 -25
  367. package/skills/invoice/tsconfig.json +0 -23
  368. package/skills/invoice-reconciliation/SKILL.md +0 -98
  369. package/skills/invoice-reconciliation/package.json +0 -36
  370. package/skills/invoice-reconciliation/src/index.ts +0 -743
  371. package/skills/invoice-reconciliation/tsconfig.json +0 -17
  372. package/skills/landing-page-pack/SKILL.md +0 -55
  373. package/skills/landing-page-pack/package.json +0 -10
  374. package/skills/latex-table-generator/CLAUDE.md +0 -19
  375. package/skills/latex-table-generator/package.json +0 -29
  376. package/skills/latex-table-generator/src/index.ts +0 -113
  377. package/skills/latex-table-generator/tsconfig.json +0 -10
  378. package/skills/logo-design/SKILL.md +0 -94
  379. package/skills/logo-design/package.json +0 -35
  380. package/skills/logo-design/src/cli.ts +0 -132
  381. package/skills/logo-design/src/constants.ts +0 -5
  382. package/skills/logo-design/src/docs.ts +0 -102
  383. package/skills/logo-design/src/geometry.ts +0 -324
  384. package/skills/logo-design/src/index.ts +0 -212
  385. package/skills/logo-design/src/palette.ts +0 -258
  386. package/skills/logo-design/src/types.ts +0 -50
  387. package/skills/logo-design/tsconfig.json +0 -17
  388. package/skills/lorem-generator/CLAUDE.md +0 -19
  389. package/skills/lorem-generator/package.json +0 -29
  390. package/skills/lorem-generator/src/index.ts +0 -59
  391. package/skills/lorem-generator/tsconfig.json +0 -10
  392. package/skills/managemcp/CLAUDE.md +0 -14
  393. package/skills/managemcp/README.md +0 -24
  394. package/skills/managemcp/package.json +0 -16
  395. package/skills/managemcp/src/index.ts +0 -3
  396. package/skills/managemcp/tsconfig.json +0 -27
  397. package/skills/markdown-validator/CLAUDE.md +0 -19
  398. package/skills/markdown-validator/package.json +0 -29
  399. package/skills/markdown-validator/src/index.ts +0 -92
  400. package/skills/markdown-validator/tsconfig.json +0 -10
  401. package/skills/market-research-report/SKILL.md +0 -51
  402. package/skills/market-research-report/package.json +0 -10
  403. package/skills/meeting-pack/SKILL.md +0 -52
  404. package/skills/meeting-pack/package.json +0 -10
  405. package/skills/merge-pdfs/CLAUDE.md +0 -19
  406. package/skills/merge-pdfs/package.json +0 -31
  407. package/skills/merge-pdfs/src/index.ts +0 -427
  408. package/skills/merge-pdfs/tsconfig.json +0 -10
  409. package/skills/migration-plan-pack/SKILL.md +0 -56
  410. package/skills/migration-plan-pack/package.json +0 -10
  411. package/skills/monitor/SKILL.md +0 -69
  412. package/skills/monitor/package.json +0 -33
  413. package/skills/monitor/src/index.ts +0 -34
  414. package/skills/monitor/tsconfig.json +0 -17
  415. package/skills/one-page-website/SKILL.md +0 -128
  416. package/skills/one-page-website/package.json +0 -34
  417. package/skills/one-page-website/src/design.ts +0 -336
  418. package/skills/one-page-website/src/docs.ts +0 -159
  419. package/skills/one-page-website/src/index.ts +0 -357
  420. package/skills/one-page-website/src/page.ts +0 -340
  421. package/skills/one-page-website/src/styles.ts +0 -508
  422. package/skills/one-page-website/src/types.ts +0 -78
  423. package/skills/one-page-website/tsconfig.json +0 -17
  424. package/skills/pdf-generate/CLAUDE.md +0 -19
  425. package/skills/pdf-generate/SKILL.md +0 -86
  426. package/skills/pdf-generate/package.json +0 -21
  427. package/skills/pdf-generate/src/cli.ts +0 -162
  428. package/skills/pdf-generate/src/html.ts +0 -84
  429. package/skills/pdf-generate/src/index.ts +0 -62
  430. package/skills/pdf-generate/src/markdown.ts +0 -27
  431. package/skills/pdf-generate/src/pdf-writer.ts +0 -78
  432. package/skills/pdf-generate/src/runtime.ts +0 -34
  433. package/skills/pdf-generate/src/security.ts +0 -37
  434. package/skills/pdf-generate/src/templates.ts +0 -311
  435. package/skills/pdf-generate/src/types.ts +0 -28
  436. package/skills/pdf-generate/tsconfig.json +0 -16
  437. package/skills/pdf-to-dataset/SKILL.md +0 -88
  438. package/skills/pdf-to-dataset/package.json +0 -37
  439. package/skills/pdf-to-dataset/src/index.ts +0 -790
  440. package/skills/pdf-to-dataset/tsconfig.json +0 -17
  441. package/skills/pdf-to-markdown/SKILL.md +0 -81
  442. package/skills/pdf-to-markdown/package.json +0 -35
  443. package/skills/pdf-to-markdown/src/index.ts +0 -694
  444. package/skills/pdf-to-markdown/tsconfig.json +0 -17
  445. package/skills/performance-audit-report/SKILL.md +0 -49
  446. package/skills/performance-audit-report/package.json +0 -10
  447. package/skills/pitch-deck/SKILL.md +0 -51
  448. package/skills/pitch-deck/package.json +0 -10
  449. package/skills/product-mockup/SKILL.md +0 -107
  450. package/skills/product-mockup/package.json +0 -32
  451. package/skills/product-mockup/src/cli.ts +0 -150
  452. package/skills/product-mockup/src/design.ts +0 -151
  453. package/skills/product-mockup/src/docs.ts +0 -134
  454. package/skills/product-mockup/src/index.ts +0 -182
  455. package/skills/product-mockup/src/render.ts +0 -407
  456. package/skills/product-mockup/src/types.ts +0 -66
  457. package/skills/product-mockup/tsconfig.json +0 -17
  458. package/skills/proposal-pack/SKILL.md +0 -53
  459. package/skills/proposal-pack/package.json +0 -10
  460. package/skills/read-csv/SKILL.md +0 -62
  461. package/skills/read-csv/package.json +0 -37
  462. package/skills/read-csv/src/index.ts +0 -356
  463. package/skills/read-csv/tsconfig.json +0 -17
  464. package/skills/read-excel/SKILL.md +0 -64
  465. package/skills/read-excel/package.json +0 -36
  466. package/skills/read-excel/src/index.ts +0 -266
  467. package/skills/read-excel/tsconfig.json +0 -17
  468. package/skills/regex-tester/CLAUDE.md +0 -19
  469. package/skills/regex-tester/package.json +0 -27
  470. package/skills/regex-tester/src/index.ts +0 -183
  471. package/skills/regex-tester/tsconfig.json +0 -10
  472. package/skills/repo-onboarding-report/SKILL.md +0 -52
  473. package/skills/repo-onboarding-report/package.json +0 -10
  474. package/skills/scancommitpr/SKILL.md +0 -178
  475. package/skills/scancommitpr/package.json +0 -34
  476. package/skills/scancommitpr/src/index.ts +0 -44
  477. package/skills/scancommitpr/tsconfig.json +0 -13
  478. package/skills/scancommitpush/SKILL.md +0 -174
  479. package/skills/scancommitpush/package.json +0 -32
  480. package/skills/scancommitpush/src/index.ts +0 -44
  481. package/skills/scancommitpush/tsconfig.json +0 -13
  482. package/skills/scientific-figure-check/CLAUDE.md +0 -19
  483. package/skills/scientific-figure-check/package.json +0 -29
  484. package/skills/scientific-figure-check/src/index.ts +0 -83
  485. package/skills/scientific-figure-check/tsconfig.json +0 -10
  486. package/skills/security-audit/CLAUDE.md +0 -19
  487. package/skills/security-audit/package.json +0 -27
  488. package/skills/security-audit/src/index.ts +0 -145
  489. package/skills/security-audit/tsconfig.json +0 -10
  490. package/skills/security-audit-report/SKILL.md +0 -52
  491. package/skills/security-audit-report/package.json +0 -10
  492. package/skills/seo-content-pack/SKILL.md +0 -54
  493. package/skills/seo-content-pack/package.json +0 -10
  494. package/skills/siteanalyze/SKILL.md +0 -25
  495. package/skills/siteanalyze/package.json +0 -27
  496. package/skills/siteanalyze/src/index.ts +0 -592
  497. package/skills/slide-deck-generator/SKILL.md +0 -93
  498. package/skills/slide-deck-generator/package.json +0 -38
  499. package/skills/slide-deck-generator/src/cli.ts +0 -133
  500. package/skills/slide-deck-generator/src/index.ts +0 -148
  501. package/skills/slide-deck-generator/src/model.ts +0 -307
  502. package/skills/slide-deck-generator/src/pptx.ts +0 -143
  503. package/skills/slide-deck-generator/src/render.ts +0 -248
  504. package/skills/slide-deck-generator/src/types.ts +0 -114
  505. package/skills/slide-deck-generator/src/utils.ts +0 -53
  506. package/skills/slide-deck-generator/tsconfig.json +0 -17
  507. package/skills/social-content-calendar/SKILL.md +0 -54
  508. package/skills/social-content-calendar/package.json +0 -10
  509. package/skills/split-pdf/CLAUDE.md +0 -19
  510. package/skills/split-pdf/package.json +0 -30
  511. package/skills/split-pdf/src/index.ts +0 -301
  512. package/skills/split-pdf/tsconfig.json +0 -10
  513. package/skills/statistical-test-selector/CLAUDE.md +0 -19
  514. package/skills/statistical-test-selector/package.json +0 -27
  515. package/skills/statistical-test-selector/src/index.ts +0 -75
  516. package/skills/statistical-test-selector/tsconfig.json +0 -10
  517. package/skills/test-suite-generator/SKILL.md +0 -51
  518. package/skills/test-suite-generator/package.json +0 -10
  519. package/skills/tmux-session/SKILL.md +0 -109
  520. package/skills/tmux-session/package.json +0 -33
  521. package/skills/tmux-session/src/index.ts +0 -34
  522. package/skills/tmux-session/tsconfig.json +0 -17
  523. package/skills/todos-plan/SKILL.md +0 -363
  524. package/skills/todos-plan/agents/openai.yaml +0 -4
  525. package/skills/todos-plan/package.json +0 -9
  526. package/skills/todos-plan/src/index.ts +0 -68
  527. package/skills/tsconfig.base.json +0 -12
  528. package/skills/validate-config/CLAUDE.md +0 -19
  529. package/skills/validate-config/package.json +0 -29
  530. package/skills/validate-config/src/index.ts +0 -56
  531. package/skills/validate-config/tsconfig.json +0 -10
  532. package/skills/video-downloader/CLAUDE.md +0 -19
  533. package/skills/video-downloader/package.json +0 -29
  534. package/skills/video-downloader/src/index.ts +0 -561
  535. package/skills/video-downloader/tsconfig.json +0 -10
  536. package/skills/video-highlight-pack/SKILL.md +0 -54
  537. package/skills/video-highlight-pack/package.json +0 -10
  538. package/skills/watermark/CLAUDE.md +0 -19
  539. package/skills/watermark/package.json +0 -32
  540. package/skills/watermark/src/index.ts +0 -587
  541. package/skills/watermark/tsconfig.json +0 -10
@@ -0,0 +1,42 @@
1
+ /** Filename of the default SQLite database inside the skills data directory. */
2
+ export declare const DEFAULT_SQLITE_FILENAME = "server.db";
3
+ /** The token that selects an in-memory SQLite database (SQLite's own spelling). */
4
+ export declare const SQLITE_MEMORY_PATH = ":memory:";
5
+ export type DatabaseTarget = {
6
+ kind: "postgres";
7
+ url: string;
8
+ durable: true;
9
+ label: string;
10
+ } | {
11
+ kind: "sqlite";
12
+ path: string;
13
+ durable: boolean;
14
+ label: string;
15
+ } | {
16
+ kind: "memory";
17
+ durable: false;
18
+ label: string;
19
+ };
20
+ /**
21
+ * Absolute path of the default SQLite database.
22
+ *
23
+ * PR #50 moved the *skill corpus* into ~/.hasna/skills/installed/ and left app data at
24
+ * the app root, matching every sibling Hasna app (mementos keeps mementos.db beside
25
+ * agents/, accounts keeps accounts.json beside profiles/). The server database is app
26
+ * data, so it belongs at the root - ~/.hasna/skills/server.db - and explicitly NOT
27
+ * inside installed/, which now holds exactly one thing: installed skills.
28
+ *
29
+ * Resolved through getDataDir() rather than composed from $HOME so that
30
+ * $HASNA_SKILLS_DIR relocates the database along with the rest of the app's state. The
31
+ * test preload sets that variable per test, which is also what keeps the suite from
32
+ * writing a server.db into a developer's real home.
33
+ */
34
+ export declare function defaultSqlitePath(): string;
35
+ /**
36
+ * Resolve an operator-supplied database string into a concrete backend choice.
37
+ *
38
+ * @throws if the string names a scheme this build has no backend for. Refusing beats
39
+ * guessing: a typo'd scheme that silently became "SQLite at ./mysql:" would present as
40
+ * an empty database rather than as a configuration error.
41
+ */
42
+ export declare function resolveDatabaseTarget(raw?: string | null): DatabaseTarget;
@@ -0,0 +1,3 @@
1
+ import { ArtifactStorage } from "./artifact-storage.js";
2
+ import type { ServerRunRecord, SkillsProductStore } from "./types.js";
3
+ export declare function executeRun(store: SkillsProductStore, run: ServerRunRecord, storage?: ArtifactStorage): Promise<ServerRunRecord>;
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bun
2
+ export {};
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env bun
2
+ import { type DatabaseTarget } from "./database-url.js";
3
+ export interface MigrationResult {
4
+ backend: DatabaseTarget["kind"];
5
+ applied: string[];
6
+ }
7
+ /**
8
+ * Apply pending migrations to whatever backend `databaseUrl` names.
9
+ *
10
+ * @param migrationsDir override for the directory holding this dialect's .sql files.
11
+ * Defaults to the dialect subdirectory of the package's migrations/ folder.
12
+ */
13
+ export declare function runMigrations(databaseUrl?: string, migrationsDir?: string): Promise<MigrationResult>;
@@ -0,0 +1,18 @@
1
+ export declare const MIGRATION_DIALECTS: readonly ["postgres", "sqlite"];
2
+ export type MigrationDialect = (typeof MIGRATION_DIALECTS)[number];
3
+ /**
4
+ * Absolute path of `migrations/`, or null when it cannot be found.
5
+ *
6
+ * Searches the callers' likely roots in order: the module's own directory chain (which
7
+ * covers src/, bin/, dist/, and node_modules installs) and then the working directory
8
+ * chain (which covers `bun run migrate` invoked from a subdirectory).
9
+ */
10
+ export declare function findMigrationsRoot(startDirs?: string[]): string | null;
11
+ /**
12
+ * Absolute path of the migration directory for one dialect.
13
+ *
14
+ * @throws when the directory cannot be located, naming the dialect. Throwing beats
15
+ * returning an empty list: "0 migrations applied" against a fresh database looks like
16
+ * success right up until the first query fails on a missing table.
17
+ */
18
+ export declare function resolveMigrationsDir(dialect: MigrationDialect, root?: string | null): string;
@@ -0,0 +1 @@
1
+ export declare function redactForClient(value: unknown): string;
@@ -0,0 +1,5 @@
1
+ import { type SkillMeta } from "../lib/registry.js";
2
+ export declare function isValidSkillSlug(slug: string): boolean;
3
+ export declare function listServerSkills(): SkillMeta[];
4
+ export declare function getServerSkill(slug: string): SkillMeta | null;
5
+ export declare function getServerSkillMd(slug: string): string | null;
@@ -0,0 +1,24 @@
1
+ import type { ServerArtifact, ServerPin, ServerRunLog, ServerRunRecord, ServerSkillBundle, ServerSkillRecord } from "./types.js";
2
+ export declare function nowIso(): string;
3
+ /**
4
+ * Coerce a caller-supplied row limit to a non-negative integer.
5
+ *
6
+ * The two engines disagree loudly about what a bad limit means. SQLite reads `LIMIT -1`
7
+ * as *unlimited* and rejects `LIMIT 1.5` as a datatype mismatch; Postgres rejects -1 and
8
+ * rounds 1.5 up. Left alone, `listRuns(principal, -1)` returned one org's entire history
9
+ * on SQLite and an error on Postgres - and the SQLite answer is the dangerous direction,
10
+ * since the argument exists to bound the response. HTTP callers are already clamped in
11
+ * app.ts; this covers the store used as a library, which is a published seam.
12
+ */
13
+ export declare function normalizeLimit(limit: number): number;
14
+ export declare function runId(): string;
15
+ export declare function artifactId(): string;
16
+ export declare function rowToRun(row: Record<string, unknown>): ServerRunRecord;
17
+ export declare function rowToLog(row: Record<string, unknown>): ServerRunLog;
18
+ export declare function rowToArtifact(row: Record<string, unknown>): ServerArtifact;
19
+ export declare function rowToSkill(row: Record<string, unknown>): ServerSkillRecord;
20
+ export declare function rowToPin(row: Record<string, unknown>): ServerPin;
21
+ export declare function rowToSkillBundle(row: Record<string, unknown>): ServerSkillBundle;
22
+ export declare function parseJsonObject(value: unknown): Record<string, unknown>;
23
+ export declare function parseJsonArray(value: unknown): string[];
24
+ export declare function dateString(value: unknown): string;
@@ -0,0 +1,170 @@
1
+ import { type OwnedBytes } from "../lib/skill-bundle.js";
2
+ import type { SkillMeta } from "../lib/registry-types.js";
3
+ import type { ArtifactStorage } from "./artifact-storage.js";
4
+ import type { SkillsServerConfig } from "./config.js";
5
+ import { type ApiPrincipal, type PublishSkillInput, type ServerPin, type ServerSkillRecord, type SkillsProductStore } from "./types.js";
6
+ /** Wire shape of a pin: the client-facing facts, without the storage columns. */
7
+ export declare function pinPayload(pin: ServerPin): Record<string, unknown>;
8
+ /**
9
+ * The metadata field of a pin body.
10
+ *
11
+ * Absent means an empty object (matching the schema default), present-and-not-an-
12
+ * object is refused rather than coerced: a client that sends `metadata: "team"`
13
+ * sent a bug, and storing it as `{}` would make the round-trip silently lose
14
+ * what the caller wrote. The route calls this on the parsed JSON body before
15
+ * touching the store, so a malformed body is a 400 and never a row.
16
+ */
17
+ export declare function pinMetadataField(body: Record<string, unknown>): Record<string, unknown>;
18
+ export declare class SkillRequestError extends Error {
19
+ readonly status: number;
20
+ readonly code: string;
21
+ constructor(status: number, code: string, message: string);
22
+ }
23
+ /** SkillMeta shape for a published row, so a client can treat both kinds alike. */
24
+ export declare function publishedSkillMeta(record: ServerSkillRecord): SkillMeta;
25
+ export declare function publishedPayload(record: ServerSkillRecord): Record<string, unknown>;
26
+ /**
27
+ * The HTTP ETag for a published row: the revision id, quoted exactly as RFC 9110 wants.
28
+ * The quotes are load-bearing — a client that echoes the whole header value back as
29
+ * If-Match must send the quotes too.
30
+ */
31
+ export declare function revisionEtag(revisionId: string): string;
32
+ /**
33
+ * Parse an If-Match header value into the revision id it names.
34
+ *
35
+ * Accepts the quoted form the server itself issues (RFC 9110) and a bare id for
36
+ * tolerance. `*` is refused: "any revision" would license exactly the silent overwrite
37
+ * the optimistic-concurrency guard exists to refuse. Malformed values are a 400
38
+ * statement about the request, never a fallback to "no guard".
39
+ */
40
+ export declare function parseIfMatch(value: string | null): string | undefined;
41
+ /**
42
+ * Resolve a stored row that may be a tombstone (todos d061fcda).
43
+ *
44
+ * A tombstoned row answers 410 with the marker while its window is open, so a client's
45
+ * pull can reconcile (remove the local copy). Once the window has passed the tombstone
46
+ * is purged and the slug is simply gone (404). Returns "purged" when the caller should
47
+ * answer 404, a tombstone payload when it should answer 410, or "live" for a live row.
48
+ *
49
+ * Purging drops the store's bundle row and, for every purged record, the S3 object
50
+ * behind it — the same getSkillBundle-then-delete dance the publish/delete paths use,
51
+ * so an object whose digest another row still references survives.
52
+ */
53
+ export declare function tombstoneStatus(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, record: ServerSkillRecord): Promise<"live" | "purged" | Record<string, unknown>>;
54
+ /**
55
+ * Bundled corpus plus this org's published skills, published winning on a slug collision.
56
+ *
57
+ * Same rule as the CLI-side merge in src/lib/registry-merge.ts and for the same reason: an
58
+ * organization that published `deploy-notes` on their own instance meant to override the
59
+ * bundled `deploy-notes` there.
60
+ */
61
+ export declare function listMergedSkills(store: SkillsProductStore, principal: ApiPrincipal): Promise<Record<string, unknown>[]>;
62
+ /**
63
+ * What a read of one slug resolves to: the org's published row (live or tombstoned) or
64
+ * nothing. The bundled-corpus fallback is the callers' decision, not this resolver's —
65
+ * a tombstoned slug must answer 410 even when a bundled skill of the same name exists,
66
+ * because the caller asked for the skill this instance serves under that slug.
67
+ */
68
+ export type SkillReadResolution = {
69
+ kind: "published";
70
+ record: ServerSkillRecord;
71
+ } | {
72
+ kind: "tombstone";
73
+ payload: Record<string, unknown>;
74
+ } | {
75
+ kind: "absent";
76
+ };
77
+ export declare function resolvePublishedSkill(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, slug: string): Promise<SkillReadResolution>;
78
+ /**
79
+ * Distinct tags across the org's registry view: the org's published tags (the
80
+ * indexed store query over the skills_tags projection, in both backends) plus
81
+ * the bundled corpus's, which is a fixed in-process set. The route serves the
82
+ * same universe GET /api/v1/skills serves, so a client can take any tag this
83
+ * list returns and filter with it. Sorted, de-duplicated, and emptied of blank
84
+ * entries to match the client contract (non-empty tag names).
85
+ */
86
+ export declare function listOrgTags(store: SkillsProductStore, principal: ApiPrincipal): Promise<string[]>;
87
+ /**
88
+ * The merged registry view (bundled + published) filtered to skills carrying an
89
+ * exact tag. Same merge rules and payloads as listMergedSkills - the tag filter
90
+ * narrows what GET /api/v1/skills would have returned, it does not switch to a
91
+ * different universe. The published half comes from the indexed store query;
92
+ * only the static bundled corpus is filtered in-process, and a bundled skill
93
+ * whose slug a published row occupies is excluded so published-wins precedence
94
+ * holds for tag reads exactly as it does for the unfiltered view.
95
+ */
96
+ export declare function listMergedSkillsByTag(store: SkillsProductStore, principal: ApiPrincipal, tag: string): Promise<Record<string, unknown>[]>;
97
+ /**
98
+ * The minimal per-skill wire row the tag/sync summary routes serve: the client's
99
+ * RemoteSkillSummary contract ({ slug, name?, version?, updatedAt? }).
100
+ */
101
+ export declare function skillSummary(skill: Record<string, unknown>): Record<string, unknown>;
102
+ /**
103
+ * The principal's pins filtered to slugs whose skill (bundled or published, in
104
+ * this org's merged view) carries the exact tag. A pin carries no tag of its
105
+ * own - the filter resolves each pinned slug against the registry view, the
106
+ * same way the rest of the surface treats a pin as a fact about a skill.
107
+ *
108
+ * Published pins come from the indexed store query (skills_tags projection);
109
+ * the bundled-corpus half is resolved in-process against the static corpus and
110
+ * excludes slugs a published row occupies, so every pinned slug resolves
111
+ * through exactly one path (published wins) and no pin can appear twice.
112
+ */
113
+ export declare function listPinsByTag(store: SkillsProductStore, principal: ApiPrincipal, tag: string): Promise<Record<string, unknown>[]>;
114
+ export declare function getMergedSkill(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, slug: string): Promise<Record<string, unknown> | null>;
115
+ /**
116
+ * The SKILL.md document for one slug, or null when nothing is served under it.
117
+ *
118
+ * A tombstoned slug returns null here; the caller that needs the 410 marker resolves
119
+ * the tombstone itself via resolvePublishedSkill before calling.
120
+ */
121
+ export declare function getMergedSkillMd(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, slug: string): Promise<string | null>;
122
+ interface ParsedPublish {
123
+ input: Omit<PublishSkillInput, "principal">;
124
+ bundleBytes?: OwnedBytes;
125
+ }
126
+ /**
127
+ * Read a publish request.
128
+ *
129
+ * Two accepted encodings, both deliberate:
130
+ * - multipart/form-data with a `manifest` JSON part and a `bundle` file part. This is
131
+ * the one `skills push` uses. The bundle never passes through readJson(), so the 1 MB
132
+ * JSON cap is neither raised nor bypassed - the bundle has its own, larger cap.
133
+ * - application/json for a metadata-only publish (an instruction skill with no files).
134
+ * Subject to the ordinary JSON cap, because it is an ordinary JSON body.
135
+ *
136
+ * On what the size checks here can and cannot do. Content-Length is a claim: a chunked
137
+ * request need not send one, so the header check is an early-out, never the guarantee.
138
+ * The real ceiling is Bun.serve's `maxRequestBodySize`, set from the same config value in
139
+ * app.ts, which refuses at the socket before this function is reached. The checks below
140
+ * are what remains meaningful once the body is in hand: the per-part limits, and the
141
+ * refusal of any part this endpoint did not ask for - without which a request could carry
142
+ * a compliant `manifest`, a compliant `bundle`, and unbounded extra parts that nothing
143
+ * measured.
144
+ */
145
+ export declare function parsePublishRequest(request: Request, config: SkillsServerConfig): Promise<ParsedPublish>;
146
+ export declare function storePublishedSkill(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, parsed: ParsedPublish, expectedRevisionId?: string): Promise<ServerSkillRecord>;
147
+ /**
148
+ * Tombstone a published skill (todos d061fcda): the row survives with a tombstone
149
+ * marker for `tombstoneWindowMs`, so reads answer 410 and a pulling client can
150
+ * reconcile, and the bundle is retained until the purge. The stored object is NOT
151
+ * discarded here — the tombstoned row still references it; the purge discards it.
152
+ * Returns the tombstoned record, or null when the org has no row by that slug.
153
+ */
154
+ export declare function deletePublishedSkill(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, slug: string, tombstoneWindowMs: number): Promise<ServerSkillRecord | null>;
155
+ /**
156
+ * Read a published bundle back, refusing to serve bytes that no longer hash to the digest
157
+ * they were stored under.
158
+ *
159
+ * This is what the sha256 column buys. Storage drift - a truncated blob, an S3 object
160
+ * replaced out of band, a bad restore - is otherwise completely silent: the client
161
+ * receives a shorter tarball, extraction fails somewhere unrelated, and nothing points at
162
+ * storage. Verifying on read turns that into one error naming the digest.
163
+ */
164
+ export declare function readPublishedBundle(store: SkillsProductStore, artifactStorage: ArtifactStorage, principal: ApiPrincipal, slug: string): Promise<{
165
+ record: ServerSkillRecord;
166
+ bytes: OwnedBytes;
167
+ }>;
168
+ export declare function assertPublishableSlug(slug: string): void;
169
+ export declare function assertSha256(value: string): void;
170
+ export {};
@@ -0,0 +1,131 @@
1
+ /**
2
+ * SQLite implementation of SkillsProductStore.
3
+ *
4
+ * This is the zero-config default: a single operator runs `skills-server` with nothing
5
+ * configured and gets a durable database at ~/.hasna/skills/server.db. Point
6
+ * HASNA_SKILLS_DATABASE_URL at a postgres:// URL and the same server becomes the shared
7
+ * multi-worker deployment. The database is an adapter choice, not a product variant -
8
+ * the schema shape, the org scoping, and the run lifecycle are identical either way.
9
+ *
10
+ * Semantics are matched to PostgresSkillsStore method for method, including the places
11
+ * where Postgres does something arguably odd (updateRun is not org-scoped; it is the
12
+ * worker's write path and the worker has already been handed the run). Parity is the
13
+ * requirement; changing Postgres behaviour is not this module's job.
14
+ */
15
+ import { Database } from "bun:sqlite";
16
+ import type { ApiPrincipal, ClaimRunInput, CreateRunInput, PublishSkillInput, RunTransitionPatch, ServerArtifact, ServerPin, ServerRunLog, ServerRunRecord, ServerSkillBundle, ServerSkillRecord, SkillsProductStore, StoreBackendInfo, UpdateSkillPatch } from "./types.js";
17
+ export interface SqliteStoreOptions {
18
+ /** Apply pending migrations on open. Default true - it is what makes zero-config work. */
19
+ migrate?: boolean;
20
+ /** Override the migrations directory. Tests and embedders only. */
21
+ migrationsDir?: string;
22
+ /**
23
+ * How long a writer waits for another connection's write lock before giving up.
24
+ *
25
+ * Not decoration. SQLite serialises writers; without a busy timeout a second worker
26
+ * process calling claimNextRun() at the same moment gets SQLITE_BUSY immediately and
27
+ * the claim fails rather than queueing. Five seconds is far longer than a claim
28
+ * transaction (three statements, no I/O beyond the page cache) can plausibly take.
29
+ */
30
+ busyTimeoutMs?: number;
31
+ }
32
+ export declare class SqliteSkillsStore implements SkillsProductStore {
33
+ readonly backend: StoreBackendInfo;
34
+ private db;
35
+ private closed;
36
+ constructor(path?: string, options?: SqliteStoreOptions);
37
+ /**
38
+ * Give rows written before migration 0004 a real content revision id.
39
+ *
40
+ * The migration adds revision_id with DEFAULT '', which would make If-Match vacuous
41
+ * for legacy rows (every stale client matches the same empty string). This replaces
42
+ * the marker with a content sha, idempotently: new code always writes a full id, so
43
+ * the marker never reappears. Mirrors PostgresSkillsStore.backfillLegacyRevisions.
44
+ */
45
+ private backfillLegacyRevisions;
46
+ /** Escape hatch for tests and for tooling that needs raw SQL against the same handle. */
47
+ get database(): Database;
48
+ close(): Promise<void>;
49
+ ensureBootstrapApiKey(token: string, principal?: Partial<ApiPrincipal>): Promise<void>;
50
+ authenticateApiKeyHash(hash: string): Promise<ApiPrincipal | null>;
51
+ createRun(input: CreateRunInput): Promise<ServerRunRecord>;
52
+ listRuns(principal: ApiPrincipal, limit: number): Promise<ServerRunRecord[]>;
53
+ getRun(principal: ApiPrincipal, id: string): Promise<ServerRunRecord | null>;
54
+ /**
55
+ * Claim the oldest runnable job for a worker, exactly once.
56
+ *
57
+ * Postgres does this with `FOR UPDATE SKIP LOCKED`: the row is locked at SELECT time,
58
+ * and a competing transaction skips past it to the next candidate. SQLite has no row
59
+ * locks and no SKIP LOCKED - it has one write lock for the whole database - so the
60
+ * equivalent guarantee has to be built from what SQLite does have:
61
+ *
62
+ * 1. BEGIN IMMEDIATE takes the database's RESERVED write lock up front, rather than
63
+ * at the first write the way a deferred transaction does. Two claimers therefore
64
+ * serialise from their first statement, not from their UPDATE, which is what
65
+ * closes the read-then-write race. A plain BEGIN would let both claimers run
66
+ * their SELECT, both see the same row, and one of them fail late (or, in WAL
67
+ * mode, succeed - both having decided they own the run).
68
+ * 2. The UPDATE claims BY ID and re-asserts the status predicate
69
+ * (`AND status IN ('queued','retrying')`). A claim is only real if that statement
70
+ * reports changes === 1. This makes exclusivity a property of the write itself
71
+ * rather than a property of the surrounding transaction, so it holds even if the
72
+ * isolation above were ever weakened.
73
+ * 3. A bounded retry moves to the next candidate when changes === 0, so losing a
74
+ * race never reports "queue empty" while runnable work is sitting there.
75
+ *
76
+ * Not org-scoped, matching Postgres: a worker serves every org on the instance. The
77
+ * org boundary is enforced on the read paths a principal can reach.
78
+ */
79
+ claimNextRun(input: ClaimRunInput): Promise<ServerRunRecord | null>;
80
+ private claimOnce;
81
+ updateRun(id: string, patch: Partial<Pick<ServerRunRecord, "status" | "outputType" | "outputPreview" | "errorCode" | "errorMessage" | "startedAt" | "completedAt">>): Promise<ServerRunRecord | null>;
82
+ /**
83
+ * Generation-fenced transition: the WHERE re-asserts the caller's expected
84
+ * lease_generation, so a write from a worker whose claim was fenced (by a
85
+ * cancellation, or by a newer claim) reports zero rows and is refused.
86
+ *
87
+ * Unlike updateRun, the patch may also move lease_generation - that is how
88
+ * the cancel service fences the current worker. The fence bump and the
89
+ * status move land in the same statement, so there is no instant where the
90
+ * status says cancelled and the generation still admits the old worker.
91
+ */
92
+ transitionRun(id: string, patch: RunTransitionPatch, expectedGeneration: number): Promise<ServerRunRecord | null>;
93
+ appendLog(id: string, orgId: string, level: ServerRunLog["level"], message: string): Promise<ServerRunLog>;
94
+ listLogs(principal: ApiPrincipal, id: string): Promise<ServerRunLog[]>;
95
+ addArtifact(artifact: Omit<ServerArtifact, "createdAt">): Promise<ServerArtifact>;
96
+ listArtifacts(principal: ApiPrincipal, id: string): Promise<ServerArtifact[]>;
97
+ getArtifact(principal: ApiPrincipal, id: string, artifact: string): Promise<ServerArtifact | null>;
98
+ publishSkill(input: PublishSkillInput): Promise<ServerSkillRecord>;
99
+ listSkills(principal: ApiPrincipal): Promise<ServerSkillRecord[]>;
100
+ getSkill(principal: ApiPrincipal, slug: string): Promise<ServerSkillRecord | null>;
101
+ updateSkill(principal: ApiPrincipal, slug: string, patch: UpdateSkillPatch, expectedRevisionId?: string): Promise<ServerSkillRecord | null>;
102
+ deleteSkill(principal: ApiPrincipal, slug: string, tombstoneWindowMs: number): Promise<ServerSkillRecord | null>;
103
+ purgeExpiredTombstones(principal: ApiPrincipal): Promise<ServerSkillRecord[]>;
104
+ getSkillBundle(principal: ApiPrincipal, sha256: string): Promise<ServerSkillBundle | null>;
105
+ pinSkill(principal: ApiPrincipal, slug: string, metadata?: Record<string, unknown>): Promise<ServerPin>;
106
+ unpinSkill(principal: ApiPrincipal, slug: string): Promise<boolean>;
107
+ listPins(principal: ApiPrincipal): Promise<ServerPin[]>;
108
+ listTags(principal: ApiPrincipal): Promise<string[]>;
109
+ listSkillsByTag(principal: ApiPrincipal, tag: string): Promise<ServerSkillRecord[]>;
110
+ listPinsByTag(principal: ApiPrincipal, tag: string): Promise<ServerPin[]>;
111
+ listPublishedSlugs(principal: ApiPrincipal): Promise<string[]>;
112
+ /**
113
+ * Drop a bundle no remaining skill in the org points at.
114
+ *
115
+ * The reference count is over skills_registry rather than a stored counter: a counter
116
+ * would be a second source of truth for something one COUNT(*) answers exactly, and a
117
+ * drifted counter either leaks blobs forever or deletes a bundle still in use.
118
+ */
119
+ private collectOrphanBundle;
120
+ private get;
121
+ private all;
122
+ private rollbackQuietly;
123
+ }
124
+ /**
125
+ * Apply pending migrations/sqlite/*.sql to an open database.
126
+ *
127
+ * The applied-version key is the file's basename, identical to the Postgres migrator's,
128
+ * so moving migrations/0001_*.sql into migrations/postgres/ did not orphan any database
129
+ * that had already applied it.
130
+ */
131
+ export declare function applySqliteMigrations(db: Database, migrationsDir?: string): string[];
@@ -0,0 +1,25 @@
1
+ import type { ApiPrincipal, SkillsProductStore } from "./types.js";
2
+ export declare const TEST_DATABASE_URL_ENV = "HASNA_SKILLS_TEST_DATABASE_URL";
3
+ export interface SeedApiKey {
4
+ token: string;
5
+ principal: Partial<ApiPrincipal>;
6
+ }
7
+ export interface StoreFixture {
8
+ store: SkillsProductStore;
9
+ /** True when the server must be told it is allowed to run on this store. */
10
+ allowEphemeralStore: boolean;
11
+ close(): Promise<void>;
12
+ }
13
+ export interface StoreBackendFixture {
14
+ name: string;
15
+ create(seed?: SeedApiKey[]): Promise<StoreFixture>;
16
+ }
17
+ /** Human-readable reasons a backend is absent from the current run. */
18
+ export declare function storeBackendNotices(): string[];
19
+ /**
20
+ * Every backend testable in this environment.
21
+ *
22
+ * Async because Postgres availability can only be established by connecting; a
23
+ * top-level await in the test file keeps that out of the describe bodies.
24
+ */
25
+ export declare function resolveStoreBackends(): Promise<StoreBackendFixture[]>;
@@ -0,0 +1,170 @@
1
+ import type { ApiPrincipal, ClaimRunInput, CreateRunInput, PublishSkillInput, RunTransitionPatch, ServerArtifact, ServerPin, ServerRunLog, ServerRunRecord, ServerSkillBundle, ServerSkillRecord, SkillsProductStore, StoreBackendInfo, UpdateSkillPatch } from "./types.js";
2
+ import { type SqliteStoreOptions } from "./sqlite-store.js";
3
+ export declare function createArtifactId(): string;
4
+ export interface StoreOptions {
5
+ databaseUrl?: string;
6
+ bootstrapApiKey?: string;
7
+ /** SQLite tuning, forwarded when the resolved target is SQLite. */
8
+ sqlite?: SqliteStoreOptions;
9
+ }
10
+ /**
11
+ * Build the store an operator's configuration asks for.
12
+ *
13
+ * The old body was `options.databaseUrl ? Postgres : Memory`, which meant that the
14
+ * single most common way to start this server - run it with nothing set - produced a
15
+ * process that looked healthy and forgot everything on restart. There is no longer any
16
+ * input that yields a non-durable store by accident:
17
+ *
18
+ * - a postgres:// URL -> Postgres, and a failure to reach it is fatal here
19
+ * - a sqlite path / file: URL -> SQLite at that path, migrated on open
20
+ * - nothing at all -> SQLite at ~/.hasna/skills/server.db, migrated on open
21
+ * - "memory:" or ":memory:" -> non-durable, and only because it was named
22
+ * - anything else -> throws, naming what is supported
23
+ */
24
+ export declare function createStore(options?: StoreOptions): Promise<SkillsProductStore>;
25
+ export declare class MemorySkillsStore implements SkillsProductStore {
26
+ readonly backend: StoreBackendInfo;
27
+ private apiKeys;
28
+ private runs;
29
+ private logs;
30
+ private artifacts;
31
+ private idempotency;
32
+ private skills;
33
+ private bundles;
34
+ private pins;
35
+ constructor(apiKeys?: Array<{
36
+ token: string;
37
+ principal?: Partial<ApiPrincipal>;
38
+ }>);
39
+ addApiKey(token: string, principal?: Partial<ApiPrincipal>): ApiPrincipal;
40
+ ensureBootstrapApiKey(token: string, principal?: Partial<ApiPrincipal>): Promise<void>;
41
+ authenticateApiKeyHash(hash: string): Promise<ApiPrincipal | null>;
42
+ createRun(input: CreateRunInput): Promise<ServerRunRecord>;
43
+ listRuns(principal: ApiPrincipal, limit: number): Promise<ServerRunRecord[]>;
44
+ getRun(principal: ApiPrincipal, runId: string): Promise<ServerRunRecord | null>;
45
+ /**
46
+ * Exclusive only by accident: nothing here takes a lock, and it is safe purely
47
+ * because the read and the write happen in one synchronous turn of a single event
48
+ * loop. That is not a claiming strategy, it is a property of there being exactly one
49
+ * process and one Map. It is left as-is because this store is now explicitly
50
+ * non-durable and test-only - the durable backends implement claiming properly
51
+ * (Postgres via FOR UPDATE SKIP LOCKED, SQLite via BEGIN IMMEDIATE plus a conditional
52
+ * claim by id). Do not use this as the model for a new backend.
53
+ *
54
+ * startedAt is preserved on re-claim to match both durable backends' COALESCE.
55
+ */
56
+ claimNextRun(_input: ClaimRunInput): Promise<ServerRunRecord | null>;
57
+ updateRun(runId: string, patch: Partial<Pick<ServerRunRecord, "status" | "outputType" | "outputPreview" | "errorCode" | "errorMessage" | "startedAt" | "completedAt">>): Promise<ServerRunRecord | null>;
58
+ /**
59
+ * Fenced transition. The memory store's exclusivity is one event-loop turn,
60
+ * which makes the read-then-check atomic by construction; the generation
61
+ * predicate is still re-asserted so the semantics match the SQL backends.
62
+ */
63
+ transitionRun(runId: string, patch: RunTransitionPatch, expectedGeneration: number): Promise<ServerRunRecord | null>;
64
+ appendLog(runId: string, orgId: string, level: ServerRunLog["level"], message: string): Promise<ServerRunLog>;
65
+ listLogs(principal: ApiPrincipal, runId: string): Promise<ServerRunLog[]>;
66
+ addArtifact(artifact: Omit<ServerArtifact, "createdAt">): Promise<ServerArtifact>;
67
+ listArtifacts(principal: ApiPrincipal, runId: string): Promise<ServerArtifact[]>;
68
+ getArtifact(principal: ApiPrincipal, runId: string, id: string): Promise<ServerArtifact | null>;
69
+ publishSkill(input: PublishSkillInput): Promise<ServerSkillRecord>;
70
+ listSkills(principal: ApiPrincipal): Promise<ServerSkillRecord[]>;
71
+ getSkill(principal: ApiPrincipal, slug: string): Promise<ServerSkillRecord | null>;
72
+ updateSkill(principal: ApiPrincipal, slug: string, patch: UpdateSkillPatch, expectedRevisionId?: string): Promise<ServerSkillRecord | null>;
73
+ deleteSkill(principal: ApiPrincipal, slug: string, tombstoneWindowMs: number): Promise<ServerSkillRecord | null>;
74
+ purgeExpiredTombstones(principal: ApiPrincipal): Promise<ServerSkillRecord[]>;
75
+ getSkillBundle(principal: ApiPrincipal, sha256: string): Promise<ServerSkillBundle | null>;
76
+ pinSkill(principal: ApiPrincipal, slug: string, metadata?: Record<string, unknown>): Promise<ServerPin>;
77
+ unpinSkill(principal: ApiPrincipal, slug: string): Promise<boolean>;
78
+ listPins(principal: ApiPrincipal): Promise<ServerPin[]>;
79
+ listTags(principal: ApiPrincipal): Promise<string[]>;
80
+ listSkillsByTag(principal: ApiPrincipal, tag: string): Promise<ServerSkillRecord[]>;
81
+ listPinsByTag(principal: ApiPrincipal, tag: string): Promise<ServerPin[]>;
82
+ listPublishedSlugs(principal: ApiPrincipal): Promise<string[]>;
83
+ private collectOrphanBundle;
84
+ private patchRun;
85
+ }
86
+ export declare class PostgresSkillsStore implements SkillsProductStore {
87
+ readonly backend: StoreBackendInfo;
88
+ private sql;
89
+ constructor(databaseUrl: string);
90
+ /**
91
+ * Bun's SQL client connects lazily, so constructing this store proves nothing about
92
+ * the database being there. Without an explicit probe, a wrong host or a down
93
+ * instance produced a server that started, answered /health with ok:true, and 500ed
94
+ * on the first API call.
95
+ *
96
+ * The error deliberately carries no URL: a Postgres URL is a credential, the driver's
97
+ * own messages sometimes echo it, and this string ends up in logs.
98
+ */
99
+ verifyConnectivity(): Promise<void>;
100
+ /**
101
+ * Give rows written before migration 0004 a real content revision id.
102
+ *
103
+ * The migration adds revision_id with DEFAULT '', which would make If-Match vacuous
104
+ * for legacy rows (every stale client matches the same empty string). This replaces
105
+ * the marker with a content sha, idempotently: new code always writes a full id, so
106
+ * the marker never reappears and the sweep costs one index scan on later opens.
107
+ */
108
+ private backfillLegacyRevisions;
109
+ close(): Promise<void>;
110
+ ensureBootstrapApiKey(token: string, principal?: Partial<ApiPrincipal>): Promise<void>;
111
+ authenticateApiKeyHash(hash: string): Promise<ApiPrincipal | null>;
112
+ /**
113
+ * Run a callback under an RLS tenant or worker context, on one pooled
114
+ * connection, for the duration of one transaction only.
115
+ *
116
+ * Migration 0003 arms RLS on skills_runs and skills_artifacts: a statement
117
+ * whose session has no `app.skills_org_id` and no `app.skills_claim_context`
118
+ * sees zero rows. SET LOCAL (the `true` third argument) confines the setting
119
+ * to this transaction, which is what keeps one pooled connection from
120
+ * carrying tenant A's context into tenant B's next request - a session-wide
121
+ * SET would be exactly the cross-tenant leak RLS exists to prevent.
122
+ */
123
+ private withContext;
124
+ createRun(input: CreateRunInput): Promise<ServerRunRecord>;
125
+ listRuns(principal: ApiPrincipal, limit: number): Promise<ServerRunRecord[]>;
126
+ getRun(principal: ApiPrincipal, runId: string): Promise<ServerRunRecord | null>;
127
+ claimNextRun(input: ClaimRunInput): Promise<ServerRunRecord | null>;
128
+ updateRun(runId: string, patch: Partial<Pick<ServerRunRecord, "status" | "outputType" | "outputPreview" | "errorCode" | "errorMessage" | "startedAt" | "completedAt">>): Promise<ServerRunRecord | null>;
129
+ /**
130
+ * Generation-fenced transition. Same semantics as the SQLite twin: the WHERE
131
+ * re-asserts lease_generation, and a stale worker gets StaleLeaseGenerationError
132
+ * instead of silently overwriting a cancelled or re-claimed run.
133
+ */
134
+ transitionRun(runId: string, patch: RunTransitionPatch, expectedGeneration: number): Promise<ServerRunRecord | null>;
135
+ /**
136
+ * Append a log line, retrying when another writer took the sequence number first.
137
+ *
138
+ * This was `SELECT MAX(sequence)+1` and then a separate `INSERT`, with an await in
139
+ * between. Measured with five concurrent appendLog calls on one run: one succeeded and
140
+ * four threw `duplicate key value violates unique constraint`, which executeRun's catch
141
+ * turns into a failed run - a skill killed by its own logging.
142
+ *
143
+ * Folding the MAX into the INSERT helps but does not fix it: under READ COMMITTED each
144
+ * statement takes its own snapshot, so concurrent inserts still compute the same MAX
145
+ * (measured: 2 of 5 succeeded). SQLite has one writer and needs no retry; Postgres does,
146
+ * so the loop lives here rather than in shared code. Bounded, and only ever retried for
147
+ * a uniqueness conflict - any other error propagates on the first attempt.
148
+ */
149
+ appendLog(runId: string, orgId: string, level: ServerRunLog["level"], message: string): Promise<ServerRunLog>;
150
+ listLogs(principal: ApiPrincipal, runId: string): Promise<ServerRunLog[]>;
151
+ addArtifact(artifact: Omit<ServerArtifact, "createdAt">): Promise<ServerArtifact>;
152
+ listArtifacts(principal: ApiPrincipal, runId: string): Promise<ServerArtifact[]>;
153
+ getArtifact(principal: ApiPrincipal, runId: string, artifactId: string): Promise<ServerArtifact | null>;
154
+ publishSkill(input: PublishSkillInput): Promise<ServerSkillRecord>;
155
+ listSkills(principal: ApiPrincipal): Promise<ServerSkillRecord[]>;
156
+ getSkill(principal: ApiPrincipal, slug: string): Promise<ServerSkillRecord | null>;
157
+ updateSkill(principal: ApiPrincipal, slug: string, patch: UpdateSkillPatch, expectedRevisionId?: string): Promise<ServerSkillRecord | null>;
158
+ deleteSkill(principal: ApiPrincipal, slug: string, tombstoneWindowMs: number): Promise<ServerSkillRecord | null>;
159
+ purgeExpiredTombstones(principal: ApiPrincipal): Promise<ServerSkillRecord[]>;
160
+ getSkillBundle(principal: ApiPrincipal, sha256: string): Promise<ServerSkillBundle | null>;
161
+ pinSkill(principal: ApiPrincipal, slug: string, metadata?: Record<string, unknown>): Promise<ServerPin>;
162
+ unpinSkill(principal: ApiPrincipal, slug: string): Promise<boolean>;
163
+ listPins(principal: ApiPrincipal): Promise<ServerPin[]>;
164
+ listTags(principal: ApiPrincipal): Promise<string[]>;
165
+ listSkillsByTag(principal: ApiPrincipal, tag: string): Promise<ServerSkillRecord[]>;
166
+ listPinsByTag(principal: ApiPrincipal, tag: string): Promise<ServerPin[]>;
167
+ listPublishedSlugs(principal: ApiPrincipal): Promise<string[]>;
168
+ /** Drop a bundle no remaining skill in the org points at. See the SQLite twin. */
169
+ private collectOrphanBundle;
170
+ }