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

# tenet init

> Initialize a TENET project

Create a new TENET project with context hub, eval system, agents, and knowledge docs.

## Usage

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

## What It Creates

```
your-project/
├── .tenet/
│   ├── config.json          # Project configuration
│   ├── journal/main.jsonl   # Initial journal entries
│   └── agents/              # Default agent configs
├── eval/                    # Eval scripts
├── knowledge/               # VISION, THESIS, NARRATIVE
├── CLAUDE.md                # Agent instructions
└── AGENTS.md                # Pi agent instructions
```

## Options

```bash theme={null}
tenet init                     # Interactive wizard
tenet init --name my-project   # Skip name prompt
tenet init --type gtm          # GTM workspace
tenet init --type service      # Service repo
```

## Onboarding a Service

To onboard an existing service repo into a GTM workspace:

```bash theme={null}
# From the GTM workspace
tenet onboard /path/to/service --name my-service --type api
```
