Skill CLI reference
Inspect and manage account-level Skills with durable receipts.
Use this page to inspect every public atoi skill command, its accepted flags, and one runnable example.
atoi skillInspect and manage account-level Skills with durable receipts.
| Command | What it does |
|---|---|
atoi skill list | List account Skills and their state. |
atoi skill view | Read one Skill. |
atoi skill get | Read one Skill with the get alias. |
atoi skill enable | Enable one Skill. |
atoi skill disable | Disable one Skill. |
atoi skill remove | Remove one exact Skill. |
#skill list
List account Skills and their state.
atoi skill list
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run skill list
atoi skill list --json
{
"tool": "atoi_skills",
"arguments": {
"action": "list"
}
}
#skill view
Read one Skill.
atoi skill view <skill-id>
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run skill view
atoi skill view skl_6h2n --json
{
"tool": "atoi_skills",
"arguments": {
"action": "get",
"skill_id": "skl_6h2n"
}
}
#skill get
Read one Skill with the get alias.
atoi skill get <skill-id>
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run skill get
atoi skill get skl_6h2n --json
{
"tool": "atoi_skills",
"arguments": {
"action": "get",
"skill_id": "skl_6h2n"
}
}
#skill enable
Enable one Skill.
atoi skill enable <skill-id> [--idempotency-key <key>]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--idempotency-key | string | Reuse a mutation identity when you safely retry the same action. | ||
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run skill enable
atoi skill enable skl_6h2n --json
{
"tool": "atoi_skills",
"arguments": {
"action": "enable",
"skill_id": "skl_6h2n",
"idempotency_key": "skill_enable_1"
}
}
#skill disable
Disable one Skill.
atoi skill disable <skill-id> [--idempotency-key <key>]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--idempotency-key | string | Reuse a mutation identity when you safely retry the same action. | ||
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run skill disable
atoi skill disable skl_6h2n --json
{
"tool": "atoi_skills",
"arguments": {
"action": "disable",
"skill_id": "skl_6h2n",
"idempotency_key": "skill_disable_1"
}
}
#skill remove
Remove one exact Skill.
atoi skill remove <skill-id> --confirm [--idempotency-key <key>]
| Flag | Type | Default | Values | What it does |
|---|---|---|---|---|
--confirm required | boolean | Confirm the exact consequential action after you inspect its target. | ||
--idempotency-key | string | Reuse a mutation identity when you safely retry the same action. | ||
--json | boolean | false | Emit the canonical JSON envelope. | |
--ndjson | boolean | false | Emit one canonical JSON envelope per line. | |
--format | string | text | text, json | Choose human text or the JSON envelope. |
--help -h | boolean | Show command help. |
#Run skill remove
atoi skill remove skl_6h2n --confirm --json
{
"tool": "atoi_skills",
"arguments": {
"action": "remove",
"skill_id": "skl_6h2n",
"confirmation": true,
"idempotency_key": "skill_remove_1"
}
}
Read Run work from the terminal for the rest of this group, or the CLI reference index for every command.
Was this useful?