2026-05-30 03:21:35 +08:00
---
2026-07-16 17:26:23 +08:00
name : obelisk-installer
description : Install the official Obelisk CLI and then install the Obelisk agent skill. Use only for initial setup or repair when the `obelisk` command is missing.
2026-05-30 03:21:35 +08:00
allowed-tools :
2026-07-16 17:26:23 +08:00
- Bash
2026-05-30 03:21:35 +08:00
---
2026-07-16 17:26:23 +08:00
# Install Obelisk
2026-05-30 03:21:35 +08:00
2026-07-16 17:26:23 +08:00
This is a one-time bootstrap guide. It installs the local Obelisk runtime, then
uses that runtime to install the official agent skill from
`github.com/tommy0103/obelisk-skill` .
2026-06-07 16:42:41 +08:00
2026-07-16 17:26:23 +08:00
## 1. Check for the CLI
2026-05-30 03:21:35 +08:00
```bash
2026-07-16 17:26:23 +08:00
command -v obelisk >/dev/null 2>& 1 && obelisk --version
2026-05-30 03:21:35 +08:00
```
2026-07-16 17:26:23 +08:00
If this succeeds, skip to step 3. Do not reinstall a working CLI unless the user
asked to upgrade or repair it.
2026-05-30 03:21:35 +08:00
2026-07-16 17:26:23 +08:00
## 2. Install the CLI
2026-05-30 03:21:35 +08:00
2026-07-16 17:26:23 +08:00
Installing a global command changes the user's machine. Show the command and get
the user's approval before running one of these official installation methods.
2026-05-30 03:21:35 +08:00
2026-07-16 17:26:23 +08:00
With npm:
2026-06-10 02:05:27 +08:00
```bash
2026-07-16 17:26:23 +08:00
npm install --global @obelisk-apps/cli
2026-06-10 02:05:27 +08:00
```
2026-07-16 17:26:23 +08:00
On macOS, Linux, or WSL, the official installer performs the same CLI-only
installation and never installs an agent skill:
2026-06-10 02:05:27 +08:00
2026-07-16 17:26:23 +08:00
```bash
curl -fsSL https://raw.githubusercontent.com/tommy0103/obelisk/main/install.sh | sh
2026-06-12 22:20:29 +08:00
```
2026-07-16 17:26:23 +08:00
Never use `sudo` , install a daemon, or download Obelisk from another source.
2026-06-12 22:20:29 +08:00
2026-07-16 17:26:23 +08:00
Verify the result:
2026-06-10 02:05:27 +08:00
2026-07-16 17:26:23 +08:00
```bash
obelisk --version
2026-05-30 03:21:35 +08:00
```
2026-07-16 17:26:23 +08:00
## 3. Install the official skill
2026-05-30 03:21:35 +08:00
2026-07-16 17:26:23 +08:00
```bash
obelisk install
2026-05-30 03:21:35 +08:00
```
2026-07-16 17:26:23 +08:00
Pass through any target or scope options the user requested. The command uses
the standard skills installer, so follow its prompts instead of copying skill
files by hand.
2026-05-30 03:21:35 +08:00
2026-07-16 17:26:23 +08:00
After installation, tell the user to reload their agent if the new `/obelisk`
skill is not discovered immediately. This bootstrap document is not the query
skill and must not answer session-history questions itself.