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
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+
5
+ ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6
+ CLI="${ROOT_DIR}/cli/supercli.js"
7
+
8
+ echo "== uv smoke test (interactive) =="
9
+
10
+ if ! command -v uv >/dev/null 2>&1; then
11
+ echo "uv not found in PATH."
12
+ echo "Install it first: https://docs.astral.sh/uv/getting-started/installation/"
13
+ exit 1
14
+ fi
15
+
16
+ if ! command -v node >/dev/null 2>&1; then
17
+ echo "Node.js not found in PATH"
18
+ exit 1
19
+ fi
20
+
21
+ echo "Installing/refreshing uv plugin..."
22
+ node "${CLI}" plugins install uv --on-conflict replace --json >/dev/null
23
+
24
+ echo "Checking uv CLI availability (uv --version)..."
25
+ uv --version >/dev/null
26
+
27
+ echo "Running wrapped command smoke test..."
28
+ node "${CLI}" uv cli version --json
29
+
30
+ echo "Running passthrough smoke test..."
31
+ node "${CLI}" uv --help
32
+
33
+ echo "Smoke test completed."
@@ -0,0 +1,55 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+
5
+ ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6
+ CLI="${ROOT_DIR}/cli/supercli.js"
7
+
8
+ echo "== Vercel smoke test (interactive) =="
9
+
10
+ if ! command -v vercel >/dev/null 2>&1; then
11
+ echo "Vercel CLI not found. Install it first: https://vercel.com/docs/cli"
12
+ exit 1
13
+ fi
14
+
15
+ if ! command -v node >/dev/null 2>&1; then
16
+ echo "Node.js not found in PATH"
17
+ exit 1
18
+ fi
19
+
20
+ echo "Installing/refreshing vercel plugin..."
21
+ node "${CLI}" plugins install vercel --on-conflict replace --json >/dev/null
22
+
23
+ echo "Checking Vercel authentication (vercel whoami)..."
24
+ if ! vercel whoami >/dev/null 2>&1; then
25
+ if [[ ! -t 0 ]]; then
26
+ echo "Not authenticated and no TTY available. Run 'vercel login' manually, then rerun this script."
27
+ exit 1
28
+ fi
29
+
30
+ echo "Vercel login is required for live smoke tests."
31
+ read -r -p "Run 'vercel login' now? [Y/n] " ANSWER
32
+ ANSWER="${ANSWER:-Y}"
33
+ if [[ "${ANSWER}" =~ ^[Yy]$ ]]; then
34
+ vercel login
35
+ else
36
+ echo "Cancelled. Run 'vercel login' and retry when ready."
37
+ exit 1
38
+ fi
39
+
40
+ if ! vercel whoami >/dev/null 2>&1; then
41
+ echo "Vercel authentication check still failed after login."
42
+ echo "Verify with: vercel whoami"
43
+ exit 1
44
+ fi
45
+ else
46
+ echo "Vercel CLI is already authenticated. Skipping login."
47
+ fi
48
+
49
+ echo "Running wrapped command smoke test..."
50
+ node "${CLI}" vercel account whoami --json
51
+
52
+ echo "Running passthrough smoke test..."
53
+ node "${CLI}" vercel --version
54
+
55
+ echo "Smoke test completed."
@@ -0,0 +1,33 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+
5
+ ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6
+ CLI="${ROOT_DIR}/cli/supercli.js"
7
+
8
+ echo "== watchexec smoke test (interactive) =="
9
+
10
+ if ! command -v watchexec >/dev/null 2>&1; then
11
+ echo "watchexec not found in PATH."
12
+ echo "Install it first: https://github.com/watchexec/watchexec"
13
+ exit 1
14
+ fi
15
+
16
+ if ! command -v node >/dev/null 2>&1; then
17
+ echo "Node.js not found in PATH"
18
+ exit 1
19
+ fi
20
+
21
+ echo "Installing/refreshing watchexec plugin..."
22
+ node "${CLI}" plugins install watchexec --on-conflict replace --json >/dev/null
23
+
24
+ echo "Checking watchexec CLI availability (watchexec --version)..."
25
+ watchexec --version >/dev/null
26
+
27
+ echo "Running wrapped command smoke test..."
28
+ node "${CLI}" watchexec cli version --json
29
+
30
+ echo "Running passthrough smoke test..."
31
+ node "${CLI}" watchexec --help
32
+
33
+ echo "Smoke test completed."
@@ -1,12 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.273738577Z","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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"in_progress","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:39.648648971Z","source_repo":".","compaction_level":0,"original_size":0}
8
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.453983786Z","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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"id":"dcli-4m2","title":"Add gwc plugin passthrough support","description":"Implement gwc plugin, passthrough execution, doctor/install guidance, docs and tests","status":"in_progress","priority":1,"issue_type":"feat","created_at":"2026-03-08T18:08:46.828812178Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:53.455444202Z","source_repo":".","compaction_level":0,"original_size":0}
12
- {"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":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:32.103825419Z","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"}]}
@@ -1,12 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.273738577Z","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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"id":"dcli-2s3","title":"Define adapter schema v1 and centralized validation","description":"Add shared adapter contract validation and deterministic preflight errors.","status":"in_progress","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:20.896087476Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:39.648648971Z","source_repo":".","compaction_level":0,"original_size":0}
8
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.453983786Z","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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:32.103825419Z","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"}]}
@@ -1,12 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"id":"dcli-1x0","title":"Implement shell adapter with unsafe true gate","description":"Add shell adapter requiring unsafe true and deterministic timeout behavior.","status":"open","priority":1,"issue_type":"feature","created_at":"2026-03-08T18:08:21.069755715Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.273738577Z","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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.453983786Z","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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:32.103825419Z","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"}]}
@@ -1,12 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"id":"dcli-3he","title":"Enforce non-interactive execution across adapters","description":"Ensure adapters are non-interactive by default and reject interactive configs.","status":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T18:08:21.229942971Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.453983786Z","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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:32.103825419Z","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"}]}
@@ -1,12 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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":"open","priority":2,"issue_type":"test","created_at":"2026-03-08T18:08:21.701319950Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:32.103825419Z","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"}]}
@@ -1,12 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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"}]}
@@ -1,13 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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"}]}
13
- {"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":"open","priority":1,"issue_type":"bug","created_at":"2026-03-08T18:13:11.302451858Z","created_by":"jarancibia","updated_at":"2026-03-08T18:13:11.302451858Z","source_repo":".","compaction_level":0,"original_size":0}
@@ -1,13 +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-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"}]}
3
- {"id":"dcli-1wg","title":"Harden process adapter argument and dependency checks","description":"Improve positional argument handling and missing binary diagnostics.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.391339882Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.631195153Z","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"}]}
4
- {"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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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"}]}
13
- {"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}
@@ -1,13 +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-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"}]}
3
- {"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"}]}
4
- {"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"}]}
5
- {"id":"dcli-1z3","title":"Expand plugin doctor for runtime readiness checks","description":"Report dependency readiness and actionable guidance per plugin.","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T18:08:21.538062683Z","created_by":"jarancibia","updated_at":"2026-03-08T18:08:30.813229990Z","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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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"}]}
13
- {"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}
@@ -1,13 +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-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"}]}
3
- {"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"}]}
4
- {"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"}]}
5
- {"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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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"}]}
9
- {"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}
10
- {"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"}]}
11
- {"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}
12
- {"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"}]}
13
- {"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}
@@ -1,14 +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-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"}]}
3
- {"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"}]}
4
- {"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"}]}
5
- {"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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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":"open","priority":1,"issue_type":"task","created_at":"2026-03-08T19:20:31.823510086Z","created_by":"jarancibia","updated_at":"2026-03-08T19:20:31.823510086Z","source_repo":".","compaction_level":0,"original_size":0}
9
- {"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"}]}
10
- {"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}
11
- {"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"}]}
12
- {"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}
13
- {"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"}]}
14
- {"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}
@@ -1,14 +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-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"}]}
3
- {"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"}]}
4
- {"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"}]}
5
- {"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"}]}
6
- {"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"}]}
7
- {"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}
8
- {"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}
9
- {"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"}]}
10
- {"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}
11
- {"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"}]}
12
- {"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}
13
- {"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"}]}
14
- {"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}