π¦ ClawHub
Mission Claw
by @tsangwailam
Log agent activities to Mission Claw dashboard with token usage tracking. Use when completing significant tasks, subagent work, or any action worth recording in the activity feed. Triggers on task completion, activity logging, or tracking agent work.
TERMINAL
clawhub install mission-clawπ About This Skill
name: mission-claw description: Log agent activities to Mission Claw dashboard with token usage tracking. Use when completing significant tasks, subagent work, or any action worth recording in the activity feed. Triggers on task completion, activity logging, or tracking agent work. binaries: [mclaw] install: npm install -g mission-claw homepage: https://github.com/tsangwailam/mcclaw repository: https://github.com/tsangwailam/mcclaw
Mission Claw Activity Logging
Log significant tasks to the Mission Claw activity feed for tracking agent work, token usage, and project progress.
Prerequisites
mclaw binary must be installed on the host system.session_status tool to retrieve current token usage.CLI Usage
mclaw log "Task description" \
--agent "AgentName" \
--project "ProjectName" \
--status completed \
--duration "Xm Ys" \
--input-tokens N \
--output-tokens N \
--total-tokens N
Required Fields
action - Brief task description (positional argument)--agent - Agent name (e.g., "J", "mission-claw", "type-alchemy")--total-tokens - Total tokens used (always include)Optional Fields
--details - Longer description of work done--project - Project name--status - completed (default), in_progress, or failed--duration - Time taken (e.g., "5m", "1h 30m")--input-tokens / --output-tokens - Token breakdownWhen to Log
Log after completing:
Getting Token Usage
Before logging, check your session's token usage:
session_status tool to see current tokensExamples
# Feature implementation
mclaw log "Added date-time filter to dashboard" \
--agent "mission-claw" \
--project "Mission Claw" \
--status completed \
--duration "10m" \
--total-tokens 15000Quick fix
mclaw log "Fixed timezone bug" \
--agent "J" \
--project "ContentMorph" \
--duration "2m" \
--total-tokens 3500In-progress work
mclaw log "Implementing payment flow" \
--agent "J" \
--project "TypeAlchemy" \
--status in_progress
Other Commands
mclaw list # Recent activities
mclaw list --agent J # Filter by agent
mclaw status # Quick stats and service status
mclaw dashboard start # Start web dashboard (localhost:3101 by default)
API Alternative
The CLI logs to a local daemon (defaulting to http://localhost:3100). You can also POST directly to the API:
POST http://localhost:3100/api/activity
{
"action": "Task name",
"agent": "J",
"project": "Project",
"status": "completed",
"totalTokens": 5000,
"inputTokens": 4000,
"outputTokens": 1000
}
π‘ Examples
# Feature implementation
mclaw log "Added date-time filter to dashboard" \
--agent "mission-claw" \
--project "Mission Claw" \
--status completed \
--duration "10m" \
--total-tokens 15000Quick fix
mclaw log "Fixed timezone bug" \
--agent "J" \
--project "ContentMorph" \
--duration "2m" \
--total-tokens 3500In-progress work
mclaw log "Implementing payment flow" \
--agent "J" \
--project "TypeAlchemy" \
--status in_progress
βοΈ Configuration
mclaw binary must be installed on the host system.session_status tool to retrieve current token usage.