agent-pulse
jane-o-o-o-o/agent-pulse-skills
Inspect local AI-agent activity across 13+ platforms with cost, token, and health analytics.
What is agent-pulse?
Agent Pulse is a CLI tool that aggregates logs from multiple AI coding agents (Claude Code, Cursor, Aider, DeepSeek, Copilot, and others) to provide unified visibility into sessions, token usage, model costs, and performance. Use it when you need to analyze agent activity, forecast costs, diagnose setup issues, or export metrics.
- Query sessions, tokens, and tool calls across Hermes, Claude Code, Codex, DeepSeek, OpenClaw, Copilot, Aider, Qwen, OpenCode, Goose, Cursor, Antigravity, and Amp
- Analyze model usage, estimated costs, and cost breakdowns by source or time period
- Generate forecasts, anomaly detection, and cost optimization recommendations
- Run health checks, composite scoring, and setup diagnostics
- Export reports in markdown/HTML and expose metrics via Prometheus, REST API, or MCP
- Search sessions, compare periods or projects, and visualize activity heatmaps
How to install agent-pulse
npx skills add https://github.com/jane-o-o-o-o/agent-pulse-skills --skill agent-pulse- Python 3.7+ and pip
- PyPI package agentpulse-cli (install via: pip install agentpulse-cli)
- On Windows: set PYTHONUTF8=1 and PYTHONIOENCODING=utf-8 environment variables before running commands
How to use agent-pulse
- 1.Run `agent-pulse doctor --json` if data is missing or setup help is needed
- 2.Use `agent-pulse status --json` for current overview or `agent-pulse --json` for full dashboard
- 3.Apply time filters (e.g., `--hours 24` or `--hours 168`) and platform filters (e.g., `-P cursor`) to scope queries
- 4.For cost analysis, combine `status`, `models`, and `top --sort cost` commands
- 5.Use `agent-pulse forecast --json`, `anomaly --json`, or `optimize --json` for trends and recommendations
- 6.Export reports with `agent-pulse export -f markdown` or `agent-pulse export-html`
- 7.Start web dashboard with `agent-pulse web --port 8765` or REST API with `agent-pulse api --port 8766` if needed
Use cases
- Track total token spend and cost across all local AI agents over the past 24 hours or week
- Identify which models or agent platforms are most expensive and optimize accordingly
- Diagnose missing agent logs or configuration issues with the doctor command
- Export daily/weekly reports for billing or performance review
- Expose Agent Pulse data to other AI clients or monitoring systems via MCP, REST API, or Prometheus metrics
- Developers managing multiple AI coding agents locally
- Teams tracking AI tool costs and token budgets
- DevOps/SRE monitoring agent health and performance
- Anyone auditing or forecasting AI infrastructure spend
agent-pulse FAQ
Hermes, Claude Code, Codex, DeepSeek, OpenClaw, Copilot, Aider, Qwen, OpenCode, Goose, Cursor, Antigravity, and Amp. Use the `-P/--platform` flag to filter by a specific agent.
Use `--hours N` to look back N hours (e.g., `--hours 24` for the past day, `--hours 168` for the past week). Default varies by command.
Agent Pulse calculates cost based on its local model pricing table and token counts. Treat it as an estimate; actual costs depend on your API provider's rates.
Run `agent-pulse export -f markdown`, `agent-pulse export-html`, or `agent-pulse report --period daily` for human-readable reports. Use `--json` flags with any command for programmatic output.
Yes. Use `agent-pulse web --port 8765` for a browser dashboard, `agent-pulse api --port 8766` for REST API, `agent-pulse metrics --format prometheus` for monitoring, or `agent-pulse mcp` to expose tools to other AI clients.
Full instructions (SKILL.md)
Source of truth, from jane-o-o-o-o/agent-pulse-skills.
name: agent-pulse description: Use Agent Pulse to inspect local AI-agent activity across Hermes, Claude Code, Codex, DeepSeek, OpenClaw, Copilot, Aider, Qwen, OpenCode, Goose, Cursor, Antigravity, and Amp logs. Use when the user asks about AI-agent sessions, tokens, tool/search calls, model usage, estimated cost, budgets, forecasts, health checks, reports, setup diagnosis, web/API/metrics exports, or MCP integration.
Agent Pulse
Purpose
Use the installed agent-pulse CLI as the source of truth for local AI-agent activity. The PyPI package is agentpulse-cli, while the command remains agent-pulse. Prefer running commands and summarizing their output over reading the Agent Pulse source code.
Always enable UTF-8 on Windows before running commands because Agent Pulse output contains emoji and box drawing:
$env:PYTHONUTF8='1'
$env:PYTHONIOENCODING='utf-8'
If agent-pulse is not on PATH, ask before installing dependencies. If the user approves, install the PyPI package or try running from a local project checkout:
pip install agentpulse-cli
python -m agent_pulse.cli --version
Source Keys
Use -P/--platform when the user asks about one agent tool instead of all local data:
hermes, claude, codex, deepseek, openclaw, copilot, aider, qwen,
opencode, goose, cursor, antigravity, amp
Choose Commands
Use this command selection table first:
| User wants | Run |
|---|---|
| Current status | agent-pulse status --json |
| Full dashboard | agent-pulse --json or agent-pulse --no-banner |
| Demo data | agent-pulse demo --json |
| Setup diagnosis | agent-pulse doctor --json |
| Recent sessions | agent-pulse --json --hours 24 --limit 20 |
| Top sessions | agent-pulse top --sort tokens --json |
| Top expensive sessions | agent-pulse top --sort cost --json --hours 168 |
| Model cost analysis | agent-pulse models --json |
| Model ranking | agent-pulse leaderboard --json --rank-by efficiency |
| Cost savings | agent-pulse optimize --json |
| Budget status | agent-pulse budget --json |
| Cost forecast | agent-pulse forecast --json |
| Cost anomaly check | agent-pulse anomaly --json |
| Health/CI check | agent-pulse health --json |
| Composite score | agent-pulse score --json |
| Search sessions | agent-pulse search "<query>" --json |
| Compare periods | agent-pulse compare --json |
| Compare projects | agent-pulse compare-projects --json |
| Activity calendar | agent-pulse heatmap --json |
| Smart recommendations | agent-pulse insights --json |
| Prometheus metrics | agent-pulse metrics --format prometheus |
| Export report | agent-pulse export -f markdown or agent-pulse export-html |
| Web dashboard | agent-pulse web --port 8765 |
| REST API | agent-pulse api --port 8766 |
| MCP tools | agent-pulse mcp --list-tools |
If the installed command lacks an option, run agent-pulse <command> --help and adapt.
Workflow
- Start with
agent-pulse doctor --jsononly when the user asks why data is missing, asks for setup help, or a normal data command returns no sessions. - Use JSON output whenever possible. Summarize the fields that matter: sessions, tokens, tools, search calls, model breakdown, source breakdown, estimated cost, warnings.
- Use time filters for scoped questions. Default to 24 hours for "recent" and 168 hours for "this week":
agent-pulse status --json --hours 24
agent-pulse --json --hours 168 --limit 50
- Use platform filters when the user asks about a specific agent system:
agent-pulse --json -P codex --hours 24
agent-pulse --json -P claude --hours 24
agent-pulse top --json -P aider --sort cost
agent-pulse status --json -P cursor
- For cost questions, pair summary, model, and top-session views:
agent-pulse status --json --hours 24
agent-pulse models --json --hours 24
agent-pulse top --sort cost --json --hours 24
agent-pulse optimize --json --hours 168
- For trend and risk questions, use forecast/history/compare/anomaly:
agent-pulse forecast --json
agent-pulse history --json
agent-pulse compare --json
agent-pulse anomaly --json
- For setup, use the discovery commands before guessing paths:
agent-pulse doctor --json
agent-pulse scan --json --details
agent-pulse config show
Interpreting Results
- Treat
total_cost_usdas an estimate based on Agent Pulse's local model pricing table. - Report both cost and token volume; low-cost models can still have very high token usage.
- Distinguish sources such as
codex,claude,hermes,deepseek,openclaw,aider,cursor,opencode, andgoose. - Mention if
doctorreports missing optional sources, missingdev_root, or optional web dependencies. - If no sessions appear, check
doctor, then try a wider time window such as--hours 168. - Check whether the user asked for a source (
-P) filter, a model filter, or a project comparison before giving overall totals. - If a command emits plain text instead of JSON or fails because an installed version is older, run
agent-pulse <command> --helpand use the closest supported option.
Reports
For a short human-readable answer, run JSON commands and summarize.
For artifacts, prefer:
agent-pulse report --period daily
agent-pulse export -f markdown
agent-pulse export-html
Do not invent exact savings or costs. Use the CLI output.
Integrations
Use the web and API extras only when the user asks for a browser dashboard or programmatic server. Ask before installing missing extras:
pip install "agentpulse-cli[web]"
agent-pulse web --port 8765
agent-pulse api --port 8766
For monitoring pipelines:
agent-pulse metrics --format prometheus
agent-pulse health --cost-limit 100 --token-limit 1000000 --json
MCP
Use MCP mode when the user wants other AI clients to query Agent Pulse:
agent-pulse mcp --list-tools
agent-pulse mcp
When explaining MCP, mention that it exposes tools such as status, forecast, top sessions, model analytics, optimization, health, search, and leaderboard.
Local Helper
This skill includes scripts/run_agent_pulse_snapshot.py, which runs a compact set of JSON-friendly Agent Pulse checks and prints a combined summary:
python scripts/run_agent_pulse_snapshot.py --hours 24 --days 7
Related skills
More from jane-o-o-o-o/agent-pulse-skills and the wider catalog.
find-skills
Discover and install agent skills to extend your coding agent's capabilities on demand
frontend-design
Build visually distinctive UI with opinionated aesthetic direction, typography, and layout choices that avoid templated defaults.
vercel-react-best-practices
70 React/Next.js performance rules from Vercel Engineering, prioritized by impact for writing, reviewing, and refactoring code.
agent-browser
Fast browser automation CLI for AI agents — navigate, click, scrape, screenshot, and test via Chrome CDP
web-design-guidelines
Review UI code against Web Interface Guidelines for accessibility, UX, and design best practices
finetuning
Fine-tune models on Azure AI Foundry with SFT, DPO, or RFT training methods.