Get Started¶
Create one app, install its local dependencies, and start its development workflow.
Install the CLI¶
uv tool install agentseek
Create an app¶
agentseek create bub/default --no-input
cd my_bub_agent
bub/default is one available template path. Other templates can use the same
lifecycle commands.
Prepare the project¶
cp .env.example .env
$EDITOR .env
uv sync
npm install --prefix frontend
Set the model and provider credentials required by the selected template in
.env or the environment used to run AgentSeek.
.env is used by AgentSeek only for lifecycle environment checks declared by
the template. It is not automatically passed to child processes.
Check and run¶
Run the readiness check after .env and local dependencies are prepared.
agentseek doctor
agentseek dev
Use Ctrl+C to stop the local development stack.