Skip to content
DevelopersTerminal

Plugin CLI reference


Install and manage the pinned first-party Atoi plugin pack.

On this page

Use this page to inspect every public atoi plugin command, its accepted flags, and one runnable example. Return to the CLI reference index to choose another command group.

atoi pluginInstall and manage the pinned first-party Atoi plugin pack.

CommandWhat it does
atoi plugin listList installed Atoi plugins.
atoi plugin viewRead the installed first-party Atoi plugin.
atoi plugin installInstall the pinned first-party plugin pack.
atoi plugin enableEnable the installed Atoi plugin.
atoi plugin disableDisable the installed Atoi plugin.
atoi plugin removeRemove the installed Atoi plugin.
atoi plugin syncCompare the installed plugin provenance with the pinned pack.

#plugin list

List installed Atoi plugins.

atoi plugin list

FlagTypeDefaultValuesWhat it does
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin list

bash
atoi plugin list --json

#plugin view

Read the installed first-party Atoi plugin.

atoi plugin view <plugin-id>

FlagTypeDefaultValuesWhat it does
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin view

bash
atoi plugin view atoi --json

#plugin install

Install the pinned first-party plugin pack.

atoi plugin install creative-int/atoi-plugins [--version <version>] [--from <path>] [--idempotency-key <key>]

FlagTypeDefaultValuesWhat it does
--versionstringRequire the loaded pack to match this version.
--fromstringLoad the pack from a local path.
--idempotency-keystringReuse a mutation identity when you safely retry the same action.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin install

bash
atoi plugin install creative-int/atoi-plugins --json

#plugin enable

Enable the installed Atoi plugin.

atoi plugin enable <plugin-id> [--idempotency-key <key>]

FlagTypeDefaultValuesWhat it does
--idempotency-keystringReuse a mutation identity when you safely retry the same action.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin enable

bash
atoi plugin enable atoi --json

#plugin disable

Disable the installed Atoi plugin.

atoi plugin disable <plugin-id> [--idempotency-key <key>]

FlagTypeDefaultValuesWhat it does
--idempotency-keystringReuse a mutation identity when you safely retry the same action.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin disable

bash
atoi plugin disable atoi --json

#plugin remove

Remove the installed Atoi plugin.

atoi plugin remove <plugin-id> --confirm [--idempotency-key <key>]

FlagTypeDefaultValuesWhat it does
--confirm requiredbooleanConfirm the exact consequential action after you inspect its target.
--idempotency-keystringReuse a mutation identity when you safely retry the same action.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin remove

bash
atoi plugin remove atoi --confirm --json

#plugin sync

Compare the installed plugin provenance with the pinned pack.

atoi plugin sync [plugin-id] [--from <path>]

FlagTypeDefaultValuesWhat it does
--fromstringLoad the observed pack from a local path.
--jsonbooleanfalseEmit the canonical JSON envelope.
--ndjsonbooleanfalseEmit one canonical JSON envelope per line.
--formatstringtexttext, jsonChoose human text or the JSON envelope.
--help -hbooleanShow command help.

#Run plugin sync

bash
atoi plugin sync atoi --json

Was this useful?