@@ -49,8 +49,11 @@ uv sync
4949uv run fuzzforge ui
5050
5151# 3. Press 'h' → "FuzzingLabs Hub" to clone & link the default security hub
52- # 4. Select an agent row and press Enter to link it
53- # 5. Restart your AI agent and start talking:
52+ # 4. Select an agent row and press Enter to install the MCP server for your agent
53+ # 5. Build the Docker images for the hub tools (required before tools can run)
54+ ./scripts/build-hub-images.sh
55+
56+ # 6. Restart your AI agent and start talking:
5457# "What security tools are available?"
5558# "Scan this binary with binwalk and yara"
5659# "Analyze this Rust crate for fuzzable functions"
@@ -64,7 +67,10 @@ uv run fuzzforge mcp install copilot # For VS Code + GitHub Copilot
6467# OR
6568uv run fuzzforge mcp install claude-code # For Claude Code CLI
6669
67- # Build hub tool images
70+ # Clone and link the default security hub
71+ git clone git@github.com:FuzzingLabs/mcp-security-hub.git ~ /.fuzzforge/hubs/mcp-security-hub
72+
73+ # Build hub tool images (required — tools only run once their image is built)
6874./scripts/build-hub-images.sh
6975
7076# Restart your AI agent — done!
@@ -399,13 +405,20 @@ uv run fuzzforge project results <id> # Get execution results
399405Configure FuzzForge using environment variables:
400406
401407``` bash
402- # Storage path for projects and execution results
403- export FUZZFORGE_STORAGE_PATH=/path/to/storage
408+ # Override the FuzzForge installation root (auto-detected from cwd by default)
409+ export FUZZFORGE_ROOT=/path/to/fuzzforge_ai
410+
411+ # Override the user-global data directory (default: ~/.fuzzforge)
412+ # Useful for isolated testing without touching your real installation
413+ export FUZZFORGE_USER_DIR=/tmp/my-fuzzforge-test
414+
415+ # Storage path for projects and execution results (default: <workspace>/.fuzzforge/storage)
416+ export FUZZFORGE_STORAGE__PATH=/path/to/storage
404417
405418# Container engine (Docker is default)
406419export FUZZFORGE_ENGINE__TYPE=docker # or podman
407420
408- # Podman-specific settings
421+ # Podman-specific container storage paths
409422export FUZZFORGE_ENGINE__GRAPHROOT=~ /.fuzzforge/containers/storage
410423export FUZZFORGE_ENGINE__RUNROOT=~ /.fuzzforge/containers/run
411424```
0 commit comments