Getting Started
Getting Started
Section titled “Getting Started”Goal: go from zero to a first working chat with minimal setup.
Prereqs
Section titled “Prereqs”- Node 22 or newer
Quick setup (CLI)
Section titled “Quick setup (CLI)”<Note>Other install methods and requirements: [Install](/install).Built on [BuilderForce Agents](https://github.com/SeanHogg/Builderforce.ai)'s multi-channel gateway with Phase 2 enhancements.</Note>The wizard configures auth, gateway settings, and optional channels.See [Onboarding Wizard](/start/wizard) for details.```bashbuilderforce gateway status```Optional checks and extras
Section titled “Optional checks and extras”```bashbuilderforce gateway --port 18789``````bashbuilderforce message send --target +15555550123 --message "Hello from BuilderForce Agents"```Useful environment variables
Section titled “Useful environment variables”If you run BuilderForce Agents as a service account or want custom config/state locations:
BUILDERFORCE_AGENTS_HOMEsets the home directory used for internal path resolution.BUILDERFORCE_AGENTS_STATE_DIRoverrides the state directory.BUILDERFORCE_AGENTS_CONFIG_PATHoverrides the config file path.
Full environment variable reference: Environment vars.
BuilderForce Agents dev workflows (quick start)
Section titled “BuilderForce Agents dev workflows (quick start)”Once your Gateway is running, initialize BuilderForce Agents in any project and start running multi-agent workflows.
This creates a `.builderforce/` directory with persistent project context:
```.builderforce/├── context.yaml # project metadata (languages, frameworks, dependencies)├── architecture.md # design docs├── rules.yaml # coding standards├── agents/ # custom agent roles├── skills/ # project-specific skills├── memory/ # knowledge base└── sessions/ # session handoff docs``````bashbuilderforce agent --message "Plan a real-time collaboration feature" --thinking high```# Bug fix: Bug Analyzer → Code Creator → Test Generator + Code Reviewerbuilderforce agent --message "Fix the memory leak in the parser" --thinking high
# Adversarial review (built-in critique pass):builderforce agent --message "Adversarially review the API design" --thinking high``````bashbuilderforce agent --message "Save a session handoff for today's work" --thinking low```
BuilderForce Agents writes a structured YAML to `.builderforce/sessions/` covering decisions, next steps, and open questions. The next session loads it automatically.Full workflow reference: BuilderForce Agents Workflows
Go deeper
Section titled “Go deeper”What you will have
Section titled “What you will have”- A running Gateway
- Auth configured
- Control UI access or a connected channel
Next steps
Section titled “Next steps”- BuilderForce Agents Phase 2 Features: Phase 2 Documentation
- DM safety and approvals: Pairing
- Connect more channels: Channels
- Advanced workflows and from source: Setup