verify — Apothem CLI¶
Verify a harness adapter installation.
Synopsis¶
apothem verify --harness NAME
[--quiet|-q] [--verbose|-v]
[--format plain|json] [--json] [--no-color]
Checks whether the harness-native configuration file exists for the named adapter. Exits 0 when installed, 1 when not.
Options¶
| Option | Description |
|---|---|
--harness NAME |
Harness adapter to verify (required). |
--quiet, -q |
Suppress informational output; only errors are emitted. |
--verbose, -v |
Emit additional diagnostic output. |
--format plain\|json |
Output format (default: plain). |
--json |
Shorthand for --format json. |
--no-color |
Disable ANSI color codes in output. |
-h, --help |
Show help and exit. |
JSON output¶
{
"harness": "claude-code",
"installed": true,
"output_path": "C:\\Users\\Gad\\.claude\\CLAUDE.md"
}
installed is false when the configuration file is absent; in that case
the process exits with code 1 (the JSON document is still emitted on stdout).
Examples¶
apothem verify --harness claude-code
apothem verify --harness claude-code --json
Exit codes¶
| Code | Meaning |
|---|---|
| 0 | Harness is installed |
| 1 | Harness is not installed |
See also¶
- apothem install — install a harness configuration
- apothem update — re-apply current profile to a harness
- apothem doctor — system-wide install diagnostics