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,92 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cline",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Cline CLI plugin with non-interactive task wrappers and passthrough",
|
|
5
|
+
"source": "https://github.com/cline/cline",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "cline"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "cline",
|
|
15
|
+
"resource": "cli",
|
|
16
|
+
"action": "version",
|
|
17
|
+
"description": "Show Cline CLI version",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "cline",
|
|
21
|
+
"baseArgs": ["--version"],
|
|
22
|
+
"parseJson": false,
|
|
23
|
+
"missingDependencyHelp": "Please install the Cline CLI to use this command."
|
|
24
|
+
},
|
|
25
|
+
"args": []
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"namespace": "cline",
|
|
29
|
+
"resource": "task",
|
|
30
|
+
"action": "run",
|
|
31
|
+
"description": "Run a non-interactive Cline task in act mode with streamed JSON events",
|
|
32
|
+
"adapter": "process",
|
|
33
|
+
"adapterConfig": {
|
|
34
|
+
"command": "cline",
|
|
35
|
+
"baseArgs": ["-a", "-y", "--json"],
|
|
36
|
+
"positionalArgs": ["prompt"],
|
|
37
|
+
"flagsBeforePositionals": true,
|
|
38
|
+
"stream": "jsonl",
|
|
39
|
+
"parseJson": false,
|
|
40
|
+
"timeout_ms": 15000,
|
|
41
|
+
"missingDependencyHelp": "Please install the Cline CLI to use this command."
|
|
42
|
+
},
|
|
43
|
+
"args": [
|
|
44
|
+
{ "name": "prompt", "type": "string", "required": true },
|
|
45
|
+
{ "name": "cwd", "type": "string", "required": false },
|
|
46
|
+
{ "name": "model", "type": "string", "required": false },
|
|
47
|
+
{ "name": "timeout", "type": "integer", "required": false },
|
|
48
|
+
{ "name": "continue", "type": "boolean", "required": false },
|
|
49
|
+
{ "name": "images", "type": "string[]", "required": false }
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"namespace": "cline",
|
|
54
|
+
"resource": "task",
|
|
55
|
+
"action": "plan",
|
|
56
|
+
"description": "Run a non-interactive Cline task in plan mode with streamed JSON events",
|
|
57
|
+
"adapter": "process",
|
|
58
|
+
"adapterConfig": {
|
|
59
|
+
"command": "cline",
|
|
60
|
+
"baseArgs": ["-p", "-y", "--json"],
|
|
61
|
+
"positionalArgs": ["prompt"],
|
|
62
|
+
"flagsBeforePositionals": true,
|
|
63
|
+
"stream": "jsonl",
|
|
64
|
+
"parseJson": false,
|
|
65
|
+
"timeout_ms": 15000,
|
|
66
|
+
"missingDependencyHelp": "Please install the Cline CLI to use this command."
|
|
67
|
+
},
|
|
68
|
+
"args": [
|
|
69
|
+
{ "name": "prompt", "type": "string", "required": true },
|
|
70
|
+
{ "name": "cwd", "type": "string", "required": false },
|
|
71
|
+
{ "name": "model", "type": "string", "required": false },
|
|
72
|
+
{ "name": "timeout", "type": "integer", "required": false },
|
|
73
|
+
{ "name": "continue", "type": "boolean", "required": false },
|
|
74
|
+
{ "name": "images", "type": "string[]", "required": false }
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"namespace": "cline",
|
|
79
|
+
"resource": "_",
|
|
80
|
+
"action": "_",
|
|
81
|
+
"description": "Passthrough command to execute any Cline CLI command",
|
|
82
|
+
"adapter": "process",
|
|
83
|
+
"adapterConfig": {
|
|
84
|
+
"command": "cline",
|
|
85
|
+
"passthrough": true,
|
|
86
|
+
"parseJson": true,
|
|
87
|
+
"missingDependencyHelp": "Please install the Cline CLI to use this command."
|
|
88
|
+
},
|
|
89
|
+
"args": []
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# eza Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the eza CLI into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Ensure eza is available on your machine:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
eza --version
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Available Commands
|
|
14
|
+
|
|
15
|
+
### CLI Version (Wrapped)
|
|
16
|
+
|
|
17
|
+
Returns the eza CLI version via `eza --version`.
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
dcli eza cli version --json
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Full Passthrough
|
|
24
|
+
|
|
25
|
+
You can run any eza command through the `eza` namespace.
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
# List files one per line without color
|
|
29
|
+
dcli eza --oneline --color=never
|
|
30
|
+
|
|
31
|
+
# Long listing for a specific path
|
|
32
|
+
dcli eza --long .
|
|
33
|
+
|
|
34
|
+
# Show CLI help
|
|
35
|
+
dcli eza --help
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Output
|
|
39
|
+
|
|
40
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eza",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "eza CLI plugin for dcli",
|
|
5
|
+
"source": "https://eza.rocks",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "eza"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "eza",
|
|
15
|
+
"resource": "cli",
|
|
16
|
+
"action": "version",
|
|
17
|
+
"description": "Show eza CLI version",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "eza",
|
|
21
|
+
"baseArgs": ["--version"],
|
|
22
|
+
"parseJson": false,
|
|
23
|
+
"missingDependencyHelp": "Please install eza to use this command."
|
|
24
|
+
},
|
|
25
|
+
"args": []
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"namespace": "eza",
|
|
29
|
+
"resource": "_",
|
|
30
|
+
"action": "_",
|
|
31
|
+
"description": "Passthrough command to execute any eza CLI command",
|
|
32
|
+
"adapter": "process",
|
|
33
|
+
"adapterConfig": {
|
|
34
|
+
"command": "eza",
|
|
35
|
+
"passthrough": true,
|
|
36
|
+
"parseJson": true,
|
|
37
|
+
"missingDependencyHelp": "Please install eza to use this command."
|
|
38
|
+
},
|
|
39
|
+
"args": []
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Google Cloud CLI Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the Google Cloud CLI (`gcloud`) into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Install Google Cloud CLI with your preferred package manager, then verify it is available:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
gcloud --version
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Authenticate before running account or project commands:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
gcloud auth login
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Available Commands
|
|
20
|
+
|
|
21
|
+
### Account List (Wrapped)
|
|
22
|
+
|
|
23
|
+
Returns authenticated accounts via `gcloud auth list --format=json`.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
dcli gcloud account list --json
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Full Passthrough
|
|
30
|
+
|
|
31
|
+
You can run any Google Cloud CLI command through the `gcloud` namespace.
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# List projects
|
|
35
|
+
dcli gcloud projects list --format=json
|
|
36
|
+
|
|
37
|
+
# List compute zones
|
|
38
|
+
dcli gcloud compute zones list --format=json
|
|
39
|
+
|
|
40
|
+
# Show CLI help
|
|
41
|
+
dcli gcloud --help
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Output
|
|
45
|
+
|
|
46
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gcloud",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Google Cloud CLI plugin for dcli",
|
|
5
|
+
"source": "https://cloud.google.com/sdk/gcloud",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "gcloud"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "gcloud",
|
|
15
|
+
"resource": "account",
|
|
16
|
+
"action": "list",
|
|
17
|
+
"description": "List authenticated Google Cloud accounts",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "gcloud",
|
|
21
|
+
"baseArgs": ["auth", "list", "--format=json"],
|
|
22
|
+
"parseJson": true,
|
|
23
|
+
"missingDependencyHelp": "Please install Google Cloud CLI to use this command."
|
|
24
|
+
},
|
|
25
|
+
"args": []
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"namespace": "gcloud",
|
|
29
|
+
"resource": "_",
|
|
30
|
+
"action": "_",
|
|
31
|
+
"description": "Passthrough command to execute any Google Cloud CLI command",
|
|
32
|
+
"adapter": "process",
|
|
33
|
+
"adapterConfig": {
|
|
34
|
+
"command": "gcloud",
|
|
35
|
+
"passthrough": true,
|
|
36
|
+
"parseJson": true,
|
|
37
|
+
"missingDependencyHelp": "Please install Google Cloud CLI to use this command."
|
|
38
|
+
},
|
|
39
|
+
"args": []
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# GitHub CLI Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the official GitHub CLI (`gh`) into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Install GitHub CLI with your preferred package manager, then verify it is available:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
gh --version
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Authenticate before running account or repository operations:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
gh auth login
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Available Commands
|
|
20
|
+
|
|
21
|
+
### Account Status (Wrapped)
|
|
22
|
+
|
|
23
|
+
Returns GitHub CLI authentication status via `gh auth status --json hosts`.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
dcli gh account status --json
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Full Passthrough
|
|
30
|
+
|
|
31
|
+
You can run any GitHub CLI command through the `gh` namespace.
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# List your repositories
|
|
35
|
+
dcli gh repo list --limit 10 --json name,nameWithOwner,url
|
|
36
|
+
|
|
37
|
+
# Show pull requests in the current repo
|
|
38
|
+
dcli gh pr list --json number,title,state
|
|
39
|
+
|
|
40
|
+
# Show CLI help
|
|
41
|
+
dcli gh --help
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Output
|
|
45
|
+
|
|
46
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gh",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "GitHub CLI plugin for dcli",
|
|
5
|
+
"source": "https://cli.github.com/manual/",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "gh"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "gh",
|
|
15
|
+
"resource": "account",
|
|
16
|
+
"action": "status",
|
|
17
|
+
"description": "Show GitHub CLI authentication status for known hosts",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "gh",
|
|
21
|
+
"baseArgs": ["auth", "status"],
|
|
22
|
+
"jsonFlag": "--json",
|
|
23
|
+
"parseJson": true,
|
|
24
|
+
"missingDependencyHelp": "Please install GitHub CLI to use this command."
|
|
25
|
+
},
|
|
26
|
+
"args": []
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"namespace": "gh",
|
|
30
|
+
"resource": "_",
|
|
31
|
+
"action": "_",
|
|
32
|
+
"description": "Passthrough command to execute any GitHub CLI command",
|
|
33
|
+
"adapter": "process",
|
|
34
|
+
"adapterConfig": {
|
|
35
|
+
"command": "gh",
|
|
36
|
+
"passthrough": true,
|
|
37
|
+
"parseJson": true,
|
|
38
|
+
"missingDependencyHelp": "Please install GitHub CLI to use this command."
|
|
39
|
+
},
|
|
40
|
+
"args": []
|
|
41
|
+
}
|
|
42
|
+
]
|
|
43
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Helm Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the Helm CLI into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Install Helm with your preferred package manager, then verify it is available:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
helm version --short
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
If you plan to run cluster-backed commands, ensure your Kubernetes context is configured first.
|
|
14
|
+
|
|
15
|
+
## Available Commands
|
|
16
|
+
|
|
17
|
+
### CLI Version (Wrapped)
|
|
18
|
+
|
|
19
|
+
Returns Helm CLI version information via `helm version --short`.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
dcli helm cli version --json
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Full Passthrough
|
|
26
|
+
|
|
27
|
+
You can run any Helm command through the `helm` namespace.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# List releases as JSON
|
|
31
|
+
dcli helm list --output json
|
|
32
|
+
|
|
33
|
+
# List configured repos as JSON
|
|
34
|
+
dcli helm repo list --output json
|
|
35
|
+
|
|
36
|
+
# Show CLI help
|
|
37
|
+
dcli helm --help
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Output
|
|
41
|
+
|
|
42
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "helm",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Helm CLI plugin for dcli",
|
|
5
|
+
"source": "https://helm.sh/docs/helm/",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "helm"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "helm",
|
|
15
|
+
"resource": "cli",
|
|
16
|
+
"action": "version",
|
|
17
|
+
"description": "Show Helm CLI version",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "helm",
|
|
21
|
+
"baseArgs": ["version", "--short"],
|
|
22
|
+
"parseJson": false,
|
|
23
|
+
"missingDependencyHelp": "Please install Helm CLI to use this command."
|
|
24
|
+
},
|
|
25
|
+
"args": []
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"namespace": "helm",
|
|
29
|
+
"resource": "_",
|
|
30
|
+
"action": "_",
|
|
31
|
+
"description": "Passthrough command to execute any Helm CLI command",
|
|
32
|
+
"adapter": "process",
|
|
33
|
+
"adapterConfig": {
|
|
34
|
+
"command": "helm",
|
|
35
|
+
"passthrough": true,
|
|
36
|
+
"parseJson": true,
|
|
37
|
+
"missingDependencyHelp": "Please install Helm CLI to use this command."
|
|
38
|
+
},
|
|
39
|
+
"args": []
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# just Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the just CLI into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Ensure just is available on your machine:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
just --version
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Many `just` commands operate on a nearby `justfile`. Commands like `--help`, `--version`, and `--list --justfile <path>` are good non-interactive entry points.
|
|
14
|
+
|
|
15
|
+
## Available Commands
|
|
16
|
+
|
|
17
|
+
### CLI Version (Wrapped)
|
|
18
|
+
|
|
19
|
+
Returns the just CLI version via `just --version`.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
dcli just cli version --json
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Full Passthrough
|
|
26
|
+
|
|
27
|
+
You can run any just command through the `just` namespace.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# List recipes from a specific justfile
|
|
31
|
+
dcli just --list --justfile ./justfile
|
|
32
|
+
|
|
33
|
+
# Evaluate a variable from a justfile
|
|
34
|
+
dcli just --evaluate --justfile ./justfile version
|
|
35
|
+
|
|
36
|
+
# Show CLI help
|
|
37
|
+
dcli just --help
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Output
|
|
41
|
+
|
|
42
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "just",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "just CLI plugin for dcli",
|
|
5
|
+
"source": "https://just.systems/man/en/",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "just"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "just",
|
|
15
|
+
"resource": "cli",
|
|
16
|
+
"action": "version",
|
|
17
|
+
"description": "Show just CLI version",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "just",
|
|
21
|
+
"baseArgs": ["--version"],
|
|
22
|
+
"parseJson": false,
|
|
23
|
+
"missingDependencyHelp": "Please install just to use this command."
|
|
24
|
+
},
|
|
25
|
+
"args": []
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"namespace": "just",
|
|
29
|
+
"resource": "_",
|
|
30
|
+
"action": "_",
|
|
31
|
+
"description": "Passthrough command to execute any just CLI command",
|
|
32
|
+
"adapter": "process",
|
|
33
|
+
"adapterConfig": {
|
|
34
|
+
"command": "just",
|
|
35
|
+
"passthrough": true,
|
|
36
|
+
"parseJson": true,
|
|
37
|
+
"missingDependencyHelp": "Please install just to use this command."
|
|
38
|
+
},
|
|
39
|
+
"args": []
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# kubectl Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the Kubernetes `kubectl` CLI into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Install `kubectl` using your platform package manager, then verify it is available:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
kubectl version --client
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Ensure your kubeconfig is already configured for a cluster context:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
kubectl config current-context
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Available Commands
|
|
20
|
+
|
|
21
|
+
### Current Context (Wrapped)
|
|
22
|
+
|
|
23
|
+
Returns the active Kubernetes context via `kubectl config current-context`.
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
dcli kubectl config current-context --json
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Full Passthrough
|
|
30
|
+
|
|
31
|
+
You can run any `kubectl` command through the `kubectl` namespace.
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# List pods in the current namespace as JSON
|
|
35
|
+
dcli kubectl get pods -o json
|
|
36
|
+
|
|
37
|
+
# List namespaces as JSON
|
|
38
|
+
dcli kubectl get namespaces -o json
|
|
39
|
+
|
|
40
|
+
# Show CLI help
|
|
41
|
+
dcli kubectl --help
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Output
|
|
45
|
+
|
|
46
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kubectl",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Kubernetes kubectl plugin for dcli",
|
|
5
|
+
"source": "https://kubernetes.io/docs/reference/kubectl/",
|
|
6
|
+
"checks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "binary",
|
|
9
|
+
"name": "kubectl"
|
|
10
|
+
}
|
|
11
|
+
],
|
|
12
|
+
"commands": [
|
|
13
|
+
{
|
|
14
|
+
"namespace": "kubectl",
|
|
15
|
+
"resource": "config",
|
|
16
|
+
"action": "current-context",
|
|
17
|
+
"description": "Show the current Kubernetes context",
|
|
18
|
+
"adapter": "process",
|
|
19
|
+
"adapterConfig": {
|
|
20
|
+
"command": "kubectl",
|
|
21
|
+
"baseArgs": ["config", "current-context"],
|
|
22
|
+
"parseJson": false,
|
|
23
|
+
"missingDependencyHelp": "Please install kubectl to use this command."
|
|
24
|
+
},
|
|
25
|
+
"args": []
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"namespace": "kubectl",
|
|
29
|
+
"resource": "_",
|
|
30
|
+
"action": "_",
|
|
31
|
+
"description": "Passthrough command to execute any kubectl command",
|
|
32
|
+
"adapter": "process",
|
|
33
|
+
"adapterConfig": {
|
|
34
|
+
"command": "kubectl",
|
|
35
|
+
"passthrough": true,
|
|
36
|
+
"parseJson": true,
|
|
37
|
+
"missingDependencyHelp": "Please install kubectl to use this command."
|
|
38
|
+
},
|
|
39
|
+
"args": []
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# Linear Plugin Harness
|
|
2
|
+
|
|
3
|
+
This plugin integrates the community Linear CLI (`@schpet/linear-cli`) into dcli with one wrapped core command and full namespace passthrough.
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
Install the community CLI package (global or local):
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
# Global install
|
|
11
|
+
npm install -g @schpet/linear-cli
|
|
12
|
+
|
|
13
|
+
# Local install in this repo
|
|
14
|
+
npm install -D @schpet/linear-cli
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Verify the binary:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
linear --version
|
|
21
|
+
# if local only:
|
|
22
|
+
npx --no-install linear --version
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Note: `dcli plugins doctor linear` checks for `linear` on `PATH`; local-only installs can still be used in smoke tests through `npx --no-install linear`.
|
|
26
|
+
|
|
27
|
+
Authenticate before running account or issue operations:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
linear auth login
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Available Commands
|
|
34
|
+
|
|
35
|
+
### Account Whoami (Wrapped)
|
|
36
|
+
|
|
37
|
+
Returns the currently logged in Linear account user (`linear auth whoami`).
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
dcli linear account whoami --json
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Full Passthrough
|
|
44
|
+
|
|
45
|
+
You can run any Linear CLI command through the `linear` namespace.
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
# Show CLI help
|
|
49
|
+
dcli linear --help
|
|
50
|
+
|
|
51
|
+
# Show current user via passthrough
|
|
52
|
+
dcli linear auth whoami
|
|
53
|
+
|
|
54
|
+
# List issues (some setups require sort)
|
|
55
|
+
dcli linear issue list --sort manual
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Output
|
|
59
|
+
|
|
60
|
+
Wrapped commands and passthrough responses are returned in dcli envelope format when `--json` is used with dcli-level commands.
|