Search documentation

Find a page in the Andurel docs.

Agent Workflows

Andurel's CLI exposes structured discovery and mutation reports for agents and automation.

Discover before acting

 1andurel --agent --help
 2andurel commands --json
 3andurel project info --json
 4andurel config show --json
 5andurel routes --json
 6andurel models --json
 7andurel migrations --json
 8andurel controllers --json
 9andurel views --json
10andurel jobs --json

Use the returned command tree and project metadata instead of assuming a v1 command or directory still exists.

Output and projections

Use --json for the response envelope, --agent for structured agent output, --md for Markdown where supported, and --quiet to suppress non-essential progress. --jq, --ids-only, and --count provide smaller projections where supported.

Preview safe mutations

1andurel new orbit --dry-run --diff --json
2andurel generate model Product --dry-run --diff --json
3andurel generate query ProductReport --dry-run --diff --json
4andurel generate scaffold Product --dry-run --diff --json
5andurel extension add docker --dry-run --diff --json

Review created, updated, and deleted files, route additions, commands, warnings, and breadcrumbs before applying changes. A v2 migration is intentionally manual; do not point andurel upgrade at a v1 project to cross the major version.

Install the embedded skill

1andurel skill show --json
2andurel skill install --harness codex,claude

Automation must pass at least one harness so installation never waits for an interactive selection.