Overview
Thegrip status command displays a comprehensive overview of your Grip AI system, including configuration details, workspace status, active sessions, memory usage, and provider information.
Usage
Output Example
Information Sections
Model Configuration
Shows the active AI model settings:- Provider - Display name and model identifier
- Model - Full model path (e.g.,
anthropic/claude-sonnet-4-6) - Max Tokens - Maximum response length
- Temperature - Randomness setting (0.0 = deterministic, 1.0 = creative)
- Tool Iterations - Maximum tool calling loops
- Memory Window - Number of recent interactions to retain
Workspace Status
Shows workspace location and health:- Workspace - Absolute path to workspace directory
- Workspace Status -
InitializedorNot initialized - Sessions - Number of active session files
- MEMORY.md - Long-term memory file size
- HISTORY.md - Conversation history file size
Initialized- Workspace directory exists with required structureNot initialized- Workspace needs setup (rungrip agentto initialize)
- Shown in B (bytes), KB (kilobytes), or MB (megabytes)
not created- File doesn’t exist yet (normal for new installations)
Tool Configuration
Shows security and tool settings:- Sandbox Mode - Whether file access is restricted to workspace
- Shell Timeout - Maximum seconds for shell command execution
- MCP Servers - Number of configured Model Context Protocol servers
Enabled- File operations restricted to workspace directory onlyDisabled- File access based on trust mode settings
Channel Status
Shows messaging platform integration status:- telegram - Telegram bot connection state
- discord - Discord bot connection state
- slack - Slack bot connection state
enabled(green) - Channel is configured and activedisabled(dim) - Channel is not configured or turned off
Heartbeat Service
Shows autonomous agent check-in settings: Example:Every Xmin- Heartbeat is enabled with intervalDisabled- Heartbeat service is turned off
Configured Providers
Lists all providers with API key status: Example:key set(green) - Provider has API key configuredno key(dim) - Provider exists but no API key
Interpreting Status
Healthy System
- ✓ Provider configured with API key
- ✓ Workspace initialized
- ✓ Sessions exist (agent has been used)
- ✓ Memory files created
New Installation
- Run
grip agentto initialize workspace - Start a conversation to create memory files
Missing Configuration
Use Cases
Quick Health Check
Debugging Issues
Checking Session Count
Verifying Provider Configuration
Monitoring Memory Usage
Channel Status Check
Workspace Files
The status command checks these workspace files:Directory Structure
MEMORY.md
Stores long-term agent memory:- User preferences
- Important facts
- Project context
- Custom instructions
- < 100 KB - Normal for casual use
- 100 KB - 1 MB - Moderate usage
-
1 MB - Heavy usage, consider periodic cleanup
HISTORY.md
Stores recent conversation history:- Last 50 interactions (configurable via
memory_window) - Message summaries
- Tool execution results
- < 200 KB - Normal
- 200 KB - 1 MB - Active usage
-
1 MB - Very active, auto-compacts during conversations
Sessions
Each session file contains:- Message history
- Agent state
- Tool call records
- Model configuration
- 0 - New installation or no usage
- 1-5 - Normal usage
- 10+ - Multiple users or channels
Scripting with Status
Extract Specific Values
Monitor System Health
Session Cleanup Script
Related Commands
View Configuration
Modify Settings
Check Config Path
Test Provider Connection
Troubleshooting
Workspace Not Initialized
No API Key Configured
Large Memory Files
Many Old Sessions
Related Commands
- grip config - View and modify configuration
- grip agent - Start using the agent
- grip gateway - Start full platform
- grip onboard - Initial setup wizard