con un clic
install
Install Stele CLI and server, configure connection, and verify setup
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Install Stele CLI and server, configure connection, and verify setup
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Clarify phase of the workflow chain. Uses Opus to analyze the user's request, resolve ambiguities, define scope, and produce a clear task brief before research begins.
Execute phase of the workflow chain. Uses Haiku (simple), Sonnet (standard), or Opus (complex) to implement code changes according to a plan. Use when the user has an approved plan ready to execute.
Flow workflow chain that runs clarify → [research] → plan → execute → validate end-to-end without stopping. Pauses only on genuine ambiguity or circuit-breaker conditions.
Plan phase of the workflow chain. Uses Opus to design an implementation strategy. Use when the user wants to create a detailed plan before executing changes.
Research phase of the workflow chain. Uses Haiku (simple) or Sonnet (standard) to research the codebase and gather context for a task. Use when the user wants to investigate code before planning.
Validate phase of the workflow chain. Uses Sonnet to review and validate implementation changes. Use when the user wants to validate that code changes are correct and complete.
| name | install |
| description | Install Stele CLI and server, configure connection, and verify setup |
| user-invocable | true |
End-to-end setup: clone the source, install the CLI, optionally install the server, configure the connection profile, and verify everything works.
The MCP connection is automatically registered when this plugin is installed — no manual MCP configuration is needed. This skill handles everything else.
uname -s
Store the result — macOS (Darwin) or Linux (Linux). This determines the installation path: macOS always installs Stele.app; Linux offers build-from-source or Docker.
Check that both Git and the Rust toolchain are available:
git --version && cargo --version
If git is not found, tell the user to install Git first and re-run /stele:install.
If cargo is not found, tell the user:
Stele is built from source and requires the Rust toolchain. Install it from https://rustup.rs/ then re-run
/stele:install.
Stop here if either tool is missing.
Stele is built from a local source tree to ensure reproducible builds with pinned dependencies.
if [ -d /tmp/stele-build/.git ]; then
git -C /tmp/stele-build pull --ff-only
else
rm -rf /tmp/stele-build
git clone https://github.com/tasanakorn/stele.git /tmp/stele-build
fi
If the clone fails (network issues, etc.), stop and ask the user to troubleshoot their network.
Check if the stele CLI is already on PATH:
which stele
If found, verify it works with stele --help and skip to Step 5.
If not found, install it:
Installing the Stele CLI from source. This compiles from source and may take a few minutes.
mkdir -p ~/.local/bin
cargo install --path /tmp/stele-build/apps/stele/crates/stele-cli --root ~/.local
--root ~/.local installs the binary at ~/.local/bin/stele instead of cargo's default ~/.cargo/bin/, keeping the CLI alongside other user-installed tools (matching the steop convention).
After install, verify:
stele --help
If stele is still not found, ensure ~/.local/bin is in the user's PATH. On most shells, add this to ~/.zshrc or ~/.bashrc if it is not already present:
export PATH="$HOME/.local/bin:$PATH"
Then reload the shell (exec $SHELL) and retry stele --help. If it still fails, stop and ask the user to troubleshoot their PATH.
Before asking about server installation, check if a server is already reachable:
stele status
If the server responds successfully, tell the user a server is already running and skip to Step 7.
If it fails, continue to Step 6.
Ask the user:
Do you want to install the Stele server locally, or will you connect to a remote/existing server?
- Install locally — I'll build and install the server on this machine
- Remote server — I already have a server running elsewhere, just configure the connection
If remote: skip to Step 7.
If local, proceed based on platform:
Building the Stele desktop app. This compiles from source and may take several minutes.
bash /tmp/stele-build/apps/stele/scripts/build-macos.sh
After the build completes, install the app to /Applications/:
rm -rf /Applications/Stele.app
cp -r /tmp/stele-build/apps/stele/target/release/Stele.app /Applications/
If the copy fails with a permission error, retry with sudo:
sudo rm -rf /Applications/Stele.app
sudo cp -r /tmp/stele-build/apps/stele/target/release/Stele.app /Applications/
Launch the app:
open /Applications/Stele.app
Tell the user: Stele is now running in the menu bar. Data is stored at ~/Library/Application Support/Stele/stele.db.
On Linux, only headless mode is available. Ask the user:
How would you like to install the server?
- Build from source — Headless server binary (Rust toolchain already verified)
- Docker — Container using the project Dockerfile (requires Docker)
Build from source:
Building the Stele server (headless). This compiles from source and may take several minutes.
mkdir -p ~/.local/bin
cargo install --path /tmp/stele-build/apps/stele/crates/stele-server --no-default-features --features headless --root ~/.local
After install, set up a systemd user service so the server starts automatically and can be managed with systemctl.
Create the service directory if needed:
mkdir -p ~/.config/systemd/user
Write the unit file at ~/.config/systemd/user/stele.service:
[Unit]
Description=Stele shared memory server
After=network.target
[Service]
Type=simple
Environment=STELE_BIND=127.0.0.1:3100
Environment=STELE_DB=%h/.local/share/stele/stele.db
Environment=STELE_MCP_PATH=/mcp
Environment=RUST_LOG=info
ExecStartPre=/bin/mkdir -p %h/.local/share/stele
ExecStart=%h/.local/bin/stele-server
Restart=on-failure
RestartSec=5
[Install]
WantedBy=default.target
Enable and start the service:
systemctl --user daemon-reload
systemctl --user enable --now stele.service
Tell the user: Stele server is now running as a systemd user service. Data is stored at ~/.local/share/stele/stele.db.
Optionally mention: to keep the server running after logout, run loginctl enable-linger $USER.
Docker:
docker build -t stele /tmp/stele-build/apps/stele/
docker run -d --name stele -v stele-data:/data -p 3100:3100 stele
Tell the user: The server is running in Docker, data persisted in the stele-data volume.
After any install method, wait a few seconds for the server to initialize, then verify:
stele status
If it fails, wait 5 seconds and retry once. If it still fails:
ps aux | grep 'Stele.app/Contents/MacOS/stele'systemctl --user status stele and journalctl --user -u stele --no-pager -n 20ss -tlnp | grep 3100systemctl --user {start,stop,restart,status} steleRun:
stele config show
If a local server with default settings (port 3100, no auth) — no config file is needed. The built-in defaults work.
If a remote server or custom port, create the config:
stele config init
This creates ~/.config/stele/config.toml. Show the user the format:
default_profile = "local"
[profiles.local]
server_url = "http://127.0.0.1:3100"
[profiles.remote]
server_url = "https://stele.example.com:3100"
auth_key = "your-auth-key-here"
Ask the user for their server URL and (optionally) auth key, then write the values into the config file.
To switch profiles: set default_profile, use --profile <name>, or set STELE_PROFILE env var.
stele status
This should report the server as reachable. If it fails:
stele config showRemove the temporary build directory to free disk space:
rm -rf /tmp/stele-build
Tell the user:
/stele:bootstrap to initialize the current project with Stele