Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.10et.ai/llms.txt

Use this file to discover all available pages before exploring further.

The fastest way to go from zero to a working TENET project. Combines init, setup, and editor launch into one command.

Usage

# New project
tenet start my-project

# Existing project
cd your-project
tenet start

What It Does

  1. Init — creates .tenet/ directory, CLAUDE.md, knowledge templates
  2. Setup — detects your stack (TypeScript, Python, etc.), creates eval agents
  3. Launch — opens your preferred editor with TENET context loaded

Options

FlagDescription
--name <name>Project name (defaults to directory name)
-s, --service <path>Service repo paths to onboard
--no-launchDon’t open editor after setup

When to Use

  • New project: tenet start my-project creates directory + full setup
  • Existing project: cd project && tenet start adds TENET on top
  • Quick demo: fastest way to see TENET working
For more control, use tenet init and tenet setup separately.

See Also