On this page
#Quick Start
Get from zero to your first kimbap call in under 5 minutes.
#1. Install
curl -fsSL https://kimbap.sh/install.sh | bashOr with Homebrew:
brew install kimbap#2. Initialize
kimbap init --mode dev --services allCreates ~/.kimbap/ with a config file, encrypted vault, and default policy. Installs all built-in service manifests. Dev mode auto-generates a vault key stored locally, so no extra setup is needed.
#3. Your first call
macOS native services need no credentials. Try this now:
kimbap call apple-notes.list-notesReturns your Apple Notes list. macOS may prompt for Automation access on first use.
#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 (Claude Code, OpenCode, Cursor, Codex) and writes operating rules into the current project directory so the agent discovers kimbap automatically.
#Next steps
- CLI Reference — all commands and flags
- Service Development — write your own YAML manifests
- Installation — production setup, vault, credentials
- Architecture — how the pipeline works