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.
- package/.beads/.br_history/issues.20260308_235202_180577215.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235202_387414163.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235202_564422794.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235202_742600597.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235208_133360069.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235505_473406307.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235505_662360489.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235505_843935624.jsonl +57 -0
- package/.beads/.br_history/issues.20260308_235506_044530221.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_002618_115728731.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_003748_878174586.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_004057_868755623.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_004058_512842163.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_004058_994445226.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_004059_475988596.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_161902_566857851.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_170512_277017739.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_170512_477876921.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_170512_664382701.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_170512_859400333.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_212326_082771164.jsonl +57 -0
- package/.beads/.br_history/issues.20260309_212326_245619716.jsonl +58 -0
- package/.beads/.br_history/issues.20260309_212326_403198317.jsonl +59 -0
- package/.beads/.br_history/issues.20260309_212332_539197678.jsonl +60 -0
- package/.beads/.br_history/issues.20260309_212332_731373599.jsonl +60 -0
- package/.beads/.br_history/issues.20260309_212332_928710953.jsonl +60 -0
- package/.beads/.br_history/issues.20260309_213021_341505240.jsonl +60 -0
- package/.beads/.br_history/issues.20260309_213022_023136934.jsonl +60 -0
- package/.beads/.br_history/issues.20260309_213022_400050719.jsonl +60 -0
- package/.beads/issues.jsonl +20 -17
- package/README.md +1 -1
- package/__tests__/adapter-schema.test.js +3 -0
- package/__tests__/aws-plugin.test.js +84 -0
- package/__tests__/az-plugin.test.js +84 -0
- package/__tests__/builtin-adapter.test.js +29 -0
- package/__tests__/cline-plugin.test.js +109 -0
- package/__tests__/cline-skill.test.js +49 -0
- package/__tests__/docker-plugin.test.js +3 -1
- package/__tests__/eza-plugin.test.js +81 -0
- package/__tests__/gcloud-plugin.test.js +86 -0
- package/__tests__/gh-plugin.test.js +86 -0
- package/__tests__/helm-plugin.test.js +81 -0
- package/__tests__/http-adapter.test.js +118 -0
- package/__tests__/just-plugin.test.js +82 -0
- package/__tests__/kubectl-plugin.test.js +83 -0
- package/__tests__/linear-plugin.test.js +81 -0
- package/__tests__/mcp-adapter.test.js +187 -0
- package/__tests__/nextest-plugin.test.js +82 -0
- package/__tests__/npm-plugin.test.js +81 -0
- package/__tests__/nullclaw-plugin.test.js +157 -0
- package/__tests__/openapi-adapter.test.js +199 -0
- package/__tests__/plugin-agency-agents.test.js +6 -6
- package/__tests__/plugin-nullclaw.test.js +78 -0
- package/__tests__/plugin-visual-explainer.test.js +62 -0
- package/__tests__/plugins-manager.test.js +59 -10
- package/__tests__/pnpm-plugin.test.js +81 -0
- package/__tests__/poetry-plugin.test.js +83 -0
- package/__tests__/process-adapter.test.js +124 -90
- package/__tests__/pulumi-plugin.test.js +81 -0
- package/__tests__/railway-plugin.test.js +84 -0
- package/__tests__/server-app.test.js +67 -0
- package/__tests__/server-config-service.test.js +79 -0
- package/__tests__/server-routes-ask.test.js +89 -0
- package/__tests__/server-routes-commands.test.js +55 -0
- package/__tests__/server-routes-config.test.js +87 -0
- package/__tests__/server-routes-jobs.test.js +53 -0
- package/__tests__/server-routes-misc.test.js +112 -0
- package/__tests__/server-storage-adapter.test.js +40 -0
- package/__tests__/server-storage-file.test.js +73 -0
- package/__tests__/server-storage-mongo.test.js +74 -0
- package/__tests__/shell-adapter.test.js +81 -22
- package/__tests__/stripe-plugin.test.js +3 -1
- package/__tests__/supabase-plugin.test.js +86 -0
- package/__tests__/terraform-plugin.test.js +83 -0
- package/__tests__/uv-plugin.test.js +81 -0
- package/__tests__/vercel-plugin.test.js +81 -0
- package/__tests__/watchexec-plugin.test.js +80 -0
- package/cli/adapter-schema.js +5 -0
- package/cli/adapters/process.js +53 -2
- package/cli/plugin-install-guidance.js +320 -0
- package/cli/plugins-manager.js +272 -212
- package/cli/skills.js +16 -5
- package/cli/supercli.js +26 -2
- package/docs/plugins.md +2 -0
- package/docs/skills/cline-non-interactive/SKILL.md +59 -0
- package/docs/skills-catalog.md +35 -0
- package/docs/visual-overview.md +21 -0
- package/jest.config.js +4 -1
- package/package.json +4 -3
- package/plugins/agency-agents/plugin.json +5 -0
- package/{cli/plugin-agency-agents.js → plugins/agency-agents/scripts/post-install.js} +13 -3
- package/plugins/aws/README.md +46 -0
- package/plugins/aws/plugin.json +42 -0
- package/plugins/az/README.md +46 -0
- package/plugins/az/plugin.json +42 -0
- package/plugins/clickup/plugin.json +38 -0
- package/plugins/clickup/scripts/post-install.js +107 -0
- package/plugins/clickup/scripts/post-uninstall.js +30 -0
- package/plugins/cline/README.md +48 -0
- package/plugins/cline/plugin.json +92 -0
- package/plugins/eza/README.md +40 -0
- package/plugins/eza/plugin.json +42 -0
- package/plugins/gcloud/README.md +46 -0
- package/plugins/gcloud/plugin.json +42 -0
- package/plugins/gh/README.md +46 -0
- package/plugins/gh/plugin.json +43 -0
- package/plugins/helm/README.md +42 -0
- package/plugins/helm/plugin.json +42 -0
- package/plugins/just/README.md +42 -0
- package/plugins/just/plugin.json +42 -0
- package/plugins/kubectl/README.md +46 -0
- package/plugins/kubectl/plugin.json +42 -0
- package/plugins/linear/README.md +60 -0
- package/plugins/linear/plugin.json +42 -0
- package/plugins/nextest/README.md +42 -0
- package/plugins/nextest/plugin.json +42 -0
- package/plugins/npm/README.md +46 -0
- package/plugins/npm/plugin.json +42 -0
- package/plugins/nullclaw/README.md +45 -0
- package/plugins/nullclaw/plugin.json +64 -0
- package/plugins/nullclaw/scripts/post-install.js +189 -0
- package/plugins/nullclaw/scripts/post-uninstall.js +25 -0
- package/plugins/openfang/plugin.json +37 -0
- package/plugins/openfang/scripts/post-install.js +163 -0
- package/plugins/openfang/scripts/post-uninstall.js +30 -0
- package/plugins/plugins.json +234 -0
- package/plugins/pnpm/README.md +46 -0
- package/plugins/pnpm/plugin.json +42 -0
- package/plugins/poetry/README.md +46 -0
- package/plugins/poetry/plugin.json +42 -0
- package/plugins/pulumi/README.md +46 -0
- package/plugins/pulumi/plugin.json +42 -0
- package/plugins/railway/README.md +58 -0
- package/plugins/railway/plugin.json +43 -0
- package/plugins/supabase/README.md +55 -0
- package/plugins/supabase/plugin.json +42 -0
- package/plugins/superpowers/plugin.json +22 -0
- package/plugins/superpowers/scripts/post-install.js +124 -0
- package/plugins/superpowers/scripts/post-uninstall.js +30 -0
- package/plugins/terraform/README.md +46 -0
- package/plugins/terraform/plugin.json +42 -0
- package/plugins/uv/README.md +46 -0
- package/plugins/uv/plugin.json +42 -0
- package/plugins/vercel/README.md +47 -0
- package/plugins/vercel/plugin.json +42 -0
- package/plugins/visual-explainer/plugin.json +15 -0
- package/plugins/visual-explainer/scripts/post-install.js +111 -0
- package/plugins/watchexec/README.md +40 -0
- package/plugins/watchexec/plugin.json +42 -0
- package/tests/test-aws-smoke.sh +56 -0
- package/tests/test-az-smoke.sh +56 -0
- package/tests/test-cline-smoke.sh +37 -0
- package/tests/test-eza-smoke.sh +33 -0
- package/tests/test-gcloud-smoke.sh +56 -0
- package/tests/test-gh-smoke.sh +56 -0
- package/tests/test-helm-smoke.sh +33 -0
- package/tests/test-just-smoke.sh +40 -0
- package/tests/test-kubectl-smoke.sh +37 -0
- package/tests/test-linear-smoke.sh +97 -0
- package/tests/test-nextest-smoke.sh +33 -0
- package/tests/test-npm-smoke.sh +32 -0
- package/tests/test-nullclaw-smoke.sh +51 -0
- package/tests/test-plugins-registry.js +110 -0
- package/tests/test-pnpm-smoke.sh +33 -0
- package/tests/test-poetry-smoke.sh +33 -0
- package/tests/test-pulumi-smoke.sh +33 -0
- package/tests/test-railway-smoke.sh +95 -0
- package/tests/test-supabase-smoke.sh +95 -0
- package/tests/test-terraform-smoke.sh +33 -0
- package/tests/test-uv-smoke.sh +33 -0
- package/tests/test-vercel-smoke.sh +55 -0
- package/tests/test-watchexec-smoke.sh +33 -0
- package/.beads/.br_history/issues.20260308_180927_477542428.jsonl +0 -12
- package/.beads/.br_history/issues.20260308_181032_020230108.jsonl +0 -12
- package/.beads/.br_history/issues.20260308_181032_180539413.jsonl +0 -12
- package/.beads/.br_history/issues.20260308_181032_372621506.jsonl +0 -12
- package/.beads/.br_history/issues.20260308_181032_565142225.jsonl +0 -12
- package/.beads/.br_history/issues.20260308_181311_336346464.jsonl +0 -12
- package/.beads/.br_history/issues.20260308_181444_039234498.jsonl +0 -13
- package/.beads/.br_history/issues.20260308_181503_794764403.jsonl +0 -13
- package/.beads/.br_history/issues.20260308_181503_950163105.jsonl +0 -13
- package/.beads/.br_history/issues.20260308_192031_852553505.jsonl +0 -13
- package/.beads/.br_history/issues.20260308_193552_846920518.jsonl +0 -14
- package/.beads/.br_history/issues.20260308_194054_394884833.jsonl +0 -14
- package/.beads/.br_history/issues.20260308_194209_440472460.jsonl +0 -15
- package/.beads/.br_history/issues.20260308_195319_099391899.jsonl +0 -15
- package/.beads/.br_history/issues.20260308_195324_176987204.jsonl +0 -16
- package/.beads/.br_history/issues.20260308_195436_929114019.jsonl +0 -16
- package/.beads/.br_history/issues.20260308_195437_055808298.jsonl +0 -17
- package/.beads/.br_history/issues.20260308_195437_304297399.jsonl +0 -18
- package/.beads/.br_history/issues.20260308_195437_556007332.jsonl +0 -19
- package/.beads/.br_history/issues.20260308_195444_987209695.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195445_133350193.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195445_400185615.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195445_689886334.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195445_949947727.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195745_580473297.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195745_725920532.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195745_968227911.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_195746_224276322.jsonl +0 -20
- package/.beads/.br_history/issues.20260308_200018_386890807.jsonl +0 -20
- package/ref-btcbot/.env.example +0 -19
- package/ref-btcbot/README.md +0 -3
- package/ref-btcbot/docs/bot.md +0 -72
- package/ref-btcbot/docs/skills/btcbot.backtest/SKILL.md +0 -70
- package/ref-btcbot/docs/skills/btcbot.config/SKILL.md +0 -79
- package/ref-btcbot/docs/skills/btcbot.orders/SKILL.md +0 -60
- package/ref-btcbot/docs/skills/btcbot.positions/SKILL.md +0 -54
- package/ref-btcbot/docs/skills/btcbot.risk/SKILL.md +0 -69
- package/ref-btcbot/docs/skills/btcbot.run-loop/SKILL.md +0 -63
- package/ref-btcbot/docs/skills/btcbot.run-once/SKILL.md +0 -63
- package/ref-btcbot/docs/skills/btcbot.status/SKILL.md +0 -59
- package/ref-btcbot/examples/sample-candles.json +0 -52
- package/ref-btcbot/package.json +0 -18
- package/ref-btcbot/plugin/plugin.json +0 -146
- package/ref-btcbot/src/cli.js +0 -104
- package/ref-btcbot/src/config.js +0 -80
- package/ref-btcbot/src/core/bot-runner.js +0 -78
- package/ref-btcbot/src/core/exchange-factory.js +0 -19
- package/ref-btcbot/src/core/live-exchange.js +0 -12
- package/ref-btcbot/src/core/paper-exchange.js +0 -82
- package/ref-btcbot/src/core/risk-engine.js +0 -42
- package/ref-btcbot/src/core/state-repository.js +0 -47
- package/ref-btcbot/src/services/backtest-service.js +0 -44
- package/ref-btcbot/src/services/market-data.js +0 -32
- package/ref-btcbot/src/storage/json-store.js +0 -45
- package/ref-btcbot/src/strategy/hedge-strategy.js +0 -65
- package/ref-btcbot/src/strategy/indicators.js +0 -56
- package/ref-btcbot/src/web/api.js +0 -50
- package/ref-btcbot/src/web/app.js +0 -51
- package/ref-btcbot/src/web/index.html +0 -70
- package/ref-btcbot/src/web/server.js +0 -33
- /package/.beads/.br_history/{issues.20260308_180927_477542428.jsonl.meta.json → issues.20260308_235202_180577215.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181032_020230108.jsonl.meta.json → issues.20260308_235202_387414163.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181032_180539413.jsonl.meta.json → issues.20260308_235202_564422794.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181032_372621506.jsonl.meta.json → issues.20260308_235202_742600597.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181032_565142225.jsonl.meta.json → issues.20260308_235208_133360069.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181311_336346464.jsonl.meta.json → issues.20260308_235505_473406307.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181444_039234498.jsonl.meta.json → issues.20260308_235505_662360489.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181503_794764403.jsonl.meta.json → issues.20260308_235505_843935624.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_181503_950163105.jsonl.meta.json → issues.20260308_235506_044530221.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_192031_852553505.jsonl.meta.json → issues.20260309_002618_115728731.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_193552_846920518.jsonl.meta.json → issues.20260309_003748_878174586.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_194054_394884833.jsonl.meta.json → issues.20260309_004057_868755623.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_194209_440472460.jsonl.meta.json → issues.20260309_004058_512842163.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195319_099391899.jsonl.meta.json → issues.20260309_004058_994445226.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195324_176987204.jsonl.meta.json → issues.20260309_004059_475988596.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195436_929114019.jsonl.meta.json → issues.20260309_161902_566857851.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195437_055808298.jsonl.meta.json → issues.20260309_170512_277017739.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195437_304297399.jsonl.meta.json → issues.20260309_170512_477876921.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195437_556007332.jsonl.meta.json → issues.20260309_170512_664382701.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195444_987209695.jsonl.meta.json → issues.20260309_170512_859400333.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195445_133350193.jsonl.meta.json → issues.20260309_212326_082771164.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195445_400185615.jsonl.meta.json → issues.20260309_212326_245619716.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195445_689886334.jsonl.meta.json → issues.20260309_212326_403198317.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195445_949947727.jsonl.meta.json → issues.20260309_212332_539197678.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195745_580473297.jsonl.meta.json → issues.20260309_212332_731373599.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195745_725920532.jsonl.meta.json → issues.20260309_212332_928710953.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195745_968227911.jsonl.meta.json → issues.20260309_213021_341505240.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_195746_224276322.jsonl.meta.json → issues.20260309_213022_023136934.jsonl.meta.json} +0 -0
- /package/.beads/.br_history/{issues.20260308_200018_386890807.jsonl.meta.json → issues.20260309_213022_400050719.jsonl.meta.json} +0 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{"id":"dcli-15q","title":"Reposition dcli as universal cross-harness CLI router","description":"Update README.md to position dcli as a universal CLI router supporting dozens of harnesses (beads, gwc, commiat, and future community CLIs like gh, aws, docker, kubectl, etc.). Include new 'Cross-Harness Router Overview' section, enhance Architecture diagram with router-centric flow, expand Quick Start with multi-harness examples, rewrite CLI Usage for harness routing patterns, add 'Creating a Plugin Harness' section, and include 'Planned Harnesses' section showing future direction. Maintain backward compatibility messaging.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T20:08:23.610030300Z","created_by":"jarancibia","updated_at":"2026-03-08T20:10:30.975518848Z","closed_at":"2026-03-08T20:10:30.974698772Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"dcli-15q.1","title":"Document currently supported harnesses","description":"Create docs/supported-harnesses.md documenting all currently supported harnesses: bundled (beads, gwc, commiat, OpenAPI, HTTP, MCP), popular community harnesses (gh, aws, gcloud, az, docker, kubectl, terraform, npm, pip, cargo, git, etc.). Include installation guidance, examples for key harnesses, and reference link from README.","status":"closed","priority":2,"issue_type":"feature","created_at":"2026-03-08T20:08:27.000272090Z","created_by":"jarancibia","updated_at":"2026-03-08T20:10:54.738213960Z","closed_at":"2026-03-08T20:10:54.737045536Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-15q.1","depends_on_id":"dcli-15q","type":"parent-child","created_at":"2026-03-08T20:08:27.000272090Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
3
|
+
{"id":"dcli-15q.2","title":"Create plugin harness development guide","description":"Create docs/plugin-harness-guide.md explaining how to create plugin harnesses: manifest structure (plugin.json), command wrapping vs. passthrough patterns, argument mapping, dependency checks and validation, testing locally with 'plugins install', publishing to registry, and detailed examples from bundled plugins (beads, gwc, commiat).","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:08:29.562056202Z","created_by":"jarancibia","updated_at":"2026-03-08T20:11:28.559550783Z","closed_at":"2026-03-08T20:11:28.558796804Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-15q.2","depends_on_id":"dcli-15q","type":"parent-child","created_at":"2026-03-08T20:08:29.562056202Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
4
|
+
{"id":"dcli-170","title":"Define core Railway CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.372166956Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.372166956Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"dcli-182","title":"Initialize Supabase CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:04.892874172Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:04.892874172Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"dcli-18l","title":"Define core Linear CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.281813589Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.281813589Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
8
|
+
{"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T20:00:18.346569165Z","closed_at":"2026-03-08T20:00:18.346197072Z","close_reason":"Implemented plugin registry file, plugins explore filters, remote git plugin install support, commiat plugin manifest, and plugins usage auto-skill","source_repo":".","compaction_level":0,"original_size":0}
|
|
9
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
10
|
+
{"id":"dcli-1mc","title":"Implement ask.js unit tests","description":"Write comprehensive unit tests for cli/ask.js with 100% coverage goal, mocking LLM responses, executor, and console.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:54:54.928766024Z","created_by":"jarancibia","updated_at":"2026-03-08T20:55:56.296279039Z","closed_at":"2026-03-08T20:55:56.295812611Z","close_reason":"Implemented 117 unit tests for ask.js with 100% statement coverage. Mocked LLM fetch, executor, and console output. Handled markdown stripping and error cases.","source_repo":".","compaction_level":0,"original_size":0}
|
|
11
|
+
{"id":"dcli-1of","title":"Document Stripe CLI plugin","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.537678829Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:35.704082460Z","closed_at":"2026-03-08T21:37:35.702759554Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
12
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
13
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
14
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
15
|
+
{"id":"dcli-20o","title":"Add commiat supercli plugin manifest to commiat repo","description":"Add plugins/supercli/plugin.json in commiat repository and validate local git install flow from dcli","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T20:13:38.873650607Z","created_by":"jarancibia","updated_at":"2026-03-08T20:16:30.786915224Z","closed_at":"2026-03-08T20:16:30.785869803Z","close_reason":"Added commiat plugin manifest upstream and validated registry remote install, doctor, and passthrough","source_repo":".","compaction_level":0,"original_size":0}
|
|
16
|
+
{"id":"dcli-24w","title":"Add passthrough command for Railway CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.591331888Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.591331888Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
17
|
+
{"id":"dcli-2a6","title":"Add passthrough command for Stripe CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.289038243Z","created_by":"jarancibia","updated_at":"2026-03-08T21:25:29.289038243Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
18
|
+
{"id":"dcli-2gy","title":"Initialize Linear CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.060221135Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.060221135Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
19
|
+
{"id":"dcli-2i3","title":"Define core Supabase CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.118469911Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.118469911Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
20
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
21
|
+
{"id":"dcli-2pw","title":"Document Supabase CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.611100024Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.611100024Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
22
|
+
{"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.687222705Z","closed_at":"2026-03-08T19:57:45.686641965Z","close_reason":"Extended skills command with providers list/add/remove/show, sync, search, and catalog listing mode.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
23
|
+
{"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}
|
|
24
|
+
{"id":"dcli-2sf","title":"Document Railway CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.805873356Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.805873356Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
25
|
+
{"id":"dcli-2tf","title":"Complete plugin subsystem unit tests","description":"Achieve 100% coverage for plugins-command.js, plugins-store.js, and plugins-registry.js.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:58:24.240011818Z","created_by":"jarancibia","updated_at":"2026-03-08T21:02:40.543353776Z","closed_at":"2026-03-08T21:02:40.542502146Z","close_reason":"Achieved 100% statement coverage for the entire plugin subsystem: plugins-command.js, plugins-manager.js, plugins-store.js, and plugins-registry.js. Implemented extensive mocks for fs, git, and child_process.","source_repo":".","compaction_level":0,"original_size":0}
|
|
26
|
+
{"id":"dcli-2vy","title":"Initialize Stripe CLI plugin directory and manifest","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:28.802380692Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:15.062449799Z","closed_at":"2026-03-08T21:37:15.061158668Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
27
|
+
{"id":"dcli-2w4","title":"Achieve 100% coverage for skills.js","description":"Implement comprehensive unit tests for all subcommands in skills.js, including providers, sync, search, and YAML rendering logic.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T21:22:23.616011605Z","created_by":"jarancibia","updated_at":"2026-03-08T22:20:52.235261675Z","closed_at":"2026-03-08T22:20:52.234485980Z","close_reason":"Achieved 100% statement coverage for skills.js, including all subcommands and YAML rendering logic.","source_repo":".","compaction_level":0,"original_size":0}
|
|
28
|
+
{"id":"dcli-2y1","title":"Add documentation examples and cross-references","description":"Create docs/plugin-examples.md with real manifest examples, update README links to documentation, add CLI examples for router usage, ensure consistent terminology across docs, verify all code examples are executable. Polish and finalize documentation structure.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","updated_at":"2026-03-08T20:12:04.706268306Z","closed_at":"2026-03-08T20:12:04.705477172Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2y1","depends_on_id":"dcli-15q.1","type":"waits-for","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","metadata":"{}","thread_id":""},{"issue_id":"dcli-2y1","depends_on_id":"dcli-15q.2","type":"waits-for","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
29
|
+
{"id":"dcli-2yj","title":"Initialize Vercel CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.885846057Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.885846057Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
30
|
+
{"id":"dcli-2yv","title":"Initialize Railway CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.038707045Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.038707045Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
31
|
+
{"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}
|
|
32
|
+
{"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.911625440Z","closed_at":"2026-03-08T19:57:45.910759800Z","close_reason":"Implemented provider:id retrieval path for skills get returning markdown from local index.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
33
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
34
|
+
{"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
|
|
35
|
+
{"id":"dcli-3nz","title":"Implement Docker Harness MVP","description":"Main umbrella task for transforming dcli into a universal cross-harness CLI router by implementing the Docker harness. Includes reusable safety framework, plugin manifest, docs, and tests.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T20:35:38.017021224Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.981050163Z","closed_at":"2026-03-08T20:52:13.980053979Z","close_reason":"Completed Docker Harness MVP with safety framework, manifest, docs, examples, and tests","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","harness","router"]}
|
|
36
|
+
{"id":"dcli-3nz.1","title":"Implement Non-TTY Safety Framework in Adapter Layer","description":"Implement a reusable validation layer in the core adapter to prevent non-TTY interactive hangs.\n\nDetailed Instructions:\n1. Modify `cli/adapters/process.js`: Detect non-TTY (`process.stdout.isTTY`). Implement a validation function that rejects commands with flags listed in `interactiveFlags` or if `requiresInteractive: true`.\n2. Error Handling: Return exit code 91 (safety_violation) with a clear message: 'Operation rejected: Cannot run interactive command in a non-TTY environment. Use non-interactive flags instead.'\n3. Schema Update: Update `cli/adapter-schema.js` to include `safetyLevel`, `interactiveFlags`, and `requiresInteractive`.\n4. Integration: Update `executor.js` to call the validation check before spawning processes.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.492172728Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.030891482Z","closed_at":"2026-03-08T20:52:13.030435512Z","close_reason":"Added non-TTY interactive safety validation in process adapter and schema support for safety metadata","source_repo":".","compaction_level":0,"original_size":0,"labels":["core","safety"],"dependencies":[{"issue_id":"dcli-3nz.1","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.492172728Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
37
|
+
{"id":"dcli-3nz.2","title":"Create Docker Plugin Manifest with 20 Core Commands","description":"Create the comprehensive Docker plugin manifest with safety metadata.\n\nDetailed Instructions:\n1. Create `plugins/docker/plugin.json`.\n2. Resources/Actions (20 total):\n - container: run, ps, ls, start, stop, restart, rm, exec, logs, inspect\n - image: build, images, ls, pull, push, rmi, tag\n - system: info, version, df\n3. Safety Metadata:\n - `run`, `exec`: Add `interactiveFlags: [\"-i\", \"-t\", \"--interactive\", \"--tty\"]`.\n - `attach`, `login`: Add `requiresInteractive: true`.\n4. Argument Coverage: Ensure all major flags (e.g., `-d`, `-p`, `-v`, `-e`) are mapped.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.696246165Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.149910609Z","closed_at":"2026-03-08T20:52:13.149458660Z","close_reason":"Created plugins/docker/plugin.json with 20 core commands and safety metadata for run/exec","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","manifest"],"dependencies":[{"issue_id":"dcli-3nz.2","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.696246165Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
38
|
+
{"id":"dcli-3nz.3","title":"Implement Automated Integration Tests for Docker Harness","description":"Verify the Docker harness and safety framework via automated tests.\n\nDetailed Instructions:\n1. Create `__tests__/docker-plugin.test.js`.\n2. Test Cases:\n - Command Routing: `supercli docker container ls` -> `docker ps`.\n - Argument Mapping: Verify flags and positionals are correctly passed to the shell.\n - Safety Violation: Mock a non-TTY environment and verify that `-it` flags are rejected with code 91.\n - Integration: Real `docker version` call if Docker is installed.\n3. Test Safety: Ensure tests don't leave dangling containers/images.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.882064564Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.353186701Z","closed_at":"2026-03-08T20:52:13.351963127Z","close_reason":"Added automated docker harness tests in __tests__/docker-plugin.test.js plus safety tests","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","test"],"dependencies":[{"issue_id":"dcli-3nz.3","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.882064564Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
39
|
+
{"id":"dcli-3nz.4","title":"Create Comprehensive Documentation for Docker Harness","description":"Document the Docker harness usage and capabilities.\n\nDetailed Instructions:\n1. `plugins/docker/README.md`: Quick start, installation, common commands.\n2. `plugins/docker/MANIFEST.md`: Complete command-by-command reference with all supported arguments and safety warnings.\n3. No Root Docs: Ensure no files are created in the project root's `docs/` directory; all plugin docs must be local to the plugin folder.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:35:48.044182326Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.557081720Z","closed_at":"2026-03-08T20:52:13.555982511Z","close_reason":"Added plugin-local documentation at plugins/docker/README.md and plugins/docker/MANIFEST.md","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","docs"],"dependencies":[{"issue_id":"dcli-3nz.4","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:48.044182326Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
40
|
+
{"id":"dcli-3nz.5","title":"Create Docker Workflow Examples","description":"Create 5 real-world example scripts demonstrating the Docker harness.\n\nDetailed Instructions:\n1. Create `plugins/docker/examples/`.\n2. Example Scripts:\n - `list-containers.sh`: Basic listing and filtering.\n - `run-container.sh`: Detached mode deployment.\n - `build-image.sh`: Automated build process.\n - `inspect-container.sh`: Using JSON output and dcli query logic.\n - `multi-step-workflow.sh`: Orchestrating pull -> run -> rm.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:35:48.236283673Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.776385054Z","closed_at":"2026-03-08T20:52:13.775362245Z","close_reason":"Added five docker workflow example scripts under plugins/docker/examples","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","examples"],"dependencies":[{"issue_id":"dcli-3nz.5","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:48.236283673Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
41
|
+
{"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}
|
|
42
|
+
{"id":"dcli-3pt","title":"Define core Stripe CLI commands wrapping","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.038703413Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:27.143137180Z","closed_at":"2026-03-08T21:37:27.141876900Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
43
|
+
{"id":"dcli-3s2","title":"Define core Vercel CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.249360433Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.249360433Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
44
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
45
|
+
{"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}
|
|
46
|
+
{"id":"dcli-5ix","title":"Document Vercel CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.786816126Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.786816126Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
47
|
+
{"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","metadata":"{}","thread_id":""},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
48
|
+
{"id":"dcli-6yj","title":"Achieve 100% coverage for mcp-local.js and namespace-passthrough.js","description":"Write unit tests for mcp-local registry commands and namespace passthrough logic.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:22:27.707188780Z","created_by":"jarancibia","updated_at":"2026-03-08T22:20:56.832067123Z","closed_at":"2026-03-08T22:20:56.831358454Z","close_reason":"Achieved 100% coverage for mcp-local.js and namespace-passthrough.js.","source_repo":".","compaction_level":0,"original_size":0}
|
|
49
|
+
{"id":"dcli-crv","title":"Add passthrough command for Linear CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.507373270Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.507373270Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
50
|
+
{"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:46.160034662Z","closed_at":"2026-03-08T19:57:46.159135419Z","close_reason":"Added unit tests for skills catalog provider lifecycle, sync, search, and provider:id retrieval.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia","metadata":"{}","thread_id":""},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
51
|
+
{"id":"dcli-id4","title":"Document Linear CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.746813105Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.746813105Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
52
|
+
{"id":"dcli-ltr","title":"Add passthrough command for Vercel CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.543378685Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.543378685Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
53
|
+
{"id":"dcli-pxq","title":"Add passthrough command for Supabase CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.366008217Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.366008217Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
54
|
+
{"id":"dcli-rz0","title":"Complete coverage for adapter-schema.js","description":"Add tests for all supported adapters and validation logic in adapter-schema.js.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:22:32.520742713Z","created_by":"jarancibia","updated_at":"2026-03-08T22:21:03.355990367Z","closed_at":"2026-03-08T22:21:03.355271357Z","close_reason":"Achieved 100% statement coverage for adapter-schema.js.","source_repo":".","compaction_level":0,"original_size":0}
|
|
55
|
+
{"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}
|
|
56
|
+
{"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
|
|
57
|
+
{"id":"dcli-yyr","title":"Implement config.js unit tests","description":"Write comprehensive unit tests for cli/config.js with 100% coverage goal, mocking fs, os, and fetch.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:38:25.925745082Z","created_by":"jarancibia","updated_at":"2026-03-08T20:40:56.041144293Z","closed_at":"2026-03-08T20:40:56.040705425Z","close_reason":"Implemented 100% statement coverage for config.js. Mocked fs, os, and fetch. Fixed a bug in setMcpServer where null items in mcp_servers array would cause a crash during sorting. Removed dead code (ttlValid).","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{"id":"dcli-15q","title":"Reposition dcli as universal cross-harness CLI router","description":"Update README.md to position dcli as a universal CLI router supporting dozens of harnesses (beads, gwc, commiat, and future community CLIs like gh, aws, docker, kubectl, etc.). Include new 'Cross-Harness Router Overview' section, enhance Architecture diagram with router-centric flow, expand Quick Start with multi-harness examples, rewrite CLI Usage for harness routing patterns, add 'Creating a Plugin Harness' section, and include 'Planned Harnesses' section showing future direction. Maintain backward compatibility messaging.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T20:08:23.610030300Z","created_by":"jarancibia","updated_at":"2026-03-08T20:10:30.975518848Z","closed_at":"2026-03-08T20:10:30.974698772Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"dcli-15q.1","title":"Document currently supported harnesses","description":"Create docs/supported-harnesses.md documenting all currently supported harnesses: bundled (beads, gwc, commiat, OpenAPI, HTTP, MCP), popular community harnesses (gh, aws, gcloud, az, docker, kubectl, terraform, npm, pip, cargo, git, etc.). Include installation guidance, examples for key harnesses, and reference link from README.","status":"closed","priority":2,"issue_type":"feature","created_at":"2026-03-08T20:08:27.000272090Z","created_by":"jarancibia","updated_at":"2026-03-08T20:10:54.738213960Z","closed_at":"2026-03-08T20:10:54.737045536Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-15q.1","depends_on_id":"dcli-15q","type":"parent-child","created_at":"2026-03-08T20:08:27.000272090Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
3
|
+
{"id":"dcli-15q.2","title":"Create plugin harness development guide","description":"Create docs/plugin-harness-guide.md explaining how to create plugin harnesses: manifest structure (plugin.json), command wrapping vs. passthrough patterns, argument mapping, dependency checks and validation, testing locally with 'plugins install', publishing to registry, and detailed examples from bundled plugins (beads, gwc, commiat).","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:08:29.562056202Z","created_by":"jarancibia","updated_at":"2026-03-08T20:11:28.559550783Z","closed_at":"2026-03-08T20:11:28.558796804Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-15q.2","depends_on_id":"dcli-15q","type":"parent-child","created_at":"2026-03-08T20:08:29.562056202Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
4
|
+
{"id":"dcli-170","title":"Define core Railway CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.372166956Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.372166956Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"dcli-182","title":"Initialize Supabase CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:04.892874172Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:04.892874172Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"dcli-18l","title":"Define core Linear CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.281813589Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.281813589Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
8
|
+
{"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T20:00:18.346569165Z","closed_at":"2026-03-08T20:00:18.346197072Z","close_reason":"Implemented plugin registry file, plugins explore filters, remote git plugin install support, commiat plugin manifest, and plugins usage auto-skill","source_repo":".","compaction_level":0,"original_size":0}
|
|
9
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
10
|
+
{"id":"dcli-1mc","title":"Implement ask.js unit tests","description":"Write comprehensive unit tests for cli/ask.js with 100% coverage goal, mocking LLM responses, executor, and console.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:54:54.928766024Z","created_by":"jarancibia","updated_at":"2026-03-08T20:55:56.296279039Z","closed_at":"2026-03-08T20:55:56.295812611Z","close_reason":"Implemented 117 unit tests for ask.js with 100% statement coverage. Mocked LLM fetch, executor, and console output. Handled markdown stripping and error cases.","source_repo":".","compaction_level":0,"original_size":0}
|
|
11
|
+
{"id":"dcli-1of","title":"Document Stripe CLI plugin","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.537678829Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:35.704082460Z","closed_at":"2026-03-08T21:37:35.702759554Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
12
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
13
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
14
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
15
|
+
{"id":"dcli-20o","title":"Add commiat supercli plugin manifest to commiat repo","description":"Add plugins/supercli/plugin.json in commiat repository and validate local git install flow from dcli","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T20:13:38.873650607Z","created_by":"jarancibia","updated_at":"2026-03-08T20:16:30.786915224Z","closed_at":"2026-03-08T20:16:30.785869803Z","close_reason":"Added commiat plugin manifest upstream and validated registry remote install, doctor, and passthrough","source_repo":".","compaction_level":0,"original_size":0}
|
|
16
|
+
{"id":"dcli-24w","title":"Add passthrough command for Railway CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.591331888Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.591331888Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
17
|
+
{"id":"dcli-2a6","title":"Add passthrough command for Stripe CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.289038243Z","created_by":"jarancibia","updated_at":"2026-03-08T21:25:29.289038243Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
18
|
+
{"id":"dcli-2gy","title":"Initialize Linear CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.060221135Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.060221135Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
19
|
+
{"id":"dcli-2i3","title":"Define core Supabase CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.118469911Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.118469911Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
20
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
21
|
+
{"id":"dcli-2pw","title":"Document Supabase CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.611100024Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.611100024Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
22
|
+
{"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.687222705Z","closed_at":"2026-03-08T19:57:45.686641965Z","close_reason":"Extended skills command with providers list/add/remove/show, sync, search, and catalog listing mode.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
23
|
+
{"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}
|
|
24
|
+
{"id":"dcli-2sf","title":"Document Railway CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.805873356Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.805873356Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
25
|
+
{"id":"dcli-2tf","title":"Complete plugin subsystem unit tests","description":"Achieve 100% coverage for plugins-command.js, plugins-store.js, and plugins-registry.js.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:58:24.240011818Z","created_by":"jarancibia","updated_at":"2026-03-08T21:02:40.543353776Z","closed_at":"2026-03-08T21:02:40.542502146Z","close_reason":"Achieved 100% statement coverage for the entire plugin subsystem: plugins-command.js, plugins-manager.js, plugins-store.js, and plugins-registry.js. Implemented extensive mocks for fs, git, and child_process.","source_repo":".","compaction_level":0,"original_size":0}
|
|
26
|
+
{"id":"dcli-2vy","title":"Initialize Stripe CLI plugin directory and manifest","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:28.802380692Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:15.062449799Z","closed_at":"2026-03-08T21:37:15.061158668Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
27
|
+
{"id":"dcli-2w4","title":"Achieve 100% coverage for skills.js","description":"Implement comprehensive unit tests for all subcommands in skills.js, including providers, sync, search, and YAML rendering logic.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T21:22:23.616011605Z","created_by":"jarancibia","updated_at":"2026-03-08T22:20:52.235261675Z","closed_at":"2026-03-08T22:20:52.234485980Z","close_reason":"Achieved 100% statement coverage for skills.js, including all subcommands and YAML rendering logic.","source_repo":".","compaction_level":0,"original_size":0}
|
|
28
|
+
{"id":"dcli-2y1","title":"Add documentation examples and cross-references","description":"Create docs/plugin-examples.md with real manifest examples, update README links to documentation, add CLI examples for router usage, ensure consistent terminology across docs, verify all code examples are executable. Polish and finalize documentation structure.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","updated_at":"2026-03-08T20:12:04.706268306Z","closed_at":"2026-03-08T20:12:04.705477172Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2y1","depends_on_id":"dcli-15q.1","type":"waits-for","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","metadata":"{}","thread_id":""},{"issue_id":"dcli-2y1","depends_on_id":"dcli-15q.2","type":"waits-for","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
29
|
+
{"id":"dcli-2yj","title":"Initialize Vercel CLI plugin directory and manifest","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.885846057Z","created_by":"jarancibia","updated_at":"2026-03-08T23:52:02.132899213Z","closed_at":"2026-03-08T23:52:02.132012002Z","close_reason":"Implemented vercel plugin manifest and directory","source_repo":".","compaction_level":0,"original_size":0}
|
|
30
|
+
{"id":"dcli-2yv","title":"Initialize Railway CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.038707045Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.038707045Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
31
|
+
{"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}
|
|
32
|
+
{"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.911625440Z","closed_at":"2026-03-08T19:57:45.910759800Z","close_reason":"Implemented provider:id retrieval path for skills get returning markdown from local index.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
33
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
34
|
+
{"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
|
|
35
|
+
{"id":"dcli-3nz","title":"Implement Docker Harness MVP","description":"Main umbrella task for transforming dcli into a universal cross-harness CLI router by implementing the Docker harness. Includes reusable safety framework, plugin manifest, docs, and tests.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T20:35:38.017021224Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.981050163Z","closed_at":"2026-03-08T20:52:13.980053979Z","close_reason":"Completed Docker Harness MVP with safety framework, manifest, docs, examples, and tests","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","harness","router"]}
|
|
36
|
+
{"id":"dcli-3nz.1","title":"Implement Non-TTY Safety Framework in Adapter Layer","description":"Implement a reusable validation layer in the core adapter to prevent non-TTY interactive hangs.\n\nDetailed Instructions:\n1. Modify `cli/adapters/process.js`: Detect non-TTY (`process.stdout.isTTY`). Implement a validation function that rejects commands with flags listed in `interactiveFlags` or if `requiresInteractive: true`.\n2. Error Handling: Return exit code 91 (safety_violation) with a clear message: 'Operation rejected: Cannot run interactive command in a non-TTY environment. Use non-interactive flags instead.'\n3. Schema Update: Update `cli/adapter-schema.js` to include `safetyLevel`, `interactiveFlags`, and `requiresInteractive`.\n4. Integration: Update `executor.js` to call the validation check before spawning processes.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.492172728Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.030891482Z","closed_at":"2026-03-08T20:52:13.030435512Z","close_reason":"Added non-TTY interactive safety validation in process adapter and schema support for safety metadata","source_repo":".","compaction_level":0,"original_size":0,"labels":["core","safety"],"dependencies":[{"issue_id":"dcli-3nz.1","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.492172728Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
37
|
+
{"id":"dcli-3nz.2","title":"Create Docker Plugin Manifest with 20 Core Commands","description":"Create the comprehensive Docker plugin manifest with safety metadata.\n\nDetailed Instructions:\n1. Create `plugins/docker/plugin.json`.\n2. Resources/Actions (20 total):\n - container: run, ps, ls, start, stop, restart, rm, exec, logs, inspect\n - image: build, images, ls, pull, push, rmi, tag\n - system: info, version, df\n3. Safety Metadata:\n - `run`, `exec`: Add `interactiveFlags: [\"-i\", \"-t\", \"--interactive\", \"--tty\"]`.\n - `attach`, `login`: Add `requiresInteractive: true`.\n4. Argument Coverage: Ensure all major flags (e.g., `-d`, `-p`, `-v`, `-e`) are mapped.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.696246165Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.149910609Z","closed_at":"2026-03-08T20:52:13.149458660Z","close_reason":"Created plugins/docker/plugin.json with 20 core commands and safety metadata for run/exec","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","manifest"],"dependencies":[{"issue_id":"dcli-3nz.2","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.696246165Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
38
|
+
{"id":"dcli-3nz.3","title":"Implement Automated Integration Tests for Docker Harness","description":"Verify the Docker harness and safety framework via automated tests.\n\nDetailed Instructions:\n1. Create `__tests__/docker-plugin.test.js`.\n2. Test Cases:\n - Command Routing: `supercli docker container ls` -> `docker ps`.\n - Argument Mapping: Verify flags and positionals are correctly passed to the shell.\n - Safety Violation: Mock a non-TTY environment and verify that `-it` flags are rejected with code 91.\n - Integration: Real `docker version` call if Docker is installed.\n3. Test Safety: Ensure tests don't leave dangling containers/images.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.882064564Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.353186701Z","closed_at":"2026-03-08T20:52:13.351963127Z","close_reason":"Added automated docker harness tests in __tests__/docker-plugin.test.js plus safety tests","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","test"],"dependencies":[{"issue_id":"dcli-3nz.3","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.882064564Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
39
|
+
{"id":"dcli-3nz.4","title":"Create Comprehensive Documentation for Docker Harness","description":"Document the Docker harness usage and capabilities.\n\nDetailed Instructions:\n1. `plugins/docker/README.md`: Quick start, installation, common commands.\n2. `plugins/docker/MANIFEST.md`: Complete command-by-command reference with all supported arguments and safety warnings.\n3. No Root Docs: Ensure no files are created in the project root's `docs/` directory; all plugin docs must be local to the plugin folder.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:35:48.044182326Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.557081720Z","closed_at":"2026-03-08T20:52:13.555982511Z","close_reason":"Added plugin-local documentation at plugins/docker/README.md and plugins/docker/MANIFEST.md","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","docs"],"dependencies":[{"issue_id":"dcli-3nz.4","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:48.044182326Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
40
|
+
{"id":"dcli-3nz.5","title":"Create Docker Workflow Examples","description":"Create 5 real-world example scripts demonstrating the Docker harness.\n\nDetailed Instructions:\n1. Create `plugins/docker/examples/`.\n2. Example Scripts:\n - `list-containers.sh`: Basic listing and filtering.\n - `run-container.sh`: Detached mode deployment.\n - `build-image.sh`: Automated build process.\n - `inspect-container.sh`: Using JSON output and dcli query logic.\n - `multi-step-workflow.sh`: Orchestrating pull -> run -> rm.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:35:48.236283673Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.776385054Z","closed_at":"2026-03-08T20:52:13.775362245Z","close_reason":"Added five docker workflow example scripts under plugins/docker/examples","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","examples"],"dependencies":[{"issue_id":"dcli-3nz.5","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:48.236283673Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
41
|
+
{"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}
|
|
42
|
+
{"id":"dcli-3pt","title":"Define core Stripe CLI commands wrapping","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.038703413Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:27.143137180Z","closed_at":"2026-03-08T21:37:27.141876900Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
43
|
+
{"id":"dcli-3s2","title":"Define core Vercel CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.249360433Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.249360433Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
44
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
45
|
+
{"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}
|
|
46
|
+
{"id":"dcli-5ix","title":"Document Vercel CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.786816126Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.786816126Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
47
|
+
{"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","metadata":"{}","thread_id":""},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
48
|
+
{"id":"dcli-6yj","title":"Achieve 100% coverage for mcp-local.js and namespace-passthrough.js","description":"Write unit tests for mcp-local registry commands and namespace passthrough logic.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:22:27.707188780Z","created_by":"jarancibia","updated_at":"2026-03-08T22:20:56.832067123Z","closed_at":"2026-03-08T22:20:56.831358454Z","close_reason":"Achieved 100% coverage for mcp-local.js and namespace-passthrough.js.","source_repo":".","compaction_level":0,"original_size":0}
|
|
49
|
+
{"id":"dcli-crv","title":"Add passthrough command for Linear CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.507373270Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.507373270Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
50
|
+
{"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:46.160034662Z","closed_at":"2026-03-08T19:57:46.159135419Z","close_reason":"Added unit tests for skills catalog provider lifecycle, sync, search, and provider:id retrieval.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia","metadata":"{}","thread_id":""},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
51
|
+
{"id":"dcli-id4","title":"Document Linear CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.746813105Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.746813105Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
52
|
+
{"id":"dcli-ltr","title":"Add passthrough command for Vercel CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.543378685Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.543378685Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
53
|
+
{"id":"dcli-pxq","title":"Add passthrough command for Supabase CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.366008217Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.366008217Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
54
|
+
{"id":"dcli-rz0","title":"Complete coverage for adapter-schema.js","description":"Add tests for all supported adapters and validation logic in adapter-schema.js.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:22:32.520742713Z","created_by":"jarancibia","updated_at":"2026-03-08T22:21:03.355990367Z","closed_at":"2026-03-08T22:21:03.355271357Z","close_reason":"Achieved 100% statement coverage for adapter-schema.js.","source_repo":".","compaction_level":0,"original_size":0}
|
|
55
|
+
{"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}
|
|
56
|
+
{"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
|
|
57
|
+
{"id":"dcli-yyr","title":"Implement config.js unit tests","description":"Write comprehensive unit tests for cli/config.js with 100% coverage goal, mocking fs, os, and fetch.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:38:25.925745082Z","created_by":"jarancibia","updated_at":"2026-03-08T20:40:56.041144293Z","closed_at":"2026-03-08T20:40:56.040705425Z","close_reason":"Implemented 100% statement coverage for config.js. Mocked fs, os, and fetch. Fixed a bug in setMcpServer where null items in mcp_servers array would cause a crash during sorting. Removed dead code (ttlValid).","source_repo":".","compaction_level":0,"original_size":0}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{"id":"dcli-15q","title":"Reposition dcli as universal cross-harness CLI router","description":"Update README.md to position dcli as a universal CLI router supporting dozens of harnesses (beads, gwc, commiat, and future community CLIs like gh, aws, docker, kubectl, etc.). Include new 'Cross-Harness Router Overview' section, enhance Architecture diagram with router-centric flow, expand Quick Start with multi-harness examples, rewrite CLI Usage for harness routing patterns, add 'Creating a Plugin Harness' section, and include 'Planned Harnesses' section showing future direction. Maintain backward compatibility messaging.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T20:08:23.610030300Z","created_by":"jarancibia","updated_at":"2026-03-08T20:10:30.975518848Z","closed_at":"2026-03-08T20:10:30.974698772Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
2
|
+
{"id":"dcli-15q.1","title":"Document currently supported harnesses","description":"Create docs/supported-harnesses.md documenting all currently supported harnesses: bundled (beads, gwc, commiat, OpenAPI, HTTP, MCP), popular community harnesses (gh, aws, gcloud, az, docker, kubectl, terraform, npm, pip, cargo, git, etc.). Include installation guidance, examples for key harnesses, and reference link from README.","status":"closed","priority":2,"issue_type":"feature","created_at":"2026-03-08T20:08:27.000272090Z","created_by":"jarancibia","updated_at":"2026-03-08T20:10:54.738213960Z","closed_at":"2026-03-08T20:10:54.737045536Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-15q.1","depends_on_id":"dcli-15q","type":"parent-child","created_at":"2026-03-08T20:08:27.000272090Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
3
|
+
{"id":"dcli-15q.2","title":"Create plugin harness development guide","description":"Create docs/plugin-harness-guide.md explaining how to create plugin harnesses: manifest structure (plugin.json), command wrapping vs. passthrough patterns, argument mapping, dependency checks and validation, testing locally with 'plugins install', publishing to registry, and detailed examples from bundled plugins (beads, gwc, commiat).","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:08:29.562056202Z","created_by":"jarancibia","updated_at":"2026-03-08T20:11:28.559550783Z","closed_at":"2026-03-08T20:11:28.558796804Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-15q.2","depends_on_id":"dcli-15q","type":"parent-child","created_at":"2026-03-08T20:08:29.562056202Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
4
|
+
{"id":"dcli-170","title":"Define core Railway CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.372166956Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.372166956Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
5
|
+
{"id":"dcli-182","title":"Initialize Supabase CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:04.892874172Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:04.892874172Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
6
|
+
{"id":"dcli-18l","title":"Define core Linear CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.281813589Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.281813589Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
7
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
8
|
+
{"id":"dcli-1ft","title":"Add plugin registry, remote git installs, and plugins explore","description":"Add plugins/plugins.json registry, plugins explore filters, remote git manifest installs, skills auto-discovery for plugins usage, and commiat registry entry","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T19:53:18.909662386Z","created_by":"jarancibia","updated_at":"2026-03-08T20:00:18.346569165Z","closed_at":"2026-03-08T20:00:18.346197072Z","close_reason":"Implemented plugin registry file, plugins explore filters, remote git plugin install support, commiat plugin manifest, and plugins usage auto-skill","source_repo":".","compaction_level":0,"original_size":0}
|
|
9
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
10
|
+
{"id":"dcli-1mc","title":"Implement ask.js unit tests","description":"Write comprehensive unit tests for cli/ask.js with 100% coverage goal, mocking LLM responses, executor, and console.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:54:54.928766024Z","created_by":"jarancibia","updated_at":"2026-03-08T20:55:56.296279039Z","closed_at":"2026-03-08T20:55:56.295812611Z","close_reason":"Implemented 117 unit tests for ask.js with 100% statement coverage. Mocked LLM fetch, executor, and console output. Handled markdown stripping and error cases.","source_repo":".","compaction_level":0,"original_size":0}
|
|
11
|
+
{"id":"dcli-1of","title":"Document Stripe CLI plugin","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.537678829Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:35.704082460Z","closed_at":"2026-03-08T21:37:35.702759554Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
12
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
13
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
14
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
15
|
+
{"id":"dcli-20o","title":"Add commiat supercli plugin manifest to commiat repo","description":"Add plugins/supercli/plugin.json in commiat repository and validate local git install flow from dcli","status":"closed","priority":1,"issue_type":"feat","created_at":"2026-03-08T20:13:38.873650607Z","created_by":"jarancibia","updated_at":"2026-03-08T20:16:30.786915224Z","closed_at":"2026-03-08T20:16:30.785869803Z","close_reason":"Added commiat plugin manifest upstream and validated registry remote install, doctor, and passthrough","source_repo":".","compaction_level":0,"original_size":0}
|
|
16
|
+
{"id":"dcli-24w","title":"Add passthrough command for Railway CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.591331888Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.591331888Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
17
|
+
{"id":"dcli-2a6","title":"Add passthrough command for Stripe CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.289038243Z","created_by":"jarancibia","updated_at":"2026-03-08T21:25:29.289038243Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
18
|
+
{"id":"dcli-2gy","title":"Initialize Linear CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.060221135Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.060221135Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
19
|
+
{"id":"dcli-2i3","title":"Define core Supabase CLI commands wrapping","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.118469911Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.118469911Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
20
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
21
|
+
{"id":"dcli-2pw","title":"Document Supabase CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.611100024Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.611100024Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
22
|
+
{"id":"dcli-2q1","title":"Extend skills command for providers sync and search","description":"Add skills providers list/add/remove/show, skills sync, and skills search while preserving existing list/get/teach behavior.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:37.026431614Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.687222705Z","closed_at":"2026-03-08T19:57:45.686641965Z","close_reason":"Extended skills command with providers list/add/remove/show, sync, search, and catalog listing mode.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2q1","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:44.939384039Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
23
|
+
{"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}
|
|
24
|
+
{"id":"dcli-2sf","title":"Document Railway CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.805873356Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.805873356Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
25
|
+
{"id":"dcli-2tf","title":"Complete plugin subsystem unit tests","description":"Achieve 100% coverage for plugins-command.js, plugins-store.js, and plugins-registry.js.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:58:24.240011818Z","created_by":"jarancibia","updated_at":"2026-03-08T21:02:40.543353776Z","closed_at":"2026-03-08T21:02:40.542502146Z","close_reason":"Achieved 100% statement coverage for the entire plugin subsystem: plugins-command.js, plugins-manager.js, plugins-store.js, and plugins-registry.js. Implemented extensive mocks for fs, git, and child_process.","source_repo":".","compaction_level":0,"original_size":0}
|
|
26
|
+
{"id":"dcli-2vy","title":"Initialize Stripe CLI plugin directory and manifest","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:28.802380692Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:15.062449799Z","closed_at":"2026-03-08T21:37:15.061158668Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
27
|
+
{"id":"dcli-2w4","title":"Achieve 100% coverage for skills.js","description":"Implement comprehensive unit tests for all subcommands in skills.js, including providers, sync, search, and YAML rendering logic.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T21:22:23.616011605Z","created_by":"jarancibia","updated_at":"2026-03-08T22:20:52.235261675Z","closed_at":"2026-03-08T22:20:52.234485980Z","close_reason":"Achieved 100% statement coverage for skills.js, including all subcommands and YAML rendering logic.","source_repo":".","compaction_level":0,"original_size":0}
|
|
28
|
+
{"id":"dcli-2y1","title":"Add documentation examples and cross-references","description":"Create docs/plugin-examples.md with real manifest examples, update README links to documentation, add CLI examples for router usage, ensure consistent terminology across docs, verify all code examples are executable. Polish and finalize documentation structure.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","updated_at":"2026-03-08T20:12:04.706268306Z","closed_at":"2026-03-08T20:12:04.705477172Z","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-2y1","depends_on_id":"dcli-15q.1","type":"waits-for","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","metadata":"{}","thread_id":""},{"issue_id":"dcli-2y1","depends_on_id":"dcli-15q.2","type":"waits-for","created_at":"2026-03-08T20:08:34.045161763Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
29
|
+
{"id":"dcli-2yj","title":"Initialize Vercel CLI plugin directory and manifest","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.885846057Z","created_by":"jarancibia","updated_at":"2026-03-08T23:52:02.132899213Z","closed_at":"2026-03-08T23:52:02.132012002Z","close_reason":"Implemented vercel plugin manifest and directory","source_repo":".","compaction_level":0,"original_size":0}
|
|
30
|
+
{"id":"dcli-2yv","title":"Initialize Railway CLI plugin directory and manifest","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:07.038707045Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:07.038707045Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
31
|
+
{"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}
|
|
32
|
+
{"id":"dcli-3e6","title":"Support provider:id retrieval for skills get","description":"Allow skills get <provider:id> to return skill markdown from indexed local providers.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:54:37.248310781Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.911625440Z","closed_at":"2026-03-08T19:57:45.910759800Z","close_reason":"Implemented provider:id retrieval path for skills get returning markdown from local index.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-3e6","depends_on_id":"dcli-uol","type":"blocks","created_at":"2026-03-08T19:54:45.084325141Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
33
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
34
|
+
{"id":"dcli-3ms","title":"Implement plugins-manager.js unit tests","description":"Write comprehensive unit tests for cli/plugins-manager.js, mocking filesystem and child_process.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T19:40:54.363074535Z","created_by":"jarancibia","updated_at":"2026-03-08T19:42:09.412485323Z","closed_at":"2026-03-08T19:42:09.412169198Z","close_reason":"Implemented 71 unit tests for plugins-manager.js with 100% statement coverage. Mocked fs, child_process, and plugins-store to test install, remove, and doctor functionality.","source_repo":".","compaction_level":0,"original_size":0}
|
|
35
|
+
{"id":"dcli-3nz","title":"Implement Docker Harness MVP","description":"Main umbrella task for transforming dcli into a universal cross-harness CLI router by implementing the Docker harness. Includes reusable safety framework, plugin manifest, docs, and tests.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T20:35:38.017021224Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.981050163Z","closed_at":"2026-03-08T20:52:13.980053979Z","close_reason":"Completed Docker Harness MVP with safety framework, manifest, docs, examples, and tests","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","harness","router"]}
|
|
36
|
+
{"id":"dcli-3nz.1","title":"Implement Non-TTY Safety Framework in Adapter Layer","description":"Implement a reusable validation layer in the core adapter to prevent non-TTY interactive hangs.\n\nDetailed Instructions:\n1. Modify `cli/adapters/process.js`: Detect non-TTY (`process.stdout.isTTY`). Implement a validation function that rejects commands with flags listed in `interactiveFlags` or if `requiresInteractive: true`.\n2. Error Handling: Return exit code 91 (safety_violation) with a clear message: 'Operation rejected: Cannot run interactive command in a non-TTY environment. Use non-interactive flags instead.'\n3. Schema Update: Update `cli/adapter-schema.js` to include `safetyLevel`, `interactiveFlags`, and `requiresInteractive`.\n4. Integration: Update `executor.js` to call the validation check before spawning processes.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.492172728Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.030891482Z","closed_at":"2026-03-08T20:52:13.030435512Z","close_reason":"Added non-TTY interactive safety validation in process adapter and schema support for safety metadata","source_repo":".","compaction_level":0,"original_size":0,"labels":["core","safety"],"dependencies":[{"issue_id":"dcli-3nz.1","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.492172728Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
37
|
+
{"id":"dcli-3nz.2","title":"Create Docker Plugin Manifest with 20 Core Commands","description":"Create the comprehensive Docker plugin manifest with safety metadata.\n\nDetailed Instructions:\n1. Create `plugins/docker/plugin.json`.\n2. Resources/Actions (20 total):\n - container: run, ps, ls, start, stop, restart, rm, exec, logs, inspect\n - image: build, images, ls, pull, push, rmi, tag\n - system: info, version, df\n3. Safety Metadata:\n - `run`, `exec`: Add `interactiveFlags: [\"-i\", \"-t\", \"--interactive\", \"--tty\"]`.\n - `attach`, `login`: Add `requiresInteractive: true`.\n4. Argument Coverage: Ensure all major flags (e.g., `-d`, `-p`, `-v`, `-e`) are mapped.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.696246165Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.149910609Z","closed_at":"2026-03-08T20:52:13.149458660Z","close_reason":"Created plugins/docker/plugin.json with 20 core commands and safety metadata for run/exec","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","manifest"],"dependencies":[{"issue_id":"dcli-3nz.2","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.696246165Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
38
|
+
{"id":"dcli-3nz.3","title":"Implement Automated Integration Tests for Docker Harness","description":"Verify the Docker harness and safety framework via automated tests.\n\nDetailed Instructions:\n1. Create `__tests__/docker-plugin.test.js`.\n2. Test Cases:\n - Command Routing: `supercli docker container ls` -> `docker ps`.\n - Argument Mapping: Verify flags and positionals are correctly passed to the shell.\n - Safety Violation: Mock a non-TTY environment and verify that `-it` flags are rejected with code 91.\n - Integration: Real `docker version` call if Docker is installed.\n3. Test Safety: Ensure tests don't leave dangling containers/images.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:35:47.882064564Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.353186701Z","closed_at":"2026-03-08T20:52:13.351963127Z","close_reason":"Added automated docker harness tests in __tests__/docker-plugin.test.js plus safety tests","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","test"],"dependencies":[{"issue_id":"dcli-3nz.3","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:47.882064564Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
39
|
+
{"id":"dcli-3nz.4","title":"Create Comprehensive Documentation for Docker Harness","description":"Document the Docker harness usage and capabilities.\n\nDetailed Instructions:\n1. `plugins/docker/README.md`: Quick start, installation, common commands.\n2. `plugins/docker/MANIFEST.md`: Complete command-by-command reference with all supported arguments and safety warnings.\n3. No Root Docs: Ensure no files are created in the project root's `docs/` directory; all plugin docs must be local to the plugin folder.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:35:48.044182326Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.557081720Z","closed_at":"2026-03-08T20:52:13.555982511Z","close_reason":"Added plugin-local documentation at plugins/docker/README.md and plugins/docker/MANIFEST.md","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","docs"],"dependencies":[{"issue_id":"dcli-3nz.4","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:48.044182326Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
40
|
+
{"id":"dcli-3nz.5","title":"Create Docker Workflow Examples","description":"Create 5 real-world example scripts demonstrating the Docker harness.\n\nDetailed Instructions:\n1. Create `plugins/docker/examples/`.\n2. Example Scripts:\n - `list-containers.sh`: Basic listing and filtering.\n - `run-container.sh`: Detached mode deployment.\n - `build-image.sh`: Automated build process.\n - `inspect-container.sh`: Using JSON output and dcli query logic.\n - `multi-step-workflow.sh`: Orchestrating pull -> run -> rm.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T20:35:48.236283673Z","created_by":"jarancibia","updated_at":"2026-03-08T20:52:13.776385054Z","closed_at":"2026-03-08T20:52:13.775362245Z","close_reason":"Added five docker workflow example scripts under plugins/docker/examples","source_repo":".","compaction_level":0,"original_size":0,"labels":["docker","examples"],"dependencies":[{"issue_id":"dcli-3nz.5","depends_on_id":"dcli-3nz","type":"parent-child","created_at":"2026-03-08T20:35:48.236283673Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
41
|
+
{"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}
|
|
42
|
+
{"id":"dcli-3pt","title":"Define core Stripe CLI commands wrapping","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:25:29.038703413Z","created_by":"jarancibia","updated_at":"2026-03-08T21:37:27.143137180Z","closed_at":"2026-03-08T21:37:27.141876900Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
43
|
+
{"id":"dcli-3s2","title":"Define core Vercel CLI commands wrapping","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.249360433Z","created_by":"jarancibia","updated_at":"2026-03-08T23:52:02.327633914Z","closed_at":"2026-03-08T23:52:02.326696721Z","close_reason":"Implemented vercel wrapped core command","source_repo":".","compaction_level":0,"original_size":0}
|
|
44
|
+
{"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","metadata":"{}","thread_id":""}]}
|
|
45
|
+
{"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}
|
|
46
|
+
{"id":"dcli-5ix","title":"Document Vercel CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.786816126Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.786816126Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
47
|
+
{"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","metadata":"{}","thread_id":""},{"issue_id":"dcli-5nb","depends_on_id":"dcli-3he","type":"blocks","created_at":"2026-03-08T18:08:32.103318644Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
48
|
+
{"id":"dcli-6yj","title":"Achieve 100% coverage for mcp-local.js and namespace-passthrough.js","description":"Write unit tests for mcp-local registry commands and namespace passthrough logic.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:22:27.707188780Z","created_by":"jarancibia","updated_at":"2026-03-08T22:20:56.832067123Z","closed_at":"2026-03-08T22:20:56.831358454Z","close_reason":"Achieved 100% coverage for mcp-local.js and namespace-passthrough.js.","source_repo":".","compaction_level":0,"original_size":0}
|
|
49
|
+
{"id":"dcli-crv","title":"Add passthrough command for Linear CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.507373270Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.507373270Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
50
|
+
{"id":"dcli-ecg","title":"Add unit tests for local skills knowledge base flow","description":"Cover provider registry, indexing, search, and provider:id retrieval semantics.","status":"closed","priority":2,"issue_type":"test","created_at":"2026-03-08T19:54:37.463195652Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:46.160034662Z","closed_at":"2026-03-08T19:57:46.159135419Z","close_reason":"Added unit tests for skills catalog provider lifecycle, sync, search, and provider:id retrieval.","source_repo":".","compaction_level":0,"original_size":0,"dependencies":[{"issue_id":"dcli-ecg","depends_on_id":"dcli-2q1","type":"blocks","created_at":"2026-03-08T19:54:45.314171599Z","created_by":"jarancibia","metadata":"{}","thread_id":""},{"issue_id":"dcli-ecg","depends_on_id":"dcli-3e6","type":"blocks","created_at":"2026-03-08T19:54:45.588901979Z","created_by":"jarancibia","metadata":"{}","thread_id":""}]}
|
|
51
|
+
{"id":"dcli-id4","title":"Document Linear CLI plugin","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:08.746813105Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:08.746813105Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
52
|
+
{"id":"dcli-ltr","title":"Add passthrough command for Vercel CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:06.543378685Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:06.543378685Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
53
|
+
{"id":"dcli-pxq","title":"Add passthrough command for Supabase CLI","status":"open","priority":2,"issue_type":"task","created_at":"2026-03-08T21:28:05.366008217Z","created_by":"jarancibia","updated_at":"2026-03-08T21:28:05.366008217Z","source_repo":".","compaction_level":0,"original_size":0}
|
|
54
|
+
{"id":"dcli-rz0","title":"Complete coverage for adapter-schema.js","description":"Add tests for all supported adapters and validation logic in adapter-schema.js.","status":"closed","priority":2,"issue_type":"task","created_at":"2026-03-08T21:22:32.520742713Z","created_by":"jarancibia","updated_at":"2026-03-08T22:21:03.355990367Z","closed_at":"2026-03-08T22:21:03.355271357Z","close_reason":"Achieved 100% statement coverage for adapter-schema.js.","source_repo":".","compaction_level":0,"original_size":0}
|
|
55
|
+
{"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}
|
|
56
|
+
{"id":"dcli-uol","title":"Add local skills provider registry and index","description":"Implement local_fs and repo_fs provider registry with persistent index cache for skills discovery.","status":"closed","priority":1,"issue_type":"feature","created_at":"2026-03-08T19:54:36.900938772Z","created_by":"jarancibia","updated_at":"2026-03-08T19:57:45.548791188Z","closed_at":"2026-03-08T19:57:45.548206406Z","close_reason":"Implemented local skills provider registry and persistent skills index cache with local_fs/repo_fs defaults.","source_repo":".","compaction_level":0,"original_size":0}
|
|
57
|
+
{"id":"dcli-yyr","title":"Implement config.js unit tests","description":"Write comprehensive unit tests for cli/config.js with 100% coverage goal, mocking fs, os, and fetch.","status":"closed","priority":1,"issue_type":"task","created_at":"2026-03-08T20:38:25.925745082Z","created_by":"jarancibia","updated_at":"2026-03-08T20:40:56.041144293Z","closed_at":"2026-03-08T20:40:56.040705425Z","close_reason":"Implemented 100% statement coverage for config.js. Mocked fs, os, and fetch. Fixed a bug in setMcpServer where null items in mcp_servers array would cause a crash during sorting. Removed dead code (ttlValid).","source_repo":".","compaction_level":0,"original_size":0}
|