Skip to content
DevelopersTerminal

Skill CLI reference


Inspect and manage account-level Skills with durable receipts.

On this page

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

atoi skillInspect and manage account-level Skills with durable receipts.

CommandWhat it does
atoi skill listList account Skills and their state.
atoi skill viewRead one Skill.
atoi skill getRead one Skill with the get alias.
atoi skill enableEnable one Skill.
atoi skill disableDisable one Skill.
atoi skill removeRemove one exact Skill.

#skill list

List account Skills and their state.

atoi skill 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 skill list

bash
atoi skill list --json

#skill view

Read one Skill.

atoi skill view <skill-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 skill view

bash
atoi skill view skl_6h2n --json

#skill get

Read one Skill with the get alias.

atoi skill get <skill-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 skill get

bash
atoi skill get skl_6h2n --json

#skill enable

Enable one Skill.

atoi skill enable <skill-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 skill enable

bash
atoi skill enable skl_6h2n --json

#skill disable

Disable one Skill.

atoi skill disable <skill-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 skill disable

bash
atoi skill disable skl_6h2n --json

#skill remove

Remove one exact Skill.

atoi skill remove <skill-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 skill remove

bash
atoi skill remove skl_6h2n --confirm --json

Was this useful?