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 is quiet when it succeeds. The generated project contains the lifecycle spec that later commands read.

generated files excerpt
my_bub_agent/
  .agentseek/lifecycle.toml
  .env.example
  frontend/package.json
.agentseek/lifecycle.toml excerpt
version = 1
template = "bub/default"
name = "My Bub Agent"
env_file = ".env"

Change into the generated directory.

cd my_bub_agent

List Templates

agentseek create --list-templates

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.

Next