Quick Start
Prerequisites
Section titled “Prerequisites”- An Astromesh node running locally or on a reachable host.
- Python 3.12+ with
uvinstalled (for the node).
1. Start the Astromesh Node
Section titled “1. Start the Astromesh Node”If you don’t already have a node running, start one:
uv run uvicorn astromesh.api.main:app --reloadThe API will be available at http://localhost:8000.
2. Access Forge
Section titled “2. Access Forge”Embedded Mode
Section titled “Embedded Mode”If your node has Forge enabled (the default when static files are present), open your browser and navigate to:
http://localhost:8000/forgeStandalone Mode
Section titled “Standalone Mode”Alternatively, run Forge as a standalone application:
npx astromesh-forge --node http://localhost:8000This starts a local Vite preview server. Forge will connect to the specified node.
3. Create Your First Agent
Section titled “3. Create Your First Agent”Option A: Create from Scratch
Section titled “Option A: Create from Scratch”- On the Forge home screen, click Create from Scratch.
- The 7-step wizard opens. Fill in each step:
- Identity — Give your agent a name and description.
- Model — Select a primary provider and model.
- Tools — Drag tools from the available list.
- Orchestration — Pick a pattern (e.g.,
react). - Settings — Configure memory and guardrails.
- Prompts — Write your system prompt.
- Review & Deploy — Preview the generated YAML and deploy.
- Click Deploy to send the agent to the node.
Option B: Start from a Template
Section titled “Option B: Start from a Template”- On the Forge home screen, click Start from Template.
- Browse the gallery and select a template that matches your use case (e.g., Sales Qualifier, Support Agent).
- Fill in the template variables (company name, brand voice, etc.).
- Optionally customize tools, model, or guardrails in the wizard.
- Click Deploy.
4. Test Your Agent
Section titled “4. Test Your Agent”Once deployed, you can test your agent directly from the Astromesh API:
curl -X POST http://localhost:8000/v1/agents/my-agent/run \ -H "Content-Type: application/json" \ -d '{"query": "Hello, what can you do?"}'Or use the Forge dashboard to view agent status and manage deployed agents.
Next Steps
Section titled “Next Steps”- Wizard Guide — Detailed walkthrough of each wizard step.
- Canvas Guide — Learn to use the visual canvas editor.
- Agent Templates — Browse all available templates.
- Deployment — Configure embedded and standalone modes.