@@ -41,12 +41,9 @@ ANTHROPIC_API_KEY=sk-ant-your-api-key-here
4141### Quick Try (local Rust)
4242
4343``` bash
44- scripts/quickstart.sh --mode local
44+ cargo run -p kelvin-host -- --prompt " hello kelvin " --memory fallback
4545```
4646
47- Requires Rust toolchain. The quickstart prompts you to pick a model provider
48- (OpenAI, Anthropic, OpenRouter) or continue with echo mode if you don't have a key.
49-
5047### Install via Homebrew
5148
5249``` bash
@@ -65,14 +62,7 @@ Choose the onboarding path for your experience level:
6562- [ docs/GETTING_STARTED.md] ( docs/getting-started/GETTING_STARTED.md )
6663- latest public release: [ GitHub Releases] ( https://github.com/AgenticHighway/kelvinclaw/releases/latest )
6764
68- Verify a specific path:
69-
70- ``` bash
71- scripts/verify-onboarding.sh --track beginner
72- scripts/verify-onboarding.sh --track rust
73- scripts/verify-onboarding.sh --track wasm
74- scripts/verify-onboarding.sh --track daily
75- ```
65+ See [ docs/getting-started/GETTING_STARTED.md] ( docs/getting-started/GETTING_STARTED.md ) for track-specific setup guides.
7666
7767Plugin authors who prefer Docker over local Rust setup should use the official
7868Rust Bookworm image through:
@@ -343,7 +333,7 @@ same secure installed-plugin path as third-party plugins.
343333Quick run:
344334
345335``` bash
346- scripts/try- kelvin.sh " hello"
336+ cargo run -p kelvin-host -- --prompt " hello" --memory fallback
347337```
348338
349339Interactive mode:
@@ -412,7 +402,6 @@ Methods available over the socket:
412402Operational scripts (dev / CI):
413403
414404- ` scripts/kelvin-dev-stack.sh start|stop|status|doctor `
415- - ` scripts/quickstart.sh --mode local|docker `
416405- ` scripts/docker-cache-prune.sh [--dry-run] `
417406
418407For end-user stack management use the ` kelvin ` CLI (` kelvin start ` , ` kelvin stop ` , ` kelvin gateway ` , ` kelvin medkit ` , ` kelvin doctor ` ).
@@ -456,22 +445,11 @@ Privacy-conscious remote setup:
456445``` bash
457446cp .env.example .env
458447$EDITOR .env
459- scripts/remote-test.sh --docker
460- ```
461-
462- Additional variants:
463-
464- ``` bash
465- REMOTE_TEST_HOST=your-user@your-host scripts/remote-test.sh
466- REMOTE_TEST_REMOTE_DIR=~ /work/kelvinclaw scripts/remote-test.sh --native
467- scripts/remote-test.sh --docker
468- scripts/remote-test.sh --host your-user@your-host --cargo-args ' -- --nocapture'
469448```
470449
471450Notes:
472451
473452- ` .env ` and ` .env.local ` are gitignored; keep personal hosts/IPs there only.
474- - ` scripts/remote-test.sh ` reads ` REMOTE_TEST_HOST ` , ` REMOTE_TEST_REMOTE_DIR ` , and ` REMOTE_TEST_DOCKER_IMAGE ` from ` .env ` /` .env.local ` .
475453- ` .env ` files are parsed as key/value data and are not executed as shell code.
476454
477455## Plugin Management
@@ -495,13 +473,6 @@ Default index:
495473
496474Override with ` KELVIN_PLUGIN_INDEX_URL ` .
497475
498- Installer tests:
499-
500- ``` bash
501- scripts/test-plugin-install.sh
502- scripts/test-cli-plugin-integration.sh
503- ```
504-
505476Hosted registry service:
506477
507478``` bash
@@ -625,7 +596,7 @@ cargo test --workspace
625596SDK certification lane:
626597
627598``` bash
628- scripts/ test- sdk.sh
599+ cargo test -p kelvin- sdk
629600```
630601
631602Docker:
0 commit comments