getting started
Create Your First Agent
This walkthrough follows the current dashboard flow in web/app/(dashboard)/agents/create/page.tsx and the follow-up agent workspace in web/app/(dashboard)/agents/[agentName]/view/page.tsx.
Create Your First Agent
This walkthrough follows the current dashboard flow in web/app/(dashboard)/agents/create/page.tsx and the follow-up agent workspace in web/app/(dashboard)/agents/[agentName]/view/page.tsx.
Before You Start
Make sure you have:
- the web app running at
http://localhost:3005 - a working account that can access the dashboard
- at least one LLM provider key ready
The current create flow will not let you finish without:
namedescriptionllm_providerllm_modelllm_api_keysystem_prompt
Step 1: Open the Create Flow
- Sign in to Synkora.
- Open Agents.
- Click Create Agent.
The create screen is a four-step wizard:
- Basics
- AI Model
- Personality
- Review
Step 2: Complete Basics
On the Basics step, fill in the agent identity first:
- Enter the agent name.
- Add a short description of the job it should do.
- Optionally upload an avatar.
- Optionally choose a template or public-facing settings if they fit your use case.
Keep the first version narrow. Good first agents are usually one of these:
- support assistant
- documentation assistant
- internal operations helper
- research assistant
If the name already exists, the create flow returns you to Basics and shows the conflict there.
Step 3: Configure the AI Model
On the AI Model step:
- Select the provider.
- Select the model.
- Paste the provider API key.
- Adjust optional fields only if you need them, such as API base, temperature, max tokens, or
top_p.
This is the minimum model configuration the current UI enforces before you can continue.
Step 4: Set Personality and Instructions
On the Personality step:
- Choose one of the built-in presets:
- Friendly
- Professional
- Expert
- Custom
- Review the generated system prompt.
- Replace it with your own prompt if needed.
The wizard requires a non-empty system prompt before it will move forward.
Step 5: Review and Create
On Review, confirm the configuration and create the agent.
The current create flow does two things:
- Creates the agent record and its initial LLM config.
- If you selected capabilities, enables them in bulk after the agent is created.
On success, Synkora redirects to:
Loading...
Step 6: Validate the Agent
After creation, use this order instead of configuring every feature at once.
1. Test the core behavior
Open:
Loading...
Send a few prompts and confirm the response quality before adding knowledge or tools.
2. Review the model config
Open:
Loading...
Use this page when you need to change provider, model, or model settings after the initial setup.
3. Attach knowledge
Open:
Loading...
Use this when the agent needs grounded answers from your documents or site content.
See Create a RAG Agent.
4. Add tools
Open:
Loading...
This is where you turn the agent from “answers questions” into “takes action”.
See Add Tools.
5. Pick delivery surfaces
The current agent workspace exposes these deployment and delivery paths:
landing-pagewidgetsdomainsapi-keysslack-botsmessaging-botstelegram-botswebhooksvoice
Pick one surface first. Do not configure everything on day one.
6. Turn on advanced features only when needed
The current UI also exposes:
autonomoussub-agentsmcp-serversoutputschat-customizationlensdatabase-connectionscomputesubscriptions
These are useful, but they should come after the base agent behavior is stable.
Recommended First-Agent Sequence
For most teams, the cleanest path is:
- Create the agent.
- Test it in chat.
- Attach one knowledge base if it needs context.
- Add one or two tools.
- Expose it through a widget, API key, or one messaging channel.
- Watch usage and quality in Lens.