Contents
Kimbap Quick Start
Get from zero to your first action in under 5 minutes.
1. Install
curl -fsSL https://kimbap.sh/install.sh | bashOr with Homebrew:
brew install dunialabs/kimbap/kimbap2. Initialize
kimbap init --services selectCreates local runtime files (default in ~/.kimbap/) and opens an interactive service checklist. Recommended services are preselected, and all is available in one command.
Shortcut aliases are set up by default during init. Use --no-shortcuts to skip.
3. Your first action
Run this:
geosearch --name "San Francisco"Then fetch weather for San Francisco:
weather --latitude 37.7749 --longitude -122.4194Simple flow, no API key, no localhost setup.
4. Optional: Connect a SaaS service
kimbap link githubWalks you through OAuth or credential setup for GitHub. For non-interactive setups:
printf '%s' "$GITHUB_TOKEN" | kimbap link github --stdinOnce linked, call it:
kimbap call github.list-reposThe same pattern works for any service: kimbap link <service>.
5. Optional: Connect your AI agent
kimbap agents setupAuto-detects installed agents and installs global kimbap discovery hints. For project sync, run:
kimbap agents setup --sync --dir .Need profile/rules customization? See the Installation Guide for advanced setup options.
Uninstall later if needed:
curl -fsSL https://kimbap.sh/install.sh | bash -s -- --uninstallIf you installed via Homebrew instead, uninstall with:
brew uninstall dunialabs/kimbap/kimbapNext steps
- CLI Reference — all commands and flags
- Service Development Guide — write your own YAML manifests
- Installation Guide — production setup, vault, credentials
- Architecture — how the pipeline works