Documentation Index
Fetch the complete documentation index at: https://mintlify.com/nearai/ironclaw/llms.txt
Use this file to discover all available pages before exploring further.
ironclaw status
Display system health, configuration status, and component availability.Usage
Output
The status command displays information about:Version
Database
- connected (PostgreSQL) - Successfully connected to PostgreSQL
- libSQL (/path/to/ironclaw.db) - Using local libSQL database
- libSQL (/path/to/ironclaw.db + Turso sync) - libSQL with Turso cloud sync enabled
- not configured - No database configured (DATABASE_URL not set)
- error (…) - Connection failed with error message
Session
- found - NEAR AI session exists (OAuth authenticated)
- not found (run
ironclaw onboard) - No session file (need to authenticate)
Secrets
- configured (env) - Master key set via SECRETS_MASTER_KEY environment variable
- env not set (keychain may be configured) - Not in environment (may be in OS keychain)
The status command does not probe the OS keychain to avoid triggering password dialogs. If onboarding completed with keychain storage, the key is configured even if not shown here.
Embeddings
- enabled - Shows provider (openai, nearai, ollama) and model name
- disabled - Embeddings not configured (memory search will use full-text only)
WASM Tools
- N installed - Number of .wasm files found
- directory not found - Tools directory doesn’t exist yet
Channels
- cli - Always available (REPL)
- http:PORT - HTTP webhook server on specified port
- N wasm - Number of WASM channels (Telegram, Slack, etc.)
Heartbeat
- enabled - Periodic background tasks active with interval in seconds
- disabled - Heartbeat system not active
MCP Servers
- N enabled / M configured - Number of active vs total configured servers
- none configured - No MCP servers set up
Configuration Path
Example Output
Use Cases
Quick Health Check
Troubleshooting
CI/CD Integration
Related Commands
ironclaw doctor
Run comprehensive diagnostics
ironclaw onboard
Configure IronClaw
ironclaw config
Manage configuration
Configuration
Configuration guide
Comparison: status vs doctor
| Command | Purpose | Checks | Output |
|---|---|---|---|
status | Quick health overview | Database, session, tools count | Summary table |
doctor | Comprehensive diagnostics | All dependencies, validation, network | Detailed pass/fail report |
status for quick checks and doctor for thorough troubleshooting.