> ## 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.

# Quickstart

> Install, initialize, and run your first agent in 60 seconds

## Install

```bash theme={null}
npm install -g @10et/cli  # package name during migration
```

<Info>Install the CLI with `npm i -g @10et/cli`. The `tenet` command is available globally after install.</Info>

## Initialize

**New project:**

```bash theme={null}
tenet start my-project
```

This runs `init → setup → launch` in one command. Creates the workspace, configures agents for your stack, deploys CI workflows, and opens your editor.

**Existing project:**

```bash theme={null}
cd your-project
tenet init
tenet setup
```

`init` creates the context layer. `setup` analyzes your codebase and creates personalized RL agents.

## What gets created

```
your-project/
├── .tenet/
│   ├── config.json          # Project config
│   ├── journal/             # Session journals (JSONL)
│   └── agents/              # Agent configs (TOML)
├── eval/                    # Eval scripts for your stack
├── knowledge/               # VISION, THESIS, NARRATIVE
├── CLAUDE.md                # Agent instructions
└── AGENTS.md                # Pi agent instructions
```

## Run your first agent

```bash theme={null}
tenet peter agent list
```

```
  test-coverage
    Metric: coverage_percent (maximize)

  code-quality
    Metric: quality_score (maximize)
```

Run one round:

```bash theme={null}
tenet peter agent test-coverage --rounds 1
```

```
  Baseline: 0.1276

  Round 1  +0.0031 KEPT    48 tests added

  Coverage: 12.7% → 13.1%
```

## Check health

```bash theme={null}
tenet doctor
```

```
  [ok] Context Hub (port 4360)
  [ok] Memory: 349 entries, 349 embedded
  [ok] Agents: 5 configured
  All checks passed.
```

## What's next

<CardGroup cols={2}>
  <Card title="How it works" icon="gears" href="/how-it-works">
    The RL learning loop, eval system, and agent architecture.
  </Card>

  <Card title="Agent configuration" icon="sliders" href="/agents/configuration">
    TOML config reference — metrics, scope, eval scripts.
  </Card>

  <Card title="Memory system" icon="brain" href="/memory/overview">
    How TENET remembers and learns from history.
  </Card>

  <Card title="Peter Parker" icon="spider" href="/agents/peter-parker">
    The nightly orchestrator that runs your agents.
  </Card>
</CardGroup>
