Nyia Keeper Quick Start¶
Get up and running with AI-powered development assistants in under 2 minutes.
Install¶
Linux¶
curl -fsSL https://raw.githubusercontent.com/KaizendoFr/nyia-keeper/main/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
macOS¶
curl -fsSL https://raw.githubusercontent.com/KaizendoFr/nyia-keeper/main/scripts/install-macos.sh | bash
Windows (WSL2)¶
Run inside a WSL2 terminal (Ubuntu), not PowerShell — Nyia Keeper is a bash + Docker tool. Install Docker Desktop (enable the WSL2 engine + WSL Integration), then in your WSL2 terminal:
curl -fsSL https://raw.githubusercontent.com/KaizendoFr/nyia-keeper/main/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
Choose Your Assistant¶
Available options: claude, gemini, codex, opencode, vibe
Setup Authentication¶
Each assistant requires one-time authentication:
Claude:
Gemini:
Codex:
OpenCode:
Vibe (Mistral AI):
export MISTRAL_API_KEY="your-api-key" # Get key from console.mistral.ai
nyia-vibe --status # Verify setup
Start Coding¶
Navigate to your project directory and start an interactive session:
Branch Management¶
By default, Nyia Keeper creates timestamped branches for your work:
For named branches:
# Create a named branch
nyia-claude --work-branch feature/my-feature --create
# Resume existing branch
nyia-claude --work-branch feature/my-feature
See docs/BRANCH_MANAGEMENT.md for detailed workflows.
Built-in Skills¶
All assistants include 5 built-in skills (following the Agent Skills standard):
| Skill | Command | Purpose |
|---|---|---|
| kickoff | /kickoff |
Start a session - reconstructs state from .nyiakeeper/ files |
| make-a-plan | /make-a-plan |
Create a phased execution plan with atomic steps |
| implement-plan | /implement-plan |
Execute a plan with pre-flight validation, per-step verification, and regression detection |
| plan-review | /plan-review |
Architect-level plan review between agents (e.g., Claude reviews Codex's plan) |
| checkpoint | /checkpoint |
Save session state before context compaction or shutdown |
Skills are invoked as slash commands within your assistant session.
Power User Features¶
# Custom image overlays
mkdir -p ~/.config/nyiakeeper/claude/overlay
cat > ~/.config/nyiakeeper/claude/overlay/Dockerfile << 'EOF'
FROM ghcr.io/kaizendofr/nyiakeeper-claude:latest
RUN apt-get update && apt-get install -y python3-dev build-essential
EOF
nyia-claude --build-custom-image
Troubleshooting¶
Docker Issues:
# Check Docker is running
docker --version
sudo systemctl start docker # Linux
open -a Docker # macOS
Authentication Problems:
Permission Errors:
What's Next?¶
- Full Documentation: GitHub Repository
- Advanced Usage:
nyia-claude --help - Custom Overlays: Check
~/.config/nyiakeeper/claude/overlay/ - macOS Setup: docs/MACOS_SETUP.md
Runtime distribution - optimized for production deployment