Install Core Tools
# Install Hyphn (the orchestrator)
npm install -g @fwdslsh/hyphn
# Install Dispatch (secure sandbox)
curl -fsSL https://raw.githubusercontent.com/fwdslsh/dispatch/main/install.sh | bash
# Install other tools as needed
npm install -g @fwdslsh/disclose @fwdslsh/gather
All tools are designed to work independently or together.
Initialize Your Workspace
# Initialize Hyphn workspace
hyphn init
# Configure your sources
hyphn sources add ~/my-agents
# Check available agents and skills
hyphn list
Set up your environment to share and reuse agents across projects.
Secure Execution
# Start a secure dispatch session
dispatch start my-session
# Attach to the session
dispatch attach my-session
# Run an agent safely
hyphn run @agent/review --safe
Run untrusted code or complex agents without risking your host system.