Command center for browsing, navigating, and editing agent skill files — wiki navigation, directed acyclic graph, and change tracking. Available as a desktop app (Tauri) and a zero-install web viewer.
| Layer | Technology |
|---|---|
| Desktop shell | Tauri v2 |
| Backend | Rust (filesystem, git, autogit daemon) |
| Frontend | Svelte + Vite |
| Web viewer | Next.js + isomorphic-git (100% client-side) |
| Shared core | packages/core — parser, graph, health, theme (browser-safe JS) |
| Markdown | unified/remark/rehype |
| Graph | Cytoscape.js |
| Font | JetBrains Mono |
All platforms:
Windows:
macOS:
xcode-select --installLinux (Ubuntu/Debian):
sudo apt-get install libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
npm install
npm run tauri dev
.md skill files[[skill-name]] links resolve and navigatetheme.config.json.git metadata is unreadable; skill browsing continuesChange tracking is built into the desktop app — no separate process to manage.
cd /path/to/skills-folder
git init
The built-in autogit daemon (Rust) runs inside the Tauri backend process. It polls the opened folder and auto-commits changes to a local shadow branch (autogit/tracking). This branch is local-only and should never be pushed. git init is only required once per folder.
On the web viewer, change history is read-only via isomorphic-git — the web surface never writes commits.
.md skill files[[wiki-links]] to navigate between related skills5m ago)If you see No commit history or Unborn repository, ask your administrator to run git init in the selected folder.
Note: the desktop app refreshes from local file events automatically; there is no manual Sync button.
Don't want to install anything? Use the web viewer at forgevista.ai/tools/skills-command.
Requirements: Chrome or Edge (the web viewer uses the File System Access API, which is not yet available in Firefox or Safari).
The web viewer re-reads your folder each time you click Sync. To see new changes, click Sync again.
| Feature | Web Viewer | Desktop App |
|---|---|---|
| Browse & search skills | Yes | Yes |
| Graph visualization | Yes | Yes |
| Git log & diff viewer | Yes | Yes |
| Health checks | Yes | Yes |
| In-place editing | No | Yes |
| White-label theming | No | Yes |
| Real-time file watching | No | Yes |
| Autogit daemon (write commits) | No | Yes |
| Works offline | No | Yes |
| Browser requirement | Chrome/Edge | Any (native window) |
Privacy guarantee: The web viewer runs entirely in your browser. Your skills never leave your machine — there is zero server-side data access.
For the full editing experience, download the desktop app.
MIT