Quick Start
Last updated April 7, 2026
Install KB Labs and run your first command in under 5 minutes.
Install kb-create, bootstrap a workspace, and run your first command.
1. Install the launcher
curl -fsSL https://kblabs.ru/install.sh | shDownloads the correct binary for your platform and installs it to ~/.local/bin. On macOS and Linux. Windows support is coming.
2. Bootstrap your project
kb-create my-projectRuns the interactive wizard: picks a package manager, configures the platform directory, and sets up .kb/kb.config.json with sane defaults. When it finishes you have a ready workspace.
3. Start services
cd my-project
kb dev:startStarts the core services: REST API, Workflow Daemon, Gateway. Check that everything is alive:
kb-create status4. Run your first command
# See all available commands
kb --help
# Semantic code search (requires LLM adapter in config)
kb mind rag-query --text "How does the plugin system work?" --agent
# List installed plugins
kb marketplace plugins listWhat's next
| Goal | Start here |
|---|---|
| Build a plugin | Guides → First Plugin |
| Set up a workflow | Guides → First Workflow |
| Configure adapters (LLM, DB, storage) | Adapters → Overview |
| Understand the architecture | Concepts → Overview |
| Run in production | Guides → Production Readiness |
Troubleshooting
Services won't start:
kb dev:doctor # environment diagnostics
kb dev:start --force # kill port conflicts and retry"Command not found" after building a plugin:
kb marketplace clear-cacheMore help: Guides → Troubleshooting