Create a Project¶
Create a project with an explicit template path.
Install the CLI before running daily lifecycle commands.
uv tool install agentseek
agentseek create bub/default --no-input
The prompt-free form prints the generated directory and the next lifecycle commands to run.
Created my_bub_agent
Next:
cd my_bub_agent
agentseek info
agentseek task --list
agentseek doctor
The generated project contains the lifecycle spec that later commands read.
my_bub_agent/
.agentseek/lifecycle.toml
.env.example
frontend/package.json
version = 2
template = "bub/default"
name = "My Bub Agent"
description = "Bub agent with a browser UI, CopilotKit runtime, and AG-UI gateway."
env_file = ".env"
guide = "README.md"
Change into the generated directory when you are ready to inspect or run it.
cd my_bub_agent
List Templates¶
agentseek create --list-templates
This listing uses the registry snapshot embedded in AgentSeek 0.1.0 and works offline. The selected lifecycle-v2 template is downloaded only when you describe or create it, at the immutable catalog commit recorded by the CLI.
The shared CLI currently recognizes bub, deepagents, and langchain
template types. List only one type by passing it before --list-templates.
agentseek create bub --list-templates
Select A Template By Type¶
Run each create form from a directory where the generated project directory does not already exist.
agentseek create bub --template default --no-input
Compatibility Entry Point¶
agentseek create --template
--template with no value lists templates. Prefer --list-templates in new scripts.