- Log parser: session-ID tag in v0.9.0 log format is now an optional capture group; session pill renders inline and tap-filters the view. - Logs: component filter (Gateway/Agent/Tools/CLI/Cron) and bounded logger column with middle truncation. - Gateway stop: uses `hermes gateway stop` CLI (v0.9.0's launchctl bootout fix) with SIGTERM as fallback. - HermesConfig: new keys for Fast Mode (service_tier), gateway notify interval, force IPv4, context engine, interim assistant messages, and Honcho eager init (camelCase per PR #6995). - Settings: new Performance, Network, Advanced, and Backup & Restore sections that call `hermes backup` / `hermes import` off the main actor; robust zip-path extraction via regex. - Platforms: iMessage (BlueBubbles) added to KnownPlatforms and icon map. - Cron: Discord thread delivery (`discord:chat:thread`) renders as "Discord thread X in Y". - Chat: `/compress <focus>` button appears when ACP advertises the command; optional focus sheet sends through existing prompt path. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 KiB
Scarf
A native macOS companion app for the Hermes AI agent.
Full visibility into what Hermes is doing, when, and what it creates.
Features
- Dashboard — System health, token usage, cost tracking, recent sessions with live refresh
- Insights — Usage analytics with token breakdown (including reasoning tokens), cost tracking, model/platform stats, top tools bar chart, activity heatmaps, notable sessions, and time period filtering (7/30/90 days or all time)
- Sessions Browser — Full conversation history with message rendering, model reasoning/thinking display, tool call inspection, full-text search, rename, delete, and JSONL export. Subagent sessions are filtered from the main list and accessible via parent session drill-down
- Activity Feed — Recent tool execution log with filtering by kind and session, detail inspector with pretty-printed arguments and tool output display
- Live Chat — Two modes: Rich Chat streams responses in real-time via the Agent Client Protocol (ACP) with iMessage-style bubbles, markdown rendering, tool call visualization, thinking/reasoning display, permission request dialogs, and a one-click
/compressfocus sheet (when Hermes advertises the command); Terminal runshermes chatwith full ANSI color and Rich formatting via SwiftTerm. Both modes support session persistence, resume/continue previous sessions, auto-reconnection with session recovery, and voice mode controls - Memory Viewer/Editor — View and edit Hermes's MEMORY.md and USER.md with live file-watcher refresh, external memory provider awareness (Honcho, Supermemory, etc.), and profile-scoped memory support with profile picker
- Skills Browser — Browse and edit installed skills by category with file content viewer, file switcher, and required config warnings for skills that need specific settings
- Tools Manager — Enable/disable toolsets per platform (CLI, Telegram, Discord, Slack, WhatsApp, Signal, iMessage, Email, Home Assistant, Webhook, Matrix, Feishu, Mattermost) with toggle switches and segmented platform picker, MCP server status
- Gateway Control — Start/stop/restart the messaging gateway, view platform connection status, manage user pairing (approve/revoke)
- Cron Manager — View scheduled jobs with pre-run scripts, delivery failure tracking, timeout info, and
[SILENT]job indicators - Log Viewer — Real-time log tailing for agent.log, errors.log, and gateway.log with level filtering, component filter (Gateway / Agent / Tools / CLI / Cron), clickable session-ID pills that filter to a single session, and text search
- Project Dashboards — Custom, agent-generated dashboards for any project. Define stat boxes, charts, tables, progress bars, checklists, rich text, and embedded web views in a simple JSON file — Scarf renders them with live refresh. Let your Hermes agent build and maintain project-specific visualizations automatically
- Settings — Structured config editor for all Hermes settings including model/provider selection, browser backend, reasoning effort, approval mode, cost display, Fast Mode service tier, interim assistant messages, gateway notify interval, force IPv4, context engine, Honcho eager init, Docker environment, command allowlist, credential management, and one-click Backup & Restore via
hermes backup/hermes import - Hermes Process Control — Start, stop, and restart the Hermes agent directly from Scarf
- Menu Bar — Status icon showing Hermes running state with quick actions
Requirements
- macOS 14.6+ (Sonoma)
- Xcode 16.0+
- Hermes agent v0.6.0+ installed at
~/.hermes/(v0.9.0 recommended for full feature support)
Compatibility
Scarf reads Hermes's SQLite database and parses CLI output from hermes status, hermes doctor, hermes tools, hermes sessions, hermes gateway, and hermes pairing. Automatic schema detection provides backward compatibility with older databases while supporting new features in newer Hermes versions.
| Hermes Version | Status |
|---|---|
| v0.6.0 (2026-03-30) | Verified |
| v0.7.0 (2026-04-03) | Verified |
| v0.8.0 (2026-04-08) | Verified |
| v0.9.0 (2026-04-13, latest) | Verified |
If a Hermes update changes the database schema or CLI output format, Scarf may need to be updated. Check the Health view for compatibility warnings.
Install
Pre-built Binary (no Xcode required)
Download the latest universal binary (Apple Silicon + Intel) from Releases:
- Download
Scarf-vX.X.X-Universal.zip - Unzip and drag Scarf.app to Applications
- On first launch, right-click and choose Open (or go to System Settings → Privacy & Security → Open Anyway)
Build from Source
git clone https://github.com/awizemann/scarf.git
cd scarf/scarf
open scarf.xcodeproj
Or from the command line:
xcodebuild -project scarf/scarf.xcodeproj -scheme scarf -configuration Release -arch arm64 -arch x86_64 ONLY_ACTIVE_ARCH=NO build
Architecture
Scarf follows the MVVM-Feature pattern with zero external dependencies beyond SwiftTerm:
scarf/
Core/
Models/ Plain data structs (HermesSession, HermesMessage, HermesConfig, etc.)
Services/ Data access (SQLite reader, file I/O, log tailing, file watcher)
Features/ Self-contained feature modules
Dashboard/ System overview and stats
Insights/ Usage analytics and activity patterns
Sessions/ Conversation browser with rename, delete, export
Activity/ Tool execution feed with inspector
Projects/ Agent-generated project dashboards with widget rendering
Chat/ Rich ACP chat and embedded terminal with voice controls
Memory/ Memory viewer and editor
Skills/ Skill browser by category
Tools/ Toolset management per platform
Gateway/ Messaging gateway control and pairing
Cron/ Scheduled job viewer
Logs/ Real-time log viewer
Settings/ Structured config editor
Navigation/ AppCoordinator + SidebarView
Data Sources
Scarf reads Hermes data directly from ~/.hermes/:
| Source | Format | Access |
|---|---|---|
state.db |
SQLite (WAL mode) | Read-only |
config.yaml |
YAML | Read-only |
memories/*.md |
Markdown | Read/Write |
cron/jobs.json |
JSON | Read-only |
logs/*.log |
Text | Read-only |
gateway_state.json |
JSON | Read-only |
skills/ |
Directory tree | Read-only |
hermes acp |
ACP subprocess (JSON-RPC stdio) | Real-time chat |
hermes chat |
Terminal subprocess | Interactive |
hermes tools |
CLI commands | Enable/Disable |
hermes sessions |
CLI commands | Rename/Delete/Export |
hermes gateway |
CLI commands | Start/Stop/Restart |
hermes pairing |
CLI commands | Approve/Revoke |
.scarf/dashboard.json |
JSON (per-project) | Read-only |
scarf/projects.json |
JSON (registry) | Read/Write |
The app opens state.db in read-only mode to avoid WAL contention with Hermes. Management actions (tool toggles, session rename/delete/export) go through the Hermes CLI.
Dependencies
| Package | Purpose |
|---|---|
| SwiftTerm | Terminal emulator for the Chat feature |
Everything else uses system frameworks: SQLite3 C API, Foundation JSON, AttributedString markdown, SwiftUI Charts, GCD file watching.
How It Works
Scarf watches ~/.hermes/ for file changes and queries the SQLite database for sessions, messages, and analytics. Views refresh automatically when Hermes writes new data.
The Chat tab has two modes. Rich Chat communicates with Hermes via the Agent Client Protocol (ACP) — a JSON-RPC connection over stdio — streaming responses in real-time with automatic reconnection and session recovery on connection loss. Terminal mode spawns hermes chat in a pseudo-terminal for the full interactive CLI experience with proper ANSI rendering. Sessions persist across navigation in both modes — switch tabs and come back without losing your conversation.
Management actions (renaming sessions, toggling tools, editing memory) call the Hermes CLI or write directly to the appropriate files, keeping Scarf and Hermes in sync.
The app sandbox is disabled because Scarf needs direct access to ~/.hermes/ and the ability to spawn the Hermes binary.
Project Dashboards
Project Dashboards turn Scarf into a customizable monitoring hub for all your projects. You define a simple JSON file in your project folder describing what to display — stat boxes, charts, tables, progress bars, checklists, rich text, and embedded web views — and Scarf renders it as a live-updating dashboard. Your Hermes agent can generate and maintain these dashboards automatically.
What You Can Build
- Development dashboards — test coverage, build status, open issues, sprint progress
- Data project trackers — pipeline metrics, data quality scores, processing throughput
- Deployment monitors — deploy history tables, uptime stats, error rate charts
- Research dashboards — experiment results, key findings, paper status checklists
- Agent activity views — cron job results, content generation stats, task completion rates
- Embedded web apps — local dev servers, HTML reports, Grafana dashboards, any web-based tool your agent generates
- Any project status — if your agent can measure it, Scarf can display it
Quick Start
1. Create the dashboard file
Create .scarf/dashboard.json in any project folder:
{
"version": 1,
"title": "My Project",
"description": "Project status at a glance",
"sections": [
{
"title": "Overview",
"columns": 3,
"widgets": [
{
"type": "stat",
"title": "Test Coverage",
"value": "87%",
"icon": "checkmark.shield",
"color": "green",
"subtitle": "+2.1% this week"
},
{
"type": "progress",
"title": "Sprint Progress",
"value": 0.73,
"label": "73% complete",
"color": "blue"
},
{
"type": "list",
"title": "Tasks",
"items": [
{ "text": "Write unit tests", "status": "done" },
{ "text": "Update API docs", "status": "active" },
{ "text": "Deploy to prod", "status": "pending" }
]
}
]
}
]
}
2. Register your project
In Scarf, go to Projects in the sidebar and click the + button to add your project folder. Or have your agent add it directly to the registry at ~/.hermes/scarf/projects.json:
{
"projects": [
{ "name": "my-project", "path": "/Users/you/Developer/my-project" }
]
}
3. View in Scarf
Select your project in the Projects sidebar — the dashboard renders immediately. Scarf watches the file for changes and refreshes automatically whenever the JSON is updated.
Widget Types
| Type | Description | Key Fields |
|---|---|---|
stat |
Key metric with large value display | value, icon, color, subtitle |
progress |
Progress bar with label | value (0.0–1.0), label, color |
text |
Rich text block | content, format ("markdown" or "plain") |
table |
Data table with headers | columns, rows |
chart |
Line, bar, or pie chart | chartType, series (each with name, color, data) |
list |
Checklist with status indicators | items (each with text, status: done/active/pending) |
webview |
Embedded web browser | url, height (default 400) |
The webview widget embeds a live web browser directly in your dashboard — perfect for displaying local dev servers, HTML reports, or any web-based tool your agent generates.
When a dashboard includes a webview widget, Scarf adds a tabbed interface: Dashboard shows your normal widgets, Site shows the web content full-canvas with clean margins — using the entire available space in the app. This gives you the best of both worlds: compact metrics at a glance, and a full embedded browser when you need it.
{
"type": "webview",
"title": "Project Report",
"url": "http://localhost:8000/dashboard",
"height": 500
}
url: Any URL — typically a local server (http://localhost:...) or file pathheight: Height in points when displayed as an inline widget card (default: 400). The Site tab always uses full available space regardless of this setting.
Colors: red, orange, yellow, green, blue, purple, pink, teal, indigo, mint, brown, gray
Icons: Any SF Symbol name (e.g., checkmark.shield, cpu, doc.text, chart.bar)
Agent-Generated Dashboards
The real power is letting your Hermes agent build and update dashboards automatically. Add instructions like this to your agent's context:
Analyze this project and create a
.scarf/dashboard.jsondashboard with relevant metrics and status. Use stat widgets for key numbers, charts for trends, tables for structured data, lists for task tracking, and a webview widget if the project has a local web server or HTML reports. Register the project in~/.hermes/scarf/projects.jsonif not already registered.
Your agent can update the dashboard as part of cron jobs, after builds, or whenever project state changes. Since Scarf watches the file, updates appear in real-time.
Dashboard Schema Reference
{
"version": 1,
"title": "Required — dashboard title",
"description": "Optional — subtitle text",
"updatedAt": "Optional — ISO 8601 timestamp",
"sections": [
{
"title": "Section Name",
"columns": 3,
"widgets": [{ "type": "...", "title": "..." }]
}
]
}
Each section defines a grid with 1–4 columns. Widgets flow left-to-right, wrapping to new rows. See DASHBOARD_SCHEMA.md for the full schema reference with examples of every widget type.
Contributing
Contributions are welcome. Please open an issue to discuss what you'd like to change before submitting a PR.
- Fork the repo
- Create your feature branch (
git checkout -b feature/my-feature) - Commit your changes (
git commit -m 'Add my feature') - Push to the branch (
git push origin feature/my-feature) - Open a Pull Request
Support
If you find Scarf useful, consider buying me a coffee.