Secure action runtime for AI agents
Turn APIs and apps into secure CLI tools for agents.
REST APIs, CLI tools, macOS apps — one YAML, one command. Credentials never enter the agent process. Cuts agent token usage by up to 90%.
curl -fsSL https://kimbap.sh/install.sh | bashGet to your first CLI call quickly
Install
bashcurl -fsSL https://kimbap.sh/install.sh | bashInitialize
bashkimbap init --services selectCall
bashgeosearch --name "San Francisco" weather --latitude 37.7749 --longitude -122.4194
Connect your AI agent
kimbap agents setupDetects installed agents, generates SKILL.md per service, and installs them into each agent's config.
Works with Claude Code, OpenCode, Codex, Cursor, and any agent that can run a CLI command.
Token-efficient by default
Declare a response.filter in your manifest to strip API noise before it reaches the agent — 83–94% smaller on GitHub, Slack, and Notion. Learn more →
Turn your API into a CLI
Define your API endpoints in YAML. Kimbap turns them into CLI commands.
Your API
httpGET /v1/services/{service}/deployments Authorization: Bearer <token>Define it in YAML
yamlname: inventory-api version: 1.0.0 aliases: [inventory] base_url: https://api.internal.company.com/v1 auth: type: bearer credential_ref: inventory_api.token actions: list-items: aliases: [items] method: GET path: /warehouses/{warehouse}/items params: warehouse: required: true risk: level: lowInstall the service
bashkimbap service install inventory-api.yamlRegister once.
Run as a direct CLI command
bashitems --warehouse seoulThen run it like a native CLI command.
Documentation
Keep the homepage minimal, and use the docs for full details: installation, CLI reference, service development, architecture, security, deployment, and API contracts.