원클릭으로
toolbox
Local tool registry. List, search, install, verify, and uninstall forge-built tools. Manages ~/.fae-forge/tools/ and registry.json.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Local tool registry. List, search, install, verify, and uninstall forge-built tools. Manages ~/.fae-forge/tools/ and registry.json.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Collaborate over x0x — contacts, messages, spaces, boards, files, presence, trusted-machine port forwards, and replicated stores. Use for sharing cards, connecting people, or cross-device work.
Guide for surfacing one relevant Fae capability that the user hasn't set up yet. Warm, specific, one thing at a time.
Deep pipeline diagnostic — every model, system specs, audio config, speaker state. Flags missing or broken components. Use for diagnose, debug, or health check.
Extract training signals from Fae's memory — SFT examples, DPO correction pairs, engagement scores, and interest-weighted sampling.
Set up (or turn off) a cloud brain for harder questions via OpenRouter — privacy-first, plain language. Use when the user wants a bigger or smarter brain or mentions the cloud.
A warm first conversation for someone meeting Fae for the first time — getting to know their name, where they live, and what they care about, showing one thing live, and explaining how to talk to her.
| name | toolbox |
| description | Local tool registry. List, search, install, verify, and uninstall forge-built tools. Manages ~/.fae-forge/tools/ and registry.json. |
| metadata | {"author":"fae","version":"1.0"} |
The toolbox manages Fae's local tool registry at ~/.fae-forge/. Every tool installed through the toolbox is a skill directory containing a SKILL.md entry point, optional bin/ or scripts/ folders, and an optional MANIFEST.json for integrity verification.
~/.fae-forge/
registry.json # Tracks all installed tools with metadata
tools/ # Installed tool directories (one per tool)
my-tool/
SKILL.md
MANIFEST.json
scripts/
bin/
bundles/ # Cached .bundle files for resharing with peers
peers.json # Known peer catalog endpoints (for mesh search)
registry.json is the source of truth for installed tools. Each entry records:
name, version, description, lang (python, binary, instruction)sha256 — hash of the original bundle or directory snapshotinstalled — ISO 8601 datesource — local, peer, or manualpath — absolute path to the installed tool directoryList all installed tools. Shows name, version, description, and source. Detects orphan tools present on disk but missing from the registry.
Usage: run_skill with name toolbox and input {"script": "list"}.
Optional params: verbose (bool) — include file paths and sizes.
Install a tool from a git bundle file, a directory, or a prepared archive.
Usage: run_skill with name toolbox and input {"script": "install", "params": {"source": "/path/to/tool.bundle"}}.
Params:
source (required) — path to a .bundle file or a directory containing a skill layoutname (optional) — override the tool name (defaults to directory/bundle name)verify (bool, default true) — verify MANIFEST.json checksums after installforce (bool, default false) — overwrite an existing installationSearch for tools by keyword in the local registry or across known peers.
Usage: run_skill with name toolbox and input {"script": "search", "params": {"query": "audio"}}.
Params:
query (required) — search termscope (optional) — local (default), peers, or allVerify the integrity of an installed tool by checking MANIFEST.json checksums and optional git signatures.
Usage: run_skill with name toolbox and input {"script": "verify", "params": {"name": "my-tool"}}.
Params:
name (required) — tool namecheck_signatures (bool, default true) — also verify git tag signatures if availableRemove an installed tool from the registry and disk. Optionally keeps the bundle for resharing.
Usage: run_skill with name toolbox and input {"script": "uninstall", "params": {"name": "my-tool"}}.
Params:
name (required) — tool namekeep_bundle (bool, default true) — preserve the .bundle file in bundles/listinstallsearchverifyuninstall