Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Analyze OpenClaw usage and generate optimized configs to reduce AI costs by 48%+ --- name: smartmeter description: Analyze OpenClaw usage and generate optimized configs to reduce AI costs by 48%+ version: 0.3.0 metadata: openclaw: emoji: "๐ฐ" category: "productivity" requires: bins: ["node"] node: ">=18.0.0" user-invocable: true capabilities: - cost-analysis - config-optimization - usage-monitoring keywords: - cost-optimization - ai-costs - token-monitoring - budget-management - config-generation Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/23/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
smartmeter is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Analyze OpenClaw usage and generate optimized configs to reduce AI costs by 48%+ --- name: smartmeter description: Analyze OpenClaw usage and generate optimized configs to reduce AI costs by 48%+ version: 0.3.0 metadata: openclaw: emoji: "๐ฐ" category: "productivity" requires: bins: ["node"] node: ">=18.0.0" user-invocable: true capabilities: - cost-analysis - config-optimization - usage-monitoring keywords: - cost-optimization - ai-costs - token-monitoring - budget-management - config-generation
Public facts
6
Change events
1
Artifacts
0
Freshness
Feb 23, 2026
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 23, 2026
Vendor
Vajih
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/vajih/openclaw-smartmeter.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Vajih
Protocol compatibility
OpenClaw
Auth modes
api_key
Machine-readable schemas
OpenAPI or schema references published
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
npx clawhub@latest install smartmeter
bash
npm install -g openclaw-smartmeter
bash
git clone https://github.com/vajih/openclaw-smartmeter.git cd openclaw-smartmeter npm install npm link
bash
smartmeter analyze
bash
# 1. Analyze usage (opens dashboard) smartmeter analyze [session-file.jsonl] # 2. Preview optimizations (without applying) smartmeter preview # 3. Apply optimizations to openclaw.json smartmeter apply # 4. Rollback if needed smartmeter rollback
bash
# Quick cost evaluation smartmeter evaluate examples/sample-session.jsonl # Open dashboard (if already analyzed) smartmeter dashboard # Export analysis as JSON smartmeter export --format json --output analysis.json # Show current version smartmeter --version # Get help smartmeter --help
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Analyze OpenClaw usage and generate optimized configs to reduce AI costs by 48%+ --- name: smartmeter description: Analyze OpenClaw usage and generate optimized configs to reduce AI costs by 48%+ version: 0.3.0 metadata: openclaw: emoji: "๐ฐ" category: "productivity" requires: bins: ["node"] node: ">=18.0.0" user-invocable: true capabilities: - cost-analysis - config-optimization - usage-monitoring keywords: - cost-optimization - ai-costs - token-monitoring - budget-management - config-generation
AI cost optimization for OpenClaw โ Analyze usage patterns, generate optimized configs, and cut costs by 48%+ without sacrificing quality.
SmartMeter helps you save money on AI API costs by:
openclaw.json configurationsTested on live OpenClaw data:
The key insight: 69% of tasks worked perfectly with cheaper models, while premium models were only needed for 15% of complex work.
npx clawhub@latest install smartmeter
npm install -g openclaw-smartmeter
git clone https://github.com/vajih/openclaw-smartmeter.git
cd openclaw-smartmeter
npm install
npm link
smartmeter analyze
This will:
The dashboard opens at http://localhost:8080 with:
# 1. Analyze usage (opens dashboard)
smartmeter analyze [session-file.jsonl]
# 2. Preview optimizations (without applying)
smartmeter preview
# 3. Apply optimizations to openclaw.json
smartmeter apply
# 4. Rollback if needed
smartmeter rollback
# Quick cost evaluation
smartmeter evaluate examples/sample-session.jsonl
# Open dashboard (if already analyzed)
smartmeter dashboard
# Export analysis as JSON
smartmeter export --format json --output analysis.json
# Show current version
smartmeter --version
# Get help
smartmeter --help
~/.openclaw/agents/*/sessions/openclaw.json generationsmartmeter rollbackFor live usage monitoring and alerts:
# Via environment variable
export OPENROUTER_API_KEY="or-v1-xxxxxxxxxxxx"
# Or store in OpenClaw config
smartmeter config --key or-v1-xxxxxxxxxxxx
The dashboard server runs on:
To change ports, edit ~/.openclaw/smartmeter/config.json
SmartMeter reads your OpenClaw session logs:
~/.openclaw/agents/*/sessions/*.jsonl
Each log entry contains:
For each task category:
Example:
Category: code
Current: Claude Opus 4.5 ($0.80/task)
Success rate: 94%
Optimal: Claude Sonnet 4.5 ($0.38/task)
Success rate: 94% (same quality)
Savings: $0.42/task ร 200 tasks = $84/month (52.5%)
Creates optimized openclaw.json:
{
"agents": {
"defaults": {
"model": {
"primary": "openrouter/auto",
"fallback": ["claude-sonnet-4-5", "claude-opus-4-5"]
},
"budget": {
"daily": 5.0,
"weekly": 30.0,
"alert": {
"telegram": true,
"threshold": 0.75
}
}
},
"code-reviewer": {
"model": "claude-sonnet-4-5",
"description": "Handles code review, debugging, and programming tasks",
"budget": { "daily": 2.0 }
},
"quick-tasks": {
"model": "deepseek/chat",
"description": "Simple queries, quick answers, config changes",
"budget": { "daily": 0.5 }
}
}
}
Run analysis:
# Check if servers are running
ps aux | grep node
# Restart servers
killall node
smartmeter analyze
# Check if session logs exist
ls -la ~/.openclaw/agents/*/sessions/
# Use sample data for testing
smartmeter analyze examples/sample-session.jsonl
# Verify API key
echo $OPENROUTER_API_KEY
# Test connection
curl -H "Authorization: Bearer $OPENROUTER_API_KEY" \
https://openrouter.ai/api/v1/auth/key
# Check config backup
ls -la ~/.openclaw/openclaw.json.backup-*
# Rollback to previous
smartmeter rollback
# Validate config manually
cat ~/.openclaw/openclaw.json | jq '.'
smartmeter analyze [file]Analyze OpenClaw usage and launch dashboard.
Options:
[file] - Optional path to specific session file~/.openclaw/agents/Output:
~/.openclaw/smartmeter/analysis.jsonsmartmeter previewPreview optimizations without applying.
Shows:
smartmeter applyApply optimizations to openclaw.json.
Safety:
openclaw.json.backup-{timestamp}smartmeter rollbackRestore previous configuration.
Process:
smartmeter dashboardOpen dashboard without re-analyzing.
Requirements:
smartmeter evaluate <file>Quick cost evaluation of session file.
Use Case:
smartmeter exportExport analysis data.
Options:
--format json|csv - Output format--output <file> - Destination filesmartmeter configManage SmartMeter configuration.
Subcommands:
--key <api-key> - Store OpenRouter API key--show - Display current config--reset - Reset to defaults# Install
npm install -g openclaw-smartmeter
# Analyze and view dashboard
smartmeter analyze
# Apply optimizations
smartmeter apply
# Analyze specific session
smartmeter analyze ~/.openclaw/agents/my-agent/sessions/session-123.jsonl
# Preview changes
smartmeter preview
# Export analysis
smartmeter export --format json --output report.json
# Apply optimizations
smartmeter apply
# Monitor for issues, rollback if needed
smartmeter rollback
# Weekly analysis (add to cron)
0 0 * * 0 smartmeter analyze && smartmeter export --format csv --output weekly-report.csv
# Budget alerts via Telegram
export TELEGRAM_BOT_TOKEN="your-token"
export TELEGRAM_CHAT_ID="your-chat-id"
smartmeter monitor --alert-threshold 0.75
No. SmartMeter only recommends changes when cheaper models achieve the same success rate. You can always preview before applying.
Minimum 2 days, but 14+ days recommended for accurate patterns. The tool will warn if data is insufficient.
Yes. All analysis happens locally on your machine. No data is sent to external servers except OpenRouter API (if you configure it).
Yes. Every change creates an automatic backup. Use smartmeter rollback to restore.
Currently optimized for OpenRouter, but works with any provider supported by OpenClaw.
SmartMeter merges with your existing config and preserves custom settings. It only modifies cost-related fields.
Found a bug? Have a feature request?
Made with ๐ฐ by the OpenClaw community
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
api_key
Streaming
No
Data region
global
Protocol support
Requires: openclew, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/snapshot"
curl -s "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract"
curl -s "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"api_key"
],
"requires": [
"openclew",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/vajih/openclaw-smartmeter#input",
"outputSchemaRef": "https://github.com/vajih/openclaw-smartmeter#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:43:14.206Z",
"sourceUpdatedAt": "2026-02-24T19:43:14.206Z",
"freshnessSeconds": 4424314
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:41:48.797Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "always",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "i",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "found",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:always|supported|profile capability:i|supported|profile capability:found|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.206Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "api_key",
"href": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:43:14.206Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/vajih/openclaw-smartmeter#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:43:14.206Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Vajih",
"href": "https://github.com/vajih/openclaw-smartmeter",
"sourceUrl": "https://github.com/vajih/openclaw-smartmeter",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/vajih-openclaw-smartmeter/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to smartmeter and adjacent AI workflows.