Search documentation

Find a page in the Andurel docs.

skill

andurel skill shows or installs the embedded Andurel agent skill.

1andurel skill show
2andurel skill show --json
3andurel skill install --harness claude,codex
4andurel skill install --harness pi --harness opencode

Supported harnesses: claude, codex, pi, opencode, crush. Install once per harness so agents discover commands, generators, and project layout without inventing paths. Automation must pass --harness so installation never waits for interactive selection.

Show

1andurel skill show

Prints the skill markdown (front matter plus body):

1---
2name: andurel
3description: Use this skill for Andurel framework projects when deciding where code belongs...
4---
5
6# Andurel
7
8Use this skill when working in an Andurel project or generating Andurel code.
9...

Structured form:

1andurel skill show --json
1{
2  "ok": true,
3  "data": {
4    "name": "andurel",
5    "body": "---\nname: andurel\n..."
6  },
7  "summary": "Loaded Andurel skill"
8}

Install

1andurel skill install --harness claude,codex --json
 1{
 2  "ok": true,
 3  "data": {
 4    "name": "andurel",
 5    "installations": [
 6      {
 7        "harness": "claude",
 8        "path": "/home/you/orbit/.claude/skills/andurel/SKILL.md"
 9      },
10      {
11        "harness": "codex",
12        "path": "/home/you/orbit/.codex/skills/andurel/SKILL.md"
13      }
14    ]
15  },
16  "summary": "Installed Andurel skill for Claude, Codex"
17}

A single harness also sets data.path to that SKILL.md. Re-run install after CLI upgrades to refresh the embedded skill text.

See Agentic Development and Agent Output.