mirror of
https://github.com/outbackdingo/optimclaw.git
synced 2026-08-30 08:17:53 +00:00
- Add `ironclaw logs` to tail gateway.log with reverse-seek (O(output) memory, no full-file load) - Add `--follow` for live SSE streaming from /api/logs/events - Add `--level` to get/set runtime log level via /api/logs/level - Support --json, --plain, --local-time, --url, --token, --timeout flags - Respect --config for gateway address/token resolution (consistent with other CLI commands) - Fail explicitly when --config points to invalid file instead of silent fallback - Wire Logs variant into Command enum and main.rs dispatch - Add 9 unit tests (tail_file chunked read, colorize, timestamp conversion, JSON output) - Update FEATURE_PARITY.md: logs ❌ → 🚧
53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
---
|
|
source: src/cli/mod.rs
|
|
expression: help
|
|
---
|
|
IronClaw is a secure AI assistant. Use 'ironclaw <subcommand> --help' for details.
|
|
Examples:
|
|
ironclaw run # Start the agent
|
|
ironclaw config list # List configs
|
|
|
|
Usage: ironclaw [OPTIONS] [COMMAND]
|
|
|
|
Commands:
|
|
run Run the AI agent
|
|
onboard Run interactive setup wizard
|
|
config Manage app configs
|
|
tool Manage WASM tools
|
|
registry Browse/install extensions
|
|
channels Manage channels
|
|
routines Manage routines
|
|
mcp Manage MCP servers
|
|
memory Manage workspace memory
|
|
pairing Manage DM pairing
|
|
service Manage OS service
|
|
skills Manage skills
|
|
doctor Run diagnostics
|
|
logs View and manage gateway logs
|
|
status Show system status
|
|
completion Generate completions
|
|
import Import from other AI systems
|
|
help Print this message or the help of the given subcommand(s)
|
|
|
|
Options:
|
|
--cli-only
|
|
Run in interactive CLI mode only (disable other channels)
|
|
|
|
--no-db
|
|
Skip database connection (for testing)
|
|
|
|
-m, --message <MESSAGE>
|
|
Single message mode - send one message and exit
|
|
|
|
-c, --config <CONFIG>
|
|
Configuration file path (optional, uses env vars by default)
|
|
|
|
--no-onboard
|
|
Skip first-run onboarding check
|
|
|
|
-h, --help
|
|
Print help (see a summary with '-h')
|
|
|
|
-V, --version
|
|
Print version
|