Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3f63963
docs: rewrite quickstart as a step-by-step tutorial
anthonyiscoding Apr 10, 2026
971af87
chore: quickstart text nits
anthonyiscoding Apr 10, 2026
97ff5c6
chore: quickstart text nits
anthonyiscoding Apr 10, 2026
888b3e0
chore: update docs, new command syntax, move install to own page
anthonyiscoding Apr 10, 2026
ee2b43e
Update docs/quickstart.mdx
anthonyiscoding Apr 10, 2026
6ee1d04
nit: quickstart docs intro fix
anthonyiscoding Apr 10, 2026
aa2f61c
add: state and http workers to quickstart
anthonyiscoding Apr 13, 2026
a5605c5
nit: fix how to start/stop workers in quickstart
anthonyiscoding Apr 13, 2026
de06899
nit: add -> start for restarting in quickstart
anthonyiscoding Apr 13, 2026
41e3bb6
nit: docs skills install command
anthonyiscoding Apr 13, 2026
8289c6a
nit: docs update console instructions quickstart
anthonyiscoding Apr 13, 2026
0e1888b
nit: terminal opening notes
anthonyiscoding Apr 13, 2026
3549d41
nit: add dependency install delay tip to quickstart step 4
anthonyiscoding Apr 13, 2026
d51e755
nit: code change
anthonyiscoding Apr 13, 2026
d33efbc
nit: code formatting and remove unnecessary trigger
anthonyiscoding Apr 13, 2026
538a202
fix: http response format bug
anthonyiscoding Apr 13, 2026
0bdc629
nit: replace ASCII architecture diagram with Mermaid
anthonyiscoding Apr 13, 2026
c7f92c6
nit: cleanup http response
anthonyiscoding Apr 13, 2026
edcdf49
Merge branch 'main' into chore/quickstart-0.11-docs
anthonyiscoding Apr 13, 2026
487ea66
fix: architecture diagram
anthonyiscoding Apr 13, 2026
43ec2e4
nit: architecture diagram
anthonyiscoding Apr 13, 2026
e3c1473
docs: add GitHub and Install buttons to navbar
rohitg00 Apr 14, 2026
3b16e7f
docs: fix navbar button colors for light and dark mode
rohitg00 Apr 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,27 @@
"theme": "mint",
"colors": {
"primary": "#8a8c00",
"light": "#f3f724",
"dark": "#fcff5d"
"light": "#c8ca00",
"dark": "#6b6d00"
},
"logo": {
"light": "/images/icons/iii-black.svg",
"dark": "/images/icons/iii-white.svg"
},
"favicon": "/images/favicon/favicon.svg",
"navbar": {
"links": [
{
"type": "github",
"href": "https://github.com/iii-hq/iii"
}
],
"primary": {
"type": "button",
"label": "Install",
"href": "/install"
}
},
"navigation": {
"versions": [
{
Expand Down Expand Up @@ -134,7 +147,7 @@
"groups": [
{
"group": "Getting Started",
"pages": ["index", "quickstart"]
"pages": ["index", "install", "quickstart"]
},
{
"group": "Primitives & Concepts",
Expand Down
28 changes: 1 addition & 27 deletions docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,33 +56,7 @@ This results in the ability to:

## Getting Started

The best way to understand iii is to try it:

### 1. Install iii

Install the iii engine:

```bash
curl -fsSL https://install.iii.dev/iii/main/install.sh | sh
```

### 2. Verify installation

Check that iii has installed correctly with the following command. It should return a version number.

```bash
iii --version
```

### 3. Add Agent Skills

Give your AI coding agent full context on iii:

```bash
npx skillkit add iii-hq/iii/skills
```

Skills covering every iii primitive — works with Claude Code, Cursor, Gemini CLI, Codex, and [30+ other agents](https://agentskills.io).
The best way to understand iii is to try it. [Install iii](/install) and then follow the [Quickstart](/quickstart) to create your first iii powered project.
Comment thread
anthonyiscoding marked this conversation as resolved.

## Next Steps

Expand Down
39 changes: 39 additions & 0 deletions docs/install.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
title: 'Install'
description: 'Install the iii engine and set up your development environment.'
---

## 1. Install iii

Install the iii engine:

```bash
curl -fsSL https://install.iii.dev/iii/main/install.sh | sh
```

## 2. Verify installation

Check that iii has installed correctly with the following command. It should return a version number.

```bash
iii --version
```

## 3. Add Agent Skills (Optional)

Give your IDEs and AI coding agents full context on iii:

```bash
npx skillkit add iii-hq/iii/skills
```

## Next Steps

<CardGroup cols={2}>
<Card title="Quickstart" href="/quickstart" icon="terminal">
Follow the Quickstart and explore a live iii application.
</Card>
<Card title="Concepts" href="/primitives-and-concepts" icon="table-layout">
Understand Functions and Triggers from a conceptual point of view.
</Card>
</CardGroup>
Loading