superacli 1.1.0 → 1.1.2

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 (261) hide show
  1. package/.beads/.br_history/issues.20260308_235202_180577215.jsonl +57 -0
  2. package/.beads/.br_history/issues.20260308_235202_387414163.jsonl +57 -0
  3. package/.beads/.br_history/issues.20260308_235202_564422794.jsonl +57 -0
  4. package/.beads/.br_history/issues.20260308_235202_742600597.jsonl +57 -0
  5. package/.beads/.br_history/issues.20260308_235208_133360069.jsonl +57 -0
  6. package/.beads/.br_history/issues.20260308_235505_473406307.jsonl +57 -0
  7. package/.beads/.br_history/issues.20260308_235505_662360489.jsonl +57 -0
  8. package/.beads/.br_history/issues.20260308_235505_843935624.jsonl +57 -0
  9. package/.beads/.br_history/issues.20260308_235506_044530221.jsonl +57 -0
  10. package/.beads/.br_history/issues.20260309_002618_115728731.jsonl +57 -0
  11. package/.beads/.br_history/issues.20260309_003748_878174586.jsonl +57 -0
  12. package/.beads/.br_history/issues.20260309_004057_868755623.jsonl +57 -0
  13. package/.beads/.br_history/issues.20260309_004058_512842163.jsonl +57 -0
  14. package/.beads/.br_history/issues.20260309_004058_994445226.jsonl +57 -0
  15. package/.beads/.br_history/issues.20260309_004059_475988596.jsonl +57 -0
  16. package/.beads/.br_history/issues.20260309_161902_566857851.jsonl +57 -0
  17. package/.beads/.br_history/issues.20260309_170512_277017739.jsonl +57 -0
  18. package/.beads/.br_history/issues.20260309_170512_477876921.jsonl +57 -0
  19. package/.beads/.br_history/issues.20260309_170512_664382701.jsonl +57 -0
  20. package/.beads/.br_history/issues.20260309_170512_859400333.jsonl +57 -0
  21. package/.beads/.br_history/issues.20260309_212326_082771164.jsonl +57 -0
  22. package/.beads/.br_history/issues.20260309_212326_245619716.jsonl +58 -0
  23. package/.beads/.br_history/issues.20260309_212326_403198317.jsonl +59 -0
  24. package/.beads/.br_history/issues.20260309_212332_539197678.jsonl +60 -0
  25. package/.beads/.br_history/issues.20260309_212332_731373599.jsonl +60 -0
  26. package/.beads/.br_history/issues.20260309_212332_928710953.jsonl +60 -0
  27. package/.beads/.br_history/issues.20260309_213021_341505240.jsonl +60 -0
  28. package/.beads/.br_history/issues.20260309_213022_023136934.jsonl +60 -0
  29. package/.beads/.br_history/issues.20260309_213022_400050719.jsonl +60 -0
  30. package/.beads/issues.jsonl +20 -17
  31. package/README.md +1 -1
  32. package/__tests__/adapter-schema.test.js +3 -0
  33. package/__tests__/aws-plugin.test.js +84 -0
  34. package/__tests__/az-plugin.test.js +84 -0
  35. package/__tests__/builtin-adapter.test.js +29 -0
  36. package/__tests__/cline-plugin.test.js +109 -0
  37. package/__tests__/cline-skill.test.js +49 -0
  38. package/__tests__/docker-plugin.test.js +3 -1
  39. package/__tests__/eza-plugin.test.js +81 -0
  40. package/__tests__/gcloud-plugin.test.js +86 -0
  41. package/__tests__/gh-plugin.test.js +86 -0
  42. package/__tests__/helm-plugin.test.js +81 -0
  43. package/__tests__/http-adapter.test.js +118 -0
  44. package/__tests__/just-plugin.test.js +82 -0
  45. package/__tests__/kubectl-plugin.test.js +83 -0
  46. package/__tests__/linear-plugin.test.js +81 -0
  47. package/__tests__/mcp-adapter.test.js +187 -0
  48. package/__tests__/nextest-plugin.test.js +82 -0
  49. package/__tests__/npm-plugin.test.js +81 -0
  50. package/__tests__/nullclaw-plugin.test.js +157 -0
  51. package/__tests__/openapi-adapter.test.js +199 -0
  52. package/__tests__/plugin-agency-agents.test.js +6 -6
  53. package/__tests__/plugin-nullclaw.test.js +78 -0
  54. package/__tests__/plugin-visual-explainer.test.js +62 -0
  55. package/__tests__/plugins-manager.test.js +59 -10
  56. package/__tests__/pnpm-plugin.test.js +81 -0
  57. package/__tests__/poetry-plugin.test.js +83 -0
  58. package/__tests__/process-adapter.test.js +124 -90
  59. package/__tests__/pulumi-plugin.test.js +81 -0
  60. package/__tests__/railway-plugin.test.js +84 -0
  61. package/__tests__/server-app.test.js +67 -0
  62. package/__tests__/server-config-service.test.js +79 -0
  63. package/__tests__/server-routes-ask.test.js +89 -0
  64. package/__tests__/server-routes-commands.test.js +55 -0
  65. package/__tests__/server-routes-config.test.js +87 -0
  66. package/__tests__/server-routes-jobs.test.js +53 -0
  67. package/__tests__/server-routes-misc.test.js +112 -0
  68. package/__tests__/server-storage-adapter.test.js +40 -0
  69. package/__tests__/server-storage-file.test.js +73 -0
  70. package/__tests__/server-storage-mongo.test.js +74 -0
  71. package/__tests__/shell-adapter.test.js +81 -22
  72. package/__tests__/stripe-plugin.test.js +3 -1
  73. package/__tests__/supabase-plugin.test.js +86 -0
  74. package/__tests__/terraform-plugin.test.js +83 -0
  75. package/__tests__/uv-plugin.test.js +81 -0
  76. package/__tests__/vercel-plugin.test.js +81 -0
  77. package/__tests__/watchexec-plugin.test.js +80 -0
  78. package/cli/adapter-schema.js +5 -0
  79. package/cli/adapters/process.js +53 -2
  80. package/cli/plugin-install-guidance.js +320 -0
  81. package/cli/plugins-manager.js +272 -212
  82. package/cli/skills.js +16 -5
  83. package/cli/supercli.js +26 -2
  84. package/docs/plugins.md +2 -0
  85. package/docs/skills/cline-non-interactive/SKILL.md +59 -0
  86. package/docs/skills-catalog.md +35 -0
  87. package/docs/visual-overview.md +21 -0
  88. package/jest.config.js +4 -1
  89. package/package.json +4 -3
  90. package/plugins/agency-agents/plugin.json +5 -0
  91. package/{cli/plugin-agency-agents.js → plugins/agency-agents/scripts/post-install.js} +13 -3
  92. package/plugins/aws/README.md +46 -0
  93. package/plugins/aws/plugin.json +42 -0
  94. package/plugins/az/README.md +46 -0
  95. package/plugins/az/plugin.json +42 -0
  96. package/plugins/clickup/plugin.json +38 -0
  97. package/plugins/clickup/scripts/post-install.js +107 -0
  98. package/plugins/clickup/scripts/post-uninstall.js +30 -0
  99. package/plugins/cline/README.md +48 -0
  100. package/plugins/cline/plugin.json +92 -0
  101. package/plugins/eza/README.md +40 -0
  102. package/plugins/eza/plugin.json +42 -0
  103. package/plugins/gcloud/README.md +46 -0
  104. package/plugins/gcloud/plugin.json +42 -0
  105. package/plugins/gh/README.md +46 -0
  106. package/plugins/gh/plugin.json +43 -0
  107. package/plugins/helm/README.md +42 -0
  108. package/plugins/helm/plugin.json +42 -0
  109. package/plugins/just/README.md +42 -0
  110. package/plugins/just/plugin.json +42 -0
  111. package/plugins/kubectl/README.md +46 -0
  112. package/plugins/kubectl/plugin.json +42 -0
  113. package/plugins/linear/README.md +60 -0
  114. package/plugins/linear/plugin.json +42 -0
  115. package/plugins/nextest/README.md +42 -0
  116. package/plugins/nextest/plugin.json +42 -0
  117. package/plugins/npm/README.md +46 -0
  118. package/plugins/npm/plugin.json +42 -0
  119. package/plugins/nullclaw/README.md +45 -0
  120. package/plugins/nullclaw/plugin.json +64 -0
  121. package/plugins/nullclaw/scripts/post-install.js +189 -0
  122. package/plugins/nullclaw/scripts/post-uninstall.js +25 -0
  123. package/plugins/openfang/plugin.json +37 -0
  124. package/plugins/openfang/scripts/post-install.js +163 -0
  125. package/plugins/openfang/scripts/post-uninstall.js +30 -0
  126. package/plugins/plugins.json +234 -0
  127. package/plugins/pnpm/README.md +46 -0
  128. package/plugins/pnpm/plugin.json +42 -0
  129. package/plugins/poetry/README.md +46 -0
  130. package/plugins/poetry/plugin.json +42 -0
  131. package/plugins/pulumi/README.md +46 -0
  132. package/plugins/pulumi/plugin.json +42 -0
  133. package/plugins/railway/README.md +58 -0
  134. package/plugins/railway/plugin.json +43 -0
  135. package/plugins/supabase/README.md +55 -0
  136. package/plugins/supabase/plugin.json +42 -0
  137. package/plugins/superpowers/plugin.json +22 -0
  138. package/plugins/superpowers/scripts/post-install.js +124 -0
  139. package/plugins/superpowers/scripts/post-uninstall.js +30 -0
  140. package/plugins/terraform/README.md +46 -0
  141. package/plugins/terraform/plugin.json +42 -0
  142. package/plugins/uv/README.md +46 -0
  143. package/plugins/uv/plugin.json +42 -0
  144. package/plugins/vercel/README.md +47 -0
  145. package/plugins/vercel/plugin.json +42 -0
  146. package/plugins/visual-explainer/plugin.json +15 -0
  147. package/plugins/visual-explainer/scripts/post-install.js +111 -0
  148. package/plugins/watchexec/README.md +40 -0
  149. package/plugins/watchexec/plugin.json +42 -0
  150. package/tests/test-aws-smoke.sh +56 -0
  151. package/tests/test-az-smoke.sh +56 -0
  152. package/tests/test-cline-smoke.sh +37 -0
  153. package/tests/test-eza-smoke.sh +33 -0
  154. package/tests/test-gcloud-smoke.sh +56 -0
  155. package/tests/test-gh-smoke.sh +56 -0
  156. package/tests/test-helm-smoke.sh +33 -0
  157. package/tests/test-just-smoke.sh +40 -0
  158. package/tests/test-kubectl-smoke.sh +37 -0
  159. package/tests/test-linear-smoke.sh +97 -0
  160. package/tests/test-nextest-smoke.sh +33 -0
  161. package/tests/test-npm-smoke.sh +32 -0
  162. package/tests/test-nullclaw-smoke.sh +51 -0
  163. package/tests/test-plugins-registry.js +110 -0
  164. package/tests/test-pnpm-smoke.sh +33 -0
  165. package/tests/test-poetry-smoke.sh +33 -0
  166. package/tests/test-pulumi-smoke.sh +33 -0
  167. package/tests/test-railway-smoke.sh +95 -0
  168. package/tests/test-supabase-smoke.sh +95 -0
  169. package/tests/test-terraform-smoke.sh +33 -0
  170. package/tests/test-uv-smoke.sh +33 -0
  171. package/tests/test-vercel-smoke.sh +55 -0
  172. package/tests/test-watchexec-smoke.sh +33 -0
  173. package/.beads/.br_history/issues.20260308_180927_477542428.jsonl +0 -12
  174. package/.beads/.br_history/issues.20260308_181032_020230108.jsonl +0 -12
  175. package/.beads/.br_history/issues.20260308_181032_180539413.jsonl +0 -12
  176. package/.beads/.br_history/issues.20260308_181032_372621506.jsonl +0 -12
  177. package/.beads/.br_history/issues.20260308_181032_565142225.jsonl +0 -12
  178. package/.beads/.br_history/issues.20260308_181311_336346464.jsonl +0 -12
  179. package/.beads/.br_history/issues.20260308_181444_039234498.jsonl +0 -13
  180. package/.beads/.br_history/issues.20260308_181503_794764403.jsonl +0 -13
  181. package/.beads/.br_history/issues.20260308_181503_950163105.jsonl +0 -13
  182. package/.beads/.br_history/issues.20260308_192031_852553505.jsonl +0 -13
  183. package/.beads/.br_history/issues.20260308_193552_846920518.jsonl +0 -14
  184. package/.beads/.br_history/issues.20260308_194054_394884833.jsonl +0 -14
  185. package/.beads/.br_history/issues.20260308_194209_440472460.jsonl +0 -15
  186. package/.beads/.br_history/issues.20260308_195319_099391899.jsonl +0 -15
  187. package/.beads/.br_history/issues.20260308_195324_176987204.jsonl +0 -16
  188. package/.beads/.br_history/issues.20260308_195436_929114019.jsonl +0 -16
  189. package/.beads/.br_history/issues.20260308_195437_055808298.jsonl +0 -17
  190. package/.beads/.br_history/issues.20260308_195437_304297399.jsonl +0 -18
  191. package/.beads/.br_history/issues.20260308_195437_556007332.jsonl +0 -19
  192. package/.beads/.br_history/issues.20260308_195444_987209695.jsonl +0 -20
  193. package/.beads/.br_history/issues.20260308_195445_133350193.jsonl +0 -20
  194. package/.beads/.br_history/issues.20260308_195445_400185615.jsonl +0 -20
  195. package/.beads/.br_history/issues.20260308_195445_689886334.jsonl +0 -20
  196. package/.beads/.br_history/issues.20260308_195445_949947727.jsonl +0 -20
  197. package/.beads/.br_history/issues.20260308_195745_580473297.jsonl +0 -20
  198. package/.beads/.br_history/issues.20260308_195745_725920532.jsonl +0 -20
  199. package/.beads/.br_history/issues.20260308_195745_968227911.jsonl +0 -20
  200. package/.beads/.br_history/issues.20260308_195746_224276322.jsonl +0 -20
  201. package/.beads/.br_history/issues.20260308_200018_386890807.jsonl +0 -20
  202. package/ref-btcbot/.env.example +0 -19
  203. package/ref-btcbot/README.md +0 -3
  204. package/ref-btcbot/docs/bot.md +0 -72
  205. package/ref-btcbot/docs/skills/btcbot.backtest/SKILL.md +0 -70
  206. package/ref-btcbot/docs/skills/btcbot.config/SKILL.md +0 -79
  207. package/ref-btcbot/docs/skills/btcbot.orders/SKILL.md +0 -60
  208. package/ref-btcbot/docs/skills/btcbot.positions/SKILL.md +0 -54
  209. package/ref-btcbot/docs/skills/btcbot.risk/SKILL.md +0 -69
  210. package/ref-btcbot/docs/skills/btcbot.run-loop/SKILL.md +0 -63
  211. package/ref-btcbot/docs/skills/btcbot.run-once/SKILL.md +0 -63
  212. package/ref-btcbot/docs/skills/btcbot.status/SKILL.md +0 -59
  213. package/ref-btcbot/examples/sample-candles.json +0 -52
  214. package/ref-btcbot/package.json +0 -18
  215. package/ref-btcbot/plugin/plugin.json +0 -146
  216. package/ref-btcbot/src/cli.js +0 -104
  217. package/ref-btcbot/src/config.js +0 -80
  218. package/ref-btcbot/src/core/bot-runner.js +0 -78
  219. package/ref-btcbot/src/core/exchange-factory.js +0 -19
  220. package/ref-btcbot/src/core/live-exchange.js +0 -12
  221. package/ref-btcbot/src/core/paper-exchange.js +0 -82
  222. package/ref-btcbot/src/core/risk-engine.js +0 -42
  223. package/ref-btcbot/src/core/state-repository.js +0 -47
  224. package/ref-btcbot/src/services/backtest-service.js +0 -44
  225. package/ref-btcbot/src/services/market-data.js +0 -32
  226. package/ref-btcbot/src/storage/json-store.js +0 -45
  227. package/ref-btcbot/src/strategy/hedge-strategy.js +0 -65
  228. package/ref-btcbot/src/strategy/indicators.js +0 -56
  229. package/ref-btcbot/src/web/api.js +0 -50
  230. package/ref-btcbot/src/web/app.js +0 -51
  231. package/ref-btcbot/src/web/index.html +0 -70
  232. package/ref-btcbot/src/web/server.js +0 -33
  233. /package/.beads/.br_history/{issues.20260308_180927_477542428.jsonl.meta.json → issues.20260308_235202_180577215.jsonl.meta.json} +0 -0
  234. /package/.beads/.br_history/{issues.20260308_181032_020230108.jsonl.meta.json → issues.20260308_235202_387414163.jsonl.meta.json} +0 -0
  235. /package/.beads/.br_history/{issues.20260308_181032_180539413.jsonl.meta.json → issues.20260308_235202_564422794.jsonl.meta.json} +0 -0
  236. /package/.beads/.br_history/{issues.20260308_181032_372621506.jsonl.meta.json → issues.20260308_235202_742600597.jsonl.meta.json} +0 -0
  237. /package/.beads/.br_history/{issues.20260308_181032_565142225.jsonl.meta.json → issues.20260308_235208_133360069.jsonl.meta.json} +0 -0
  238. /package/.beads/.br_history/{issues.20260308_181311_336346464.jsonl.meta.json → issues.20260308_235505_473406307.jsonl.meta.json} +0 -0
  239. /package/.beads/.br_history/{issues.20260308_181444_039234498.jsonl.meta.json → issues.20260308_235505_662360489.jsonl.meta.json} +0 -0
  240. /package/.beads/.br_history/{issues.20260308_181503_794764403.jsonl.meta.json → issues.20260308_235505_843935624.jsonl.meta.json} +0 -0
  241. /package/.beads/.br_history/{issues.20260308_181503_950163105.jsonl.meta.json → issues.20260308_235506_044530221.jsonl.meta.json} +0 -0
  242. /package/.beads/.br_history/{issues.20260308_192031_852553505.jsonl.meta.json → issues.20260309_002618_115728731.jsonl.meta.json} +0 -0
  243. /package/.beads/.br_history/{issues.20260308_193552_846920518.jsonl.meta.json → issues.20260309_003748_878174586.jsonl.meta.json} +0 -0
  244. /package/.beads/.br_history/{issues.20260308_194054_394884833.jsonl.meta.json → issues.20260309_004057_868755623.jsonl.meta.json} +0 -0
  245. /package/.beads/.br_history/{issues.20260308_194209_440472460.jsonl.meta.json → issues.20260309_004058_512842163.jsonl.meta.json} +0 -0
  246. /package/.beads/.br_history/{issues.20260308_195319_099391899.jsonl.meta.json → issues.20260309_004058_994445226.jsonl.meta.json} +0 -0
  247. /package/.beads/.br_history/{issues.20260308_195324_176987204.jsonl.meta.json → issues.20260309_004059_475988596.jsonl.meta.json} +0 -0
  248. /package/.beads/.br_history/{issues.20260308_195436_929114019.jsonl.meta.json → issues.20260309_161902_566857851.jsonl.meta.json} +0 -0
  249. /package/.beads/.br_history/{issues.20260308_195437_055808298.jsonl.meta.json → issues.20260309_170512_277017739.jsonl.meta.json} +0 -0
  250. /package/.beads/.br_history/{issues.20260308_195437_304297399.jsonl.meta.json → issues.20260309_170512_477876921.jsonl.meta.json} +0 -0
  251. /package/.beads/.br_history/{issues.20260308_195437_556007332.jsonl.meta.json → issues.20260309_170512_664382701.jsonl.meta.json} +0 -0
  252. /package/.beads/.br_history/{issues.20260308_195444_987209695.jsonl.meta.json → issues.20260309_170512_859400333.jsonl.meta.json} +0 -0
  253. /package/.beads/.br_history/{issues.20260308_195445_133350193.jsonl.meta.json → issues.20260309_212326_082771164.jsonl.meta.json} +0 -0
  254. /package/.beads/.br_history/{issues.20260308_195445_400185615.jsonl.meta.json → issues.20260309_212326_245619716.jsonl.meta.json} +0 -0
  255. /package/.beads/.br_history/{issues.20260308_195445_689886334.jsonl.meta.json → issues.20260309_212326_403198317.jsonl.meta.json} +0 -0
  256. /package/.beads/.br_history/{issues.20260308_195445_949947727.jsonl.meta.json → issues.20260309_212332_539197678.jsonl.meta.json} +0 -0
  257. /package/.beads/.br_history/{issues.20260308_195745_580473297.jsonl.meta.json → issues.20260309_212332_731373599.jsonl.meta.json} +0 -0
  258. /package/.beads/.br_history/{issues.20260308_195745_725920532.jsonl.meta.json → issues.20260309_212332_928710953.jsonl.meta.json} +0 -0
  259. /package/.beads/.br_history/{issues.20260308_195745_968227911.jsonl.meta.json → issues.20260309_213021_341505240.jsonl.meta.json} +0 -0
  260. /package/.beads/.br_history/{issues.20260308_195746_224276322.jsonl.meta.json → issues.20260309_213022_023136934.jsonl.meta.json} +0 -0
  261. /package/.beads/.br_history/{issues.20260308_200018_386890807.jsonl.meta.json → issues.20260309_213022_400050719.jsonl.meta.json} +0 -0
@@ -1,20 +0,0 @@
1
- {"id":"dcli-1c8","title":"Analyze uncovered code areas","description":"Identify modules with low coverage that are good candidates for adding tests","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-08T17:51:49.234895050Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:44.173927789Z","closed_at":"2026-03-08T18:06:44.173489704Z","close_reason":"Analyzed: skills.js has lowest coverage (48% -> 98% now covered)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1c8","depends_on_id":"dcli-2oo","type":"blocks","created_at":"2026-03-08T17:52:29.085976789Z","created_by":"jarancibia"}]}
2
- {"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T19:53:24.145265102Z","source_repo":".","compaction_level":0,"original_size":0}
3
- {"id":"dcli-1jc","title":"Add unit tests to reach +10% coverage","description":"Add unit tests for uncovered modules to increase coverage by 10%","status":"closed","priority":4,"issue_type":"task","created_at":"2026-03-08T17:51:52.761119803Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:48.819643678Z","closed_at":"2026-03-08T18:06:48.819350528Z","close_reason":"Added 13 new tests for skills.js - lines coverage: 48% -> 98%","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1jc","depends_on_id":"dcli-1c8","type":"blocks","created_at":"2026-03-08T17:52:29.252402853Z","created_by":"jarancibia"}]}
4
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.761962659Z","closed_at":"2026-03-08T18:15:03.761653188Z","close_reason":"Hardened process adapter with preflight dependency checks, richer flag coercion, and cwd/env support.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1wg","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.630667298Z","created_by":"jarancibia"}]}
5
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.129812845Z","closed_at":"2026-03-08T18:10:32.129376399Z","close_reason":"Added shell adapter with unsafe true gate, timeout handling, and structured output behavior.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1x0","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.273366521Z","created_by":"jarancibia"}]}
6
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.920467044Z","closed_at":"2026-03-08T18:15:03.920079895Z","close_reason":"Expanded plugins doctor with aggregate status, adapter summaries, and policy checks.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1z3","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.812806436Z","created_by":"jarancibia"}]}
7
- {"id":"dcli-2oo","title":"Run baseline coverage test","description":"Run jest --coverage to establish current baseline coverage percentage","status":"closed","priority":2,"issue_type":"chore","created_at":"2026-03-08T17:51:45.159220774Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:34.179222044Z","closed_at":"2026-03-08T18:03:34.178923847Z","close_reason":"Baseline coverage: 63.82% lines, 61.96% statements","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2oo","depends_on_id":"dcli-3pk","type":"blocks","created_at":"2026-03-08T17:52:18.741871912Z","created_by":"jarancibia"}]}
8
- {"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:44.939712222Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia"}]}
9
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:31.987849029Z","closed_at":"2026-03-08T18:10:31.987315031Z","close_reason":"Implemented adapter schema validator with shared common checks and per-adapter required fields.","source_repo":".","compaction_level":0,"original_size":0}
10
- {"id":"dcli-35z","title":"Implement executor.js unit tests","description":"Write comprehensive unit tests for cli/executor.js to increase total project coverage by ~8%","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:35:52.819633671Z","closed_at":"2026-03-08T19:35:52.819299524Z","close_reason":"Implemented 43 unit tests for executor.js covering single commands, workflows, template replacement, and remote fetching. Total project coverage increased from 30.48% to 38.55% (+8.07%).","source_repo":".","compaction_level":0,"original_size":0}
11
- {"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.084662894Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia"}]}
12
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.331742349Z","closed_at":"2026-03-08T18:10:32.331023678Z","close_reason":"Enforced non-interactive policy through adapter schema validation and executor preflight.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3he","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.453629482Z","created_by":"jarancibia"}]}
13
- {"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
14
- {"id":"dcli-3pk","title":"Wait 10 min for initial test bootstrap","description":"Wait 10 minutes for other agent to finish bootstrapping jest and adding initial 10% coverage","status":"closed","priority":1,"issue_type":"chore","created_at":"2026-03-08T17:51:40.231952222Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:17.595327435Z","closed_at":"2026-03-08T18:03:17.595010820Z","close_reason":"Completed 10 minute wait","source_repo":".","compaction_level":0,"original_size":0}
15
- {"id":"dcli-3vw","title":"Verify coverage increase","description":"Run jest --coverage to verify the 10% increase was achieved","status":"closed","priority":4,"issue_type":"chore","created_at":"2026-03-08T17:51:58.368870813Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:52.921522667Z","closed_at":"2026-03-08T18:06:52.921150881Z","close_reason":"Coverage: Lines 63.82% -> 98.58% (+34.76%), Stmts 61.96% -> 93.25% (+31.29%), Branches 55.97% -> 81.13% (+25.16%), Funcs 83.33% -> 100% (+16.67%)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3vw","depends_on_id":"dcli-1jc","type":"blocks","created_at":"2026-03-08T17:52:29.427057528Z","created_by":"jarancibia"}]}
16
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:09:27.430656982Z","closed_at":"2026-03-08T18:09:27.430330695Z","close_reason":"Implemented gwc plugin passthrough, doctor/install guidance, docs, and tests","source_repo":".","compaction_level":0,"original_size":0}
17
- {"id":"dcli-5nb","title":"Add Jest unit coverage for adapter validation and shell adapter","description":"Add tests covering validation matrix and shell adapter guardrails.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.513527552Z","closed_at":"2026-03-08T18:10:32.513061779Z","close_reason":"Added Jest unit tests for adapter schema and shell adapter behaviors.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-5nb","depends_on_id":"dcli-1x0","type":"blocks","created_at":"2026-03-08T18:08:31.650601322Z","created_by":"jarancibia"},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia"}]}
18
- {"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.589457425Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia"},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia"}]}
19
- {"id":"dcli-u99","title":"Fix 0% coverage report in watch mode","description":"Investigate and fix why Jest watch mode shows 0% coverage even when tests pass","status":"closed","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:14:44.003122825Z","closed_at":"2026-03-08T18:14:44.002681908Z","close_reason":"Fixed 0% coverage by setting rootDir, using v8 coverageProvider, and improving collectCoverageFrom patterns in jest.config.js","source_repo":".","compaction_level":0,"original_size":0}
20
- {"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:36.900938772Z","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,20 +0,0 @@
1
- {"id":"dcli-1c8","title":"Analyze uncovered code areas","description":"Identify modules with low coverage that are good candidates for adding tests","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-08T17:51:49.234895050Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:44.173927789Z","closed_at":"2026-03-08T18:06:44.173489704Z","close_reason":"Analyzed: skills.js has lowest coverage (48% -> 98% now covered)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1c8","depends_on_id":"dcli-2oo","type":"blocks","created_at":"2026-03-08T17:52:29.085976789Z","created_by":"jarancibia"}]}
2
- {"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T19:53:24.145265102Z","source_repo":".","compaction_level":0,"original_size":0}
3
- {"id":"dcli-1jc","title":"Add unit tests to reach +10% coverage","description":"Add unit tests for uncovered modules to increase coverage by 10%","status":"closed","priority":4,"issue_type":"task","created_at":"2026-03-08T17:51:52.761119803Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:48.819643678Z","closed_at":"2026-03-08T18:06:48.819350528Z","close_reason":"Added 13 new tests for skills.js - lines coverage: 48% -> 98%","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1jc","depends_on_id":"dcli-1c8","type":"blocks","created_at":"2026-03-08T17:52:29.252402853Z","created_by":"jarancibia"}]}
4
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.761962659Z","closed_at":"2026-03-08T18:15:03.761653188Z","close_reason":"Hardened process adapter with preflight dependency checks, richer flag coercion, and cwd/env support.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1wg","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.630667298Z","created_by":"jarancibia"}]}
5
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.129812845Z","closed_at":"2026-03-08T18:10:32.129376399Z","close_reason":"Added shell adapter with unsafe true gate, timeout handling, and structured output behavior.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1x0","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.273366521Z","created_by":"jarancibia"}]}
6
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.920467044Z","closed_at":"2026-03-08T18:15:03.920079895Z","close_reason":"Expanded plugins doctor with aggregate status, adapter summaries, and policy checks.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1z3","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.812806436Z","created_by":"jarancibia"}]}
7
- {"id":"dcli-2oo","title":"Run baseline coverage test","description":"Run jest --coverage to establish current baseline coverage percentage","status":"closed","priority":2,"issue_type":"chore","created_at":"2026-03-08T17:51:45.159220774Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:34.179222044Z","closed_at":"2026-03-08T18:03:34.178923847Z","close_reason":"Baseline coverage: 63.82% lines, 61.96% statements","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2oo","depends_on_id":"dcli-3pk","type":"blocks","created_at":"2026-03-08T17:52:18.741871912Z","created_by":"jarancibia"}]}
8
- {"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:44.939712222Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia"}]}
9
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:31.987849029Z","closed_at":"2026-03-08T18:10:31.987315031Z","close_reason":"Implemented adapter schema validator with shared common checks and per-adapter required fields.","source_repo":".","compaction_level":0,"original_size":0}
10
- {"id":"dcli-35z","title":"Implement executor.js unit tests","description":"Write comprehensive unit tests for cli/executor.js to increase total project coverage by ~8%","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:35:52.819633671Z","closed_at":"2026-03-08T19:35:52.819299524Z","close_reason":"Implemented 43 unit tests for executor.js covering single commands, workflows, template replacement, and remote fetching. Total project coverage increased from 30.48% to 38.55% (+8.07%).","source_repo":".","compaction_level":0,"original_size":0}
11
- {"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.084662894Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia"}]}
12
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.331742349Z","closed_at":"2026-03-08T18:10:32.331023678Z","close_reason":"Enforced non-interactive policy through adapter schema validation and executor preflight.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3he","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.453629482Z","created_by":"jarancibia"}]}
13
- {"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
14
- {"id":"dcli-3pk","title":"Wait 10 min for initial test bootstrap","description":"Wait 10 minutes for other agent to finish bootstrapping jest and adding initial 10% coverage","status":"closed","priority":1,"issue_type":"chore","created_at":"2026-03-08T17:51:40.231952222Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:17.595327435Z","closed_at":"2026-03-08T18:03:17.595010820Z","close_reason":"Completed 10 minute wait","source_repo":".","compaction_level":0,"original_size":0}
15
- {"id":"dcli-3vw","title":"Verify coverage increase","description":"Run jest --coverage to verify the 10% increase was achieved","status":"closed","priority":4,"issue_type":"chore","created_at":"2026-03-08T17:51:58.368870813Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:52.921522667Z","closed_at":"2026-03-08T18:06:52.921150881Z","close_reason":"Coverage: Lines 63.82% -> 98.58% (+34.76%), Stmts 61.96% -> 93.25% (+31.29%), Branches 55.97% -> 81.13% (+25.16%), Funcs 83.33% -> 100% (+16.67%)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3vw","depends_on_id":"dcli-1jc","type":"blocks","created_at":"2026-03-08T17:52:29.427057528Z","created_by":"jarancibia"}]}
16
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:09:27.430656982Z","closed_at":"2026-03-08T18:09:27.430330695Z","close_reason":"Implemented gwc plugin passthrough, doctor/install guidance, docs, and tests","source_repo":".","compaction_level":0,"original_size":0}
17
- {"id":"dcli-5nb","title":"Add Jest unit coverage for adapter validation and shell adapter","description":"Add tests covering validation matrix and shell adapter guardrails.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.513527552Z","closed_at":"2026-03-08T18:10:32.513061779Z","close_reason":"Added Jest unit tests for adapter schema and shell adapter behaviors.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-5nb","depends_on_id":"dcli-1x0","type":"blocks","created_at":"2026-03-08T18:08:31.650601322Z","created_by":"jarancibia"},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia"}]}
18
- {"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.589457425Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia"},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia"}]}
19
- {"id":"dcli-u99","title":"Fix 0% coverage report in watch mode","description":"Investigate and fix why Jest watch mode shows 0% coverage even when tests pass","status":"closed","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:14:44.003122825Z","closed_at":"2026-03-08T18:14:44.002681908Z","close_reason":"Fixed 0% coverage by setting rootDir, using v8 coverageProvider, and improving collectCoverageFrom patterns in jest.config.js","source_repo":".","compaction_level":0,"original_size":0}
20
- {"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"in_progress","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.878493691Z","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,20 +0,0 @@
1
- {"id":"dcli-1c8","title":"Analyze uncovered code areas","description":"Identify modules with low coverage that are good candidates for adding tests","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-08T17:51:49.234895050Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:44.173927789Z","closed_at":"2026-03-08T18:06:44.173489704Z","close_reason":"Analyzed: skills.js has lowest coverage (48% -> 98% now covered)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1c8","depends_on_id":"dcli-2oo","type":"blocks","created_at":"2026-03-08T17:52:29.085976789Z","created_by":"jarancibia"}]}
2
- {"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T19:53:24.145265102Z","source_repo":".","compaction_level":0,"original_size":0}
3
- {"id":"dcli-1jc","title":"Add unit tests to reach +10% coverage","description":"Add unit tests for uncovered modules to increase coverage by 10%","status":"closed","priority":4,"issue_type":"task","created_at":"2026-03-08T17:51:52.761119803Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:48.819643678Z","closed_at":"2026-03-08T18:06:48.819350528Z","close_reason":"Added 13 new tests for skills.js - lines coverage: 48% -> 98%","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1jc","depends_on_id":"dcli-1c8","type":"blocks","created_at":"2026-03-08T17:52:29.252402853Z","created_by":"jarancibia"}]}
4
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.761962659Z","closed_at":"2026-03-08T18:15:03.761653188Z","close_reason":"Hardened process adapter with preflight dependency checks, richer flag coercion, and cwd/env support.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1wg","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.630667298Z","created_by":"jarancibia"}]}
5
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.129812845Z","closed_at":"2026-03-08T18:10:32.129376399Z","close_reason":"Added shell adapter with unsafe true gate, timeout handling, and structured output behavior.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1x0","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.273366521Z","created_by":"jarancibia"}]}
6
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.920467044Z","closed_at":"2026-03-08T18:15:03.920079895Z","close_reason":"Expanded plugins doctor with aggregate status, adapter summaries, and policy checks.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1z3","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.812806436Z","created_by":"jarancibia"}]}
7
- {"id":"dcli-2oo","title":"Run baseline coverage test","description":"Run jest --coverage to establish current baseline coverage percentage","status":"closed","priority":2,"issue_type":"chore","created_at":"2026-03-08T17:51:45.159220774Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:34.179222044Z","closed_at":"2026-03-08T18:03:34.178923847Z","close_reason":"Baseline coverage: 63.82% lines, 61.96% statements","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2oo","depends_on_id":"dcli-3pk","type":"blocks","created_at":"2026-03-08T17:52:18.741871912Z","created_by":"jarancibia"}]}
8
- {"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:44.939712222Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia"}]}
9
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:31.987849029Z","closed_at":"2026-03-08T18:10:31.987315031Z","close_reason":"Implemented adapter schema validator with shared common checks and per-adapter required fields.","source_repo":".","compaction_level":0,"original_size":0}
10
- {"id":"dcli-35z","title":"Implement executor.js unit tests","description":"Write comprehensive unit tests for cli/executor.js to increase total project coverage by ~8%","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:35:52.819633671Z","closed_at":"2026-03-08T19:35:52.819299524Z","close_reason":"Implemented 43 unit tests for executor.js covering single commands, workflows, template replacement, and remote fetching. Total project coverage increased from 30.48% to 38.55% (+8.07%).","source_repo":".","compaction_level":0,"original_size":0}
11
- {"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.084662894Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia"}]}
12
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.331742349Z","closed_at":"2026-03-08T18:10:32.331023678Z","close_reason":"Enforced non-interactive policy through adapter schema validation and executor preflight.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3he","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.453629482Z","created_by":"jarancibia"}]}
13
- {"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
14
- {"id":"dcli-3pk","title":"Wait 10 min for initial test bootstrap","description":"Wait 10 minutes for other agent to finish bootstrapping jest and adding initial 10% coverage","status":"closed","priority":1,"issue_type":"chore","created_at":"2026-03-08T17:51:40.231952222Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:17.595327435Z","closed_at":"2026-03-08T18:03:17.595010820Z","close_reason":"Completed 10 minute wait","source_repo":".","compaction_level":0,"original_size":0}
15
- {"id":"dcli-3vw","title":"Verify coverage increase","description":"Run jest --coverage to verify the 10% increase was achieved","status":"closed","priority":4,"issue_type":"chore","created_at":"2026-03-08T17:51:58.368870813Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:52.921522667Z","closed_at":"2026-03-08T18:06:52.921150881Z","close_reason":"Coverage: Lines 63.82% -> 98.58% (+34.76%), Stmts 61.96% -> 93.25% (+31.29%), Branches 55.97% -> 81.13% (+25.16%), Funcs 83.33% -> 100% (+16.67%)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3vw","depends_on_id":"dcli-1jc","type":"blocks","created_at":"2026-03-08T17:52:29.427057528Z","created_by":"jarancibia"}]}
16
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:09:27.430656982Z","closed_at":"2026-03-08T18:09:27.430330695Z","close_reason":"Implemented gwc plugin passthrough, doctor/install guidance, docs, and tests","source_repo":".","compaction_level":0,"original_size":0}
17
- {"id":"dcli-5nb","title":"Add Jest unit coverage for adapter validation and shell adapter","description":"Add tests covering validation matrix and shell adapter guardrails.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.513527552Z","closed_at":"2026-03-08T18:10:32.513061779Z","close_reason":"Added Jest unit tests for adapter schema and shell adapter behaviors.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-5nb","depends_on_id":"dcli-1x0","type":"blocks","created_at":"2026-03-08T18:08:31.650601322Z","created_by":"jarancibia"},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia"}]}
18
- {"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.589457425Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia"},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia"}]}
19
- {"id":"dcli-u99","title":"Fix 0% coverage report in watch mode","description":"Investigate and fix why Jest watch mode shows 0% coverage even when tests pass","status":"closed","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:14:44.003122825Z","closed_at":"2026-03-08T18:14:44.002681908Z","close_reason":"Fixed 0% coverage by setting rootDir, using v8 coverageProvider, and improving collectCoverageFrom patterns in jest.config.js","source_repo":".","compaction_level":0,"original_size":0}
20
- {"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,20 +0,0 @@
1
- {"id":"dcli-1c8","title":"Analyze uncovered code areas","description":"Identify modules with low coverage that are good candidates for adding tests","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-08T17:51:49.234895050Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:44.173927789Z","closed_at":"2026-03-08T18:06:44.173489704Z","close_reason":"Analyzed: skills.js has lowest coverage (48% -> 98% now covered)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1c8","depends_on_id":"dcli-2oo","type":"blocks","created_at":"2026-03-08T17:52:29.085976789Z","created_by":"jarancibia"}]}
2
- {"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T19:53:24.145265102Z","source_repo":".","compaction_level":0,"original_size":0}
3
- {"id":"dcli-1jc","title":"Add unit tests to reach +10% coverage","description":"Add unit tests for uncovered modules to increase coverage by 10%","status":"closed","priority":4,"issue_type":"task","created_at":"2026-03-08T17:51:52.761119803Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:48.819643678Z","closed_at":"2026-03-08T18:06:48.819350528Z","close_reason":"Added 13 new tests for skills.js - lines coverage: 48% -> 98%","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1jc","depends_on_id":"dcli-1c8","type":"blocks","created_at":"2026-03-08T17:52:29.252402853Z","created_by":"jarancibia"}]}
4
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.761962659Z","closed_at":"2026-03-08T18:15:03.761653188Z","close_reason":"Hardened process adapter with preflight dependency checks, richer flag coercion, and cwd/env support.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1wg","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.630667298Z","created_by":"jarancibia"}]}
5
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.129812845Z","closed_at":"2026-03-08T18:10:32.129376399Z","close_reason":"Added shell adapter with unsafe true gate, timeout handling, and structured output behavior.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1x0","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.273366521Z","created_by":"jarancibia"}]}
6
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.920467044Z","closed_at":"2026-03-08T18:15:03.920079895Z","close_reason":"Expanded plugins doctor with aggregate status, adapter summaries, and policy checks.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1z3","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.812806436Z","created_by":"jarancibia"}]}
7
- {"id":"dcli-2oo","title":"Run baseline coverage test","description":"Run jest --coverage to establish current baseline coverage percentage","status":"closed","priority":2,"issue_type":"chore","created_at":"2026-03-08T17:51:45.159220774Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:34.179222044Z","closed_at":"2026-03-08T18:03:34.178923847Z","close_reason":"Baseline coverage: 63.82% lines, 61.96% statements","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2oo","depends_on_id":"dcli-3pk","type":"blocks","created_at":"2026-03-08T17:52:18.741871912Z","created_by":"jarancibia"}]}
8
- {"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.687222705Z","closed_at":"2026-03-08T19:57:45.686641965Z","close_reason":"Extended skills command with providers list/add/remove/show, sync, search, and catalog listing mode.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia"}]}
9
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:31.987849029Z","closed_at":"2026-03-08T18:10:31.987315031Z","close_reason":"Implemented adapter schema validator with shared common checks and per-adapter required fields.","source_repo":".","compaction_level":0,"original_size":0}
10
- {"id":"dcli-35z","title":"Implement executor.js unit tests","description":"Write comprehensive unit tests for cli/executor.js to increase total project coverage by ~8%","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:35:52.819633671Z","closed_at":"2026-03-08T19:35:52.819299524Z","close_reason":"Implemented 43 unit tests for executor.js covering single commands, workflows, template replacement, and remote fetching. Total project coverage increased from 30.48% to 38.55% (+8.07%).","source_repo":".","compaction_level":0,"original_size":0}
11
- {"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.084662894Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia"}]}
12
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.331742349Z","closed_at":"2026-03-08T18:10:32.331023678Z","close_reason":"Enforced non-interactive policy through adapter schema validation and executor preflight.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3he","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.453629482Z","created_by":"jarancibia"}]}
13
- {"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
14
- {"id":"dcli-3pk","title":"Wait 10 min for initial test bootstrap","description":"Wait 10 minutes for other agent to finish bootstrapping jest and adding initial 10% coverage","status":"closed","priority":1,"issue_type":"chore","created_at":"2026-03-08T17:51:40.231952222Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:17.595327435Z","closed_at":"2026-03-08T18:03:17.595010820Z","close_reason":"Completed 10 minute wait","source_repo":".","compaction_level":0,"original_size":0}
15
- {"id":"dcli-3vw","title":"Verify coverage increase","description":"Run jest --coverage to verify the 10% increase was achieved","status":"closed","priority":4,"issue_type":"chore","created_at":"2026-03-08T17:51:58.368870813Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:52.921522667Z","closed_at":"2026-03-08T18:06:52.921150881Z","close_reason":"Coverage: Lines 63.82% -> 98.58% (+34.76%), Stmts 61.96% -> 93.25% (+31.29%), Branches 55.97% -> 81.13% (+25.16%), Funcs 83.33% -> 100% (+16.67%)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3vw","depends_on_id":"dcli-1jc","type":"blocks","created_at":"2026-03-08T17:52:29.427057528Z","created_by":"jarancibia"}]}
16
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:09:27.430656982Z","closed_at":"2026-03-08T18:09:27.430330695Z","close_reason":"Implemented gwc plugin passthrough, doctor/install guidance, docs, and tests","source_repo":".","compaction_level":0,"original_size":0}
17
- {"id":"dcli-5nb","title":"Add Jest unit coverage for adapter validation and shell adapter","description":"Add tests covering validation matrix and shell adapter guardrails.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.513527552Z","closed_at":"2026-03-08T18:10:32.513061779Z","close_reason":"Added Jest unit tests for adapter schema and shell adapter behaviors.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-5nb","depends_on_id":"dcli-1x0","type":"blocks","created_at":"2026-03-08T18:08:31.650601322Z","created_by":"jarancibia"},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia"}]}
18
- {"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.589457425Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia"},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia"}]}
19
- {"id":"dcli-u99","title":"Fix 0% coverage report in watch mode","description":"Investigate and fix why Jest watch mode shows 0% coverage even when tests pass","status":"closed","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:14:44.003122825Z","closed_at":"2026-03-08T18:14:44.002681908Z","close_reason":"Fixed 0% coverage by setting rootDir, using v8 coverageProvider, and improving collectCoverageFrom patterns in jest.config.js","source_repo":".","compaction_level":0,"original_size":0}
20
- {"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,20 +0,0 @@
1
- {"id":"dcli-1c8","title":"Analyze uncovered code areas","description":"Identify modules with low coverage that are good candidates for adding tests","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-08T17:51:49.234895050Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:44.173927789Z","closed_at":"2026-03-08T18:06:44.173489704Z","close_reason":"Analyzed: skills.js has lowest coverage (48% -> 98% now covered)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1c8","depends_on_id":"dcli-2oo","type":"blocks","created_at":"2026-03-08T17:52:29.085976789Z","created_by":"jarancibia"}]}
2
- {"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T19:53:24.145265102Z","source_repo":".","compaction_level":0,"original_size":0}
3
- {"id":"dcli-1jc","title":"Add unit tests to reach +10% coverage","description":"Add unit tests for uncovered modules to increase coverage by 10%","status":"closed","priority":4,"issue_type":"task","created_at":"2026-03-08T17:51:52.761119803Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:48.819643678Z","closed_at":"2026-03-08T18:06:48.819350528Z","close_reason":"Added 13 new tests for skills.js - lines coverage: 48% -> 98%","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1jc","depends_on_id":"dcli-1c8","type":"blocks","created_at":"2026-03-08T17:52:29.252402853Z","created_by":"jarancibia"}]}
4
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.761962659Z","closed_at":"2026-03-08T18:15:03.761653188Z","close_reason":"Hardened process adapter with preflight dependency checks, richer flag coercion, and cwd/env support.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1wg","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.630667298Z","created_by":"jarancibia"}]}
5
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.129812845Z","closed_at":"2026-03-08T18:10:32.129376399Z","close_reason":"Added shell adapter with unsafe true gate, timeout handling, and structured output behavior.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1x0","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.273366521Z","created_by":"jarancibia"}]}
6
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.920467044Z","closed_at":"2026-03-08T18:15:03.920079895Z","close_reason":"Expanded plugins doctor with aggregate status, adapter summaries, and policy checks.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1z3","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.812806436Z","created_by":"jarancibia"}]}
7
- {"id":"dcli-2oo","title":"Run baseline coverage test","description":"Run jest --coverage to establish current baseline coverage percentage","status":"closed","priority":2,"issue_type":"chore","created_at":"2026-03-08T17:51:45.159220774Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:34.179222044Z","closed_at":"2026-03-08T18:03:34.178923847Z","close_reason":"Baseline coverage: 63.82% lines, 61.96% statements","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2oo","depends_on_id":"dcli-3pk","type":"blocks","created_at":"2026-03-08T17:52:18.741871912Z","created_by":"jarancibia"}]}
8
- {"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.687222705Z","closed_at":"2026-03-08T19:57:45.686641965Z","close_reason":"Extended skills command with providers list/add/remove/show, sync, search, and catalog listing mode.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia"}]}
9
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:31.987849029Z","closed_at":"2026-03-08T18:10:31.987315031Z","close_reason":"Implemented adapter schema validator with shared common checks and per-adapter required fields.","source_repo":".","compaction_level":0,"original_size":0}
10
- {"id":"dcli-35z","title":"Implement executor.js unit tests","description":"Write comprehensive unit tests for cli/executor.js to increase total project coverage by ~8%","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:35:52.819633671Z","closed_at":"2026-03-08T19:35:52.819299524Z","close_reason":"Implemented 43 unit tests for executor.js covering single commands, workflows, template replacement, and remote fetching. Total project coverage increased from 30.48% to 38.55% (+8.07%).","source_repo":".","compaction_level":0,"original_size":0}
11
- {"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.911625440Z","closed_at":"2026-03-08T19:57:45.910759800Z","close_reason":"Implemented provider:id retrieval path for skills get returning markdown from local index.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia"}]}
12
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.331742349Z","closed_at":"2026-03-08T18:10:32.331023678Z","close_reason":"Enforced non-interactive policy through adapter schema validation and executor preflight.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3he","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.453629482Z","created_by":"jarancibia"}]}
13
- {"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
14
- {"id":"dcli-3pk","title":"Wait 10 min for initial test bootstrap","description":"Wait 10 minutes for other agent to finish bootstrapping jest and adding initial 10% coverage","status":"closed","priority":1,"issue_type":"chore","created_at":"2026-03-08T17:51:40.231952222Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:17.595327435Z","closed_at":"2026-03-08T18:03:17.595010820Z","close_reason":"Completed 10 minute wait","source_repo":".","compaction_level":0,"original_size":0}
15
- {"id":"dcli-3vw","title":"Verify coverage increase","description":"Run jest --coverage to verify the 10% increase was achieved","status":"closed","priority":4,"issue_type":"chore","created_at":"2026-03-08T17:51:58.368870813Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:52.921522667Z","closed_at":"2026-03-08T18:06:52.921150881Z","close_reason":"Coverage: Lines 63.82% -> 98.58% (+34.76%), Stmts 61.96% -> 93.25% (+31.29%), Branches 55.97% -> 81.13% (+25.16%), Funcs 83.33% -> 100% (+16.67%)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3vw","depends_on_id":"dcli-1jc","type":"blocks","created_at":"2026-03-08T17:52:29.427057528Z","created_by":"jarancibia"}]}
16
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:09:27.430656982Z","closed_at":"2026-03-08T18:09:27.430330695Z","close_reason":"Implemented gwc plugin passthrough, doctor/install guidance, docs, and tests","source_repo":".","compaction_level":0,"original_size":0}
17
- {"id":"dcli-5nb","title":"Add Jest unit coverage for adapter validation and shell adapter","description":"Add tests covering validation matrix and shell adapter guardrails.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.513527552Z","closed_at":"2026-03-08T18:10:32.513061779Z","close_reason":"Added Jest unit tests for adapter schema and shell adapter behaviors.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-5nb","depends_on_id":"dcli-1x0","type":"blocks","created_at":"2026-03-08T18:08:31.650601322Z","created_by":"jarancibia"},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia"}]}
18
- {"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:54:45.589457425Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia"},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia"}]}
19
- {"id":"dcli-u99","title":"Fix 0% coverage report in watch mode","description":"Investigate and fix why Jest watch mode shows 0% coverage even when tests pass","status":"closed","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:14:44.003122825Z","closed_at":"2026-03-08T18:14:44.002681908Z","close_reason":"Fixed 0% coverage by setting rootDir, using v8 coverageProvider, and improving collectCoverageFrom patterns in jest.config.js","source_repo":".","compaction_level":0,"original_size":0}
20
- {"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,20 +0,0 @@
1
- {"id":"dcli-1c8","title":"Analyze uncovered code areas","description":"Identify modules with low coverage that are good candidates for adding tests","status":"closed","priority":3,"issue_type":"task","created_at":"2026-03-08T17:51:49.234895050Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:44.173927789Z","closed_at":"2026-03-08T18:06:44.173489704Z","close_reason":"Analyzed: skills.js has lowest coverage (48% -> 98% now covered)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1c8","depends_on_id":"dcli-2oo","type":"blocks","created_at":"2026-03-08T17:52:29.085976789Z","created_by":"jarancibia"}]}
2
- {"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T19:53:24.145265102Z","source_repo":".","compaction_level":0,"original_size":0}
3
- {"id":"dcli-1jc","title":"Add unit tests to reach +10% coverage","description":"Add unit tests for uncovered modules to increase coverage by 10%","status":"closed","priority":4,"issue_type":"task","created_at":"2026-03-08T17:51:52.761119803Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:48.819643678Z","closed_at":"2026-03-08T18:06:48.819350528Z","close_reason":"Added 13 new tests for skills.js - lines coverage: 48% -> 98%","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1jc","depends_on_id":"dcli-1c8","type":"blocks","created_at":"2026-03-08T17:52:29.252402853Z","created_by":"jarancibia"}]}
4
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.761962659Z","closed_at":"2026-03-08T18:15:03.761653188Z","close_reason":"Hardened process adapter with preflight dependency checks, richer flag coercion, and cwd/env support.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1wg","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.630667298Z","created_by":"jarancibia"}]}
5
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.129812845Z","closed_at":"2026-03-08T18:10:32.129376399Z","close_reason":"Added shell adapter with unsafe true gate, timeout handling, and structured output behavior.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1x0","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.273366521Z","created_by":"jarancibia"}]}
6
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:15:03.920467044Z","closed_at":"2026-03-08T18:15:03.920079895Z","close_reason":"Expanded plugins doctor with aggregate status, adapter summaries, and policy checks.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-1z3","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.812806436Z","created_by":"jarancibia"}]}
7
- {"id":"dcli-2oo","title":"Run baseline coverage test","description":"Run jest --coverage to establish current baseline coverage percentage","status":"closed","priority":2,"issue_type":"chore","created_at":"2026-03-08T17:51:45.159220774Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:34.179222044Z","closed_at":"2026-03-08T18:03:34.178923847Z","close_reason":"Baseline coverage: 63.82% lines, 61.96% statements","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2oo","depends_on_id":"dcli-3pk","type":"blocks","created_at":"2026-03-08T17:52:18.741871912Z","created_by":"jarancibia"}]}
8
- {"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.687222705Z","closed_at":"2026-03-08T19:57:45.686641965Z","close_reason":"Extended skills command with providers list/add/remove/show, sync, search, and catalog listing mode.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia"}]}
9
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:31.987849029Z","closed_at":"2026-03-08T18:10:31.987315031Z","close_reason":"Implemented adapter schema validator with shared common checks and per-adapter required fields.","source_repo":".","compaction_level":0,"original_size":0}
10
- {"id":"dcli-35z","title":"Implement executor.js unit tests","description":"Write comprehensive unit tests for cli/executor.js to increase total project coverage by ~8%","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:35:52.819633671Z","closed_at":"2026-03-08T19:35:52.819299524Z","close_reason":"Implemented 43 unit tests for executor.js covering single commands, workflows, template replacement, and remote fetching. Total project coverage increased from 30.48% to 38.55% (+8.07%).","source_repo":".","compaction_level":0,"original_size":0}
11
- {"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.911625440Z","closed_at":"2026-03-08T19:57:45.910759800Z","close_reason":"Implemented provider:id retrieval path for skills get returning markdown from local index.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia"}]}
12
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.331742349Z","closed_at":"2026-03-08T18:10:32.331023678Z","close_reason":"Enforced non-interactive policy through adapter schema validation and executor preflight.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3he","depends_on_id":"dcli-2s3","type":"blocks","created_at":"2026-03-08T18:08:30.453629482Z","created_by":"jarancibia"}]}
13
- {"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
14
- {"id":"dcli-3pk","title":"Wait 10 min for initial test bootstrap","description":"Wait 10 minutes for other agent to finish bootstrapping jest and adding initial 10% coverage","status":"closed","priority":1,"issue_type":"chore","created_at":"2026-03-08T17:51:40.231952222Z","created_by":"jarancibia","updated_at":"2026-03-08T18:03:17.595327435Z","closed_at":"2026-03-08T18:03:17.595010820Z","close_reason":"Completed 10 minute wait","source_repo":".","compaction_level":0,"original_size":0}
15
- {"id":"dcli-3vw","title":"Verify coverage increase","description":"Run jest --coverage to verify the 10% increase was achieved","status":"closed","priority":4,"issue_type":"chore","created_at":"2026-03-08T17:51:58.368870813Z","created_by":"jarancibia","updated_at":"2026-03-08T18:06:52.921522667Z","closed_at":"2026-03-08T18:06:52.921150881Z","close_reason":"Coverage: Lines 63.82% -> 98.58% (+34.76%), Stmts 61.96% -> 93.25% (+31.29%), Branches 55.97% -> 81.13% (+25.16%), Funcs 83.33% -> 100% (+16.67%)","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3vw","depends_on_id":"dcli-1jc","type":"blocks","created_at":"2026-03-08T17:52:29.427057528Z","created_by":"jarancibia"}]}
16
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:09:27.430656982Z","closed_at":"2026-03-08T18:09:27.430330695Z","close_reason":"Implemented gwc plugin passthrough, doctor/install guidance, docs, and tests","source_repo":".","compaction_level":0,"original_size":0}
17
- {"id":"dcli-5nb","title":"Add Jest unit coverage for adapter validation and shell adapter","description":"Add tests covering validation matrix and shell adapter guardrails.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:10:32.513527552Z","closed_at":"2026-03-08T18:10:32.513061779Z","close_reason":"Added Jest unit tests for adapter schema and shell adapter behaviors.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-5nb","depends_on_id":"dcli-1x0","type":"blocks","created_at":"2026-03-08T18:08:31.650601322Z","created_by":"jarancibia"},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia"}]}
18
- {"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:46.160034662Z","closed_at":"2026-03-08T19:57:46.159135419Z","close_reason":"Added unit tests for skills catalog provider lifecycle, sync, search, and provider:id retrieval.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia"},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia"}]}
19
- {"id":"dcli-u99","title":"Fix 0% coverage report in watch mode","description":"Investigate and fix why Jest watch mode shows 0% coverage even when tests pass","status":"closed","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:14:44.003122825Z","closed_at":"2026-03-08T18:14:44.002681908Z","close_reason":"Fixed 0% coverage by setting rootDir, using v8 coverageProvider, and improving collectCoverageFrom patterns in jest.config.js","source_repo":".","compaction_level":0,"original_size":0}
20
- {"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,19 +0,0 @@
1
- PORT=4310
2
- DATA_DIR=./data
3
- BTC_SYMBOL=BTCUSDT
4
- BTC_INTERVAL=15m
5
- SPOT_INVENTORY_BTC=0.25
6
- MAX_HEDGE_RATIO=1
7
- MIN_HEDGE_RATIO=0
8
- VOL_WINDOW=20
9
- TREND_FAST=8
10
- TREND_SLOW=21
11
- ATR_WINDOW=14
12
- ZSCORE_WINDOW=20
13
- REBALANCE_THRESHOLD_BTC=0.01
14
- MAX_GROSS_NOTIONAL=50000
15
- MAX_NOTIONAL_PER_ORDER=15000
16
- RISK_COOLDOWN_MS=900000
17
- POLL_INTERVAL_MS=5000
18
- BINANCE_KLINES_URL=https://api.binance.com/api/v3/klines
19
- LIVE_TRADING_ENABLED=false
@@ -1,3 +0,0 @@
1
- # ref-btcbot
2
-
3
- See `docs/bot.md` for usage and integration details.
@@ -1,72 +0,0 @@
1
- # ref-btcbot
2
-
3
- Standalone 15-minute BTC hedging bot built under `ref-btcbot`, with a paper-first execution model and a `dcli` plugin harness for operator workflows.
4
-
5
- ## What it does
6
-
7
- - Fetches `BTCUSDT` 15-minute candles
8
- - Computes trend, ATR, realized volatility, and a mean-reversion z-score
9
- - Sizes a hedge against a configured spot BTC inventory using a synthetic perp leg
10
- - Enforces notional and cooldown risk controls
11
- - Persists state, snapshots, orders, and runs as local JSON files
12
- - Exposes a zero-build dashboard with Tailwind CDN and Vue 3 CDN
13
- - Exposes bot operations to `dcli` through `plugin/plugin.json`
14
-
15
- ## Commands
16
-
17
- Run from `ref-btcbot/`:
18
-
19
- ```bash
20
- node src/cli.js config validate
21
- node src/cli.js run once
22
- node src/cli.js run loop 3
23
- node src/cli.js status show
24
- node src/cli.js orders list
25
- node src/cli.js server
26
- ```
27
-
28
- ## Dashboard
29
-
30
- Start the server:
31
-
32
- ```bash
33
- node src/cli.js server
34
- ```
35
-
36
- Then open `http://localhost:4310`.
37
-
38
- ## dcli integration
39
-
40
- Install the bot plugin into `dcli` from the repository root:
41
-
42
- ```bash
43
- dcli plugins install ./ref-btcbot/plugin
44
- ```
45
-
46
- Examples:
47
-
48
- ```bash
49
- dcli btcbot status show --json
50
- dcli btcbot run once --json
51
- dcli btcbot positions list --json
52
- dcli btcbot risk report --json
53
- dcli btcbot backtest run examples/sample-candles.json --json
54
- ```
55
-
56
- ## Backtest input format
57
-
58
- Pass a JSON file containing either an array of candles or an object with a `candles` array. Each candle should include:
59
-
60
- - `open`
61
- - `high`
62
- - `low`
63
- - `close`
64
-
65
- A sample file is included at `examples/sample-candles.json`.
66
-
67
- ## Safety defaults
68
-
69
- - `LIVE_TRADING_ENABLED=false`
70
- - paper execution only in this version
71
- - bounded CLI loop execution by default
72
- - hard notional caps and cooldowns
@@ -1,70 +0,0 @@
1
- ---
2
- skill_name: btcbot.backtest
3
- description: Run a backtest against a local candle JSON file and interpret results
4
- tags: btc, trading, hedging, paper, bot, backtest, dcli
5
- category: analytical
6
- ---
7
-
8
- # Backtest Strategy
9
-
10
- **When to use:** To evaluate hedge behavior on historical candle data without live market calls.
11
-
12
- **Command:**
13
- ```bash
14
- dcli btcbot backtest run examples/sample-candles.json --json
15
- ```
16
-
17
- Replace the file path with your own candle JSON file if needed.
18
-
19
- **File format:**
20
- Array of candle objects with `open`, `high`, `low`, `close` fields. See `examples/sample-candles.json` for reference.
21
-
22
- **Interpret output:**
23
- - `trades`: list of simulated trades (may be empty if no rebalances occurred)
24
- - `totals.equityEstimate`: final equity including unrealized PnL
25
- - `totals.netDeltaBtc`: final net BTC exposure
26
- - `position.perpQty`: final perp position
27
- - `position.realizedPnl`: cumulative realized PnL from trades
28
-
29
- **Example snippet:**
30
- ```json
31
- {
32
- "data": {
33
- "ok": true,
34
- "trades": [
35
- {
36
- "id": "ord_1773011035036",
37
- "ts": "2026-03-08T23:03:55.036Z",
38
- "mode": "paper",
39
- "side": "sell",
40
- "qty": 0.067888,
41
- "price": 45080,
42
- "realizedPnl": 0,
43
- "perpQtyAfter": -0.067888,
44
- "avgPerpEntryAfter": 45080,
45
- "reasons": [
46
- "moderate_realized_vol",
47
- "price_extended_above_mean",
48
- "trend_supportive"
49
- ]
50
- }
51
- ],
52
- "totals": {
53
- "equityEstimate": 111359.23,
54
- "netDeltaBtc": 0.182112,
55
- "grossNotional": 14486.16
56
- },
57
- "position": {
58
- "spotQty": 0.25,
59
- "perpQty": -0.067888,
60
- "avgPerpEntry": 45080,
61
- "realizedPnl": 0
62
- }
63
- }
64
- }
65
- ```
66
-
67
- **Follow-up skills:**
68
- - `btcbot.run-once` to test on live data
69
- - `btcbot.config` to adjust strategy parameters
70
- - `btcbot.status` to compare with live state
@@ -1,79 +0,0 @@
1
- ---
2
- skill_name: btcbot.config
3
- description: Validate bot configuration and explain key parameters
4
- tags: btc, trading, hedging, paper, bot, config, dcli
5
- category: operational
6
- ---
7
-
8
- # Validate Configuration
9
-
10
- **When to use:** To verify that environment variables are set correctly and understand key strategy/risk parameters.
11
-
12
- **Command:**
13
- ```bash
14
- dcli btcbot config validate --json
15
- ```
16
-
17
- **Interpret output:**
18
- - `ok`: true if configuration passes all validation checks
19
- - `issues`: list of validation problems (empty if ok)
20
- - `config`: the full resolved configuration object
21
-
22
- **Key parameters:**
23
- - `strategy.spotInventoryBtc`: your spot BTC inventory to hedge
24
- - `strategy.minHedgeRatio` / `maxHedgeRatio`: bounds for hedge sizing
25
- - `strategy.volWindow`: window for realized volatility calculation
26
- - `strategy.trendFast` / `trendSlow`: EMA periods for trend filter
27
- - `strategy.atrWindow`: ATR period for volatility measurement
28
- - `strategy.rebalanceThresholdBtc`: minimum delta to trigger a trade
29
- - `risk.maxGrossNotional`: maximum gross exposure allowed
30
- - `risk.maxNotionalPerOrder`: maximum size per single order
31
- - `risk.cooldownMs`: cooldown duration after risk violations
32
- - `runtime.liveTradingEnabled`: must be false in v1 (paper only)
33
-
34
- **Example snippet (valid):**
35
- ```json
36
- {
37
- "data": {
38
- "ok": true,
39
- "issues": [],
40
- "config": {
41
- "strategy": {
42
- "spotInventoryBtc": 0.25,
43
- "minHedgeRatio": 0,
44
- "maxHedgeRatio": 1,
45
- "volWindow": 20,
46
- "trendFast": 8,
47
- "trendSlow": 21,
48
- "rebalanceThresholdBtc": 0.01
49
- },
50
- "risk": {
51
- "maxGrossNotional": 50000,
52
- "maxNotionalPerOrder": 15000,
53
- "cooldownMs": 900000
54
- },
55
- "runtime": {
56
- "liveTradingEnabled": false
57
- }
58
- }
59
- }
60
- }
61
- ```
62
-
63
- **Example snippet (invalid):**
64
- ```json
65
- {
66
- "data": {
67
- "ok": false,
68
- "issues": [
69
- "SPOT_INVENTORY_BTC must be > 0",
70
- "MAX_HEDGE_RATIO must be >= MIN_HEDGE_RATIO"
71
- ]
72
- }
73
- }
74
- ```
75
-
76
- **Follow-up skills:**
77
- - `btcbot.status` to see current state with this config
78
- - `btcbot.run-once` to test the configuration
79
- - Edit `.env` in the bot directory to fix issues