Adds seed/ directory with: - AGENTS.md: zot operational rules (mother, verbs, capabilities) - harness.toml: harness="zot", model="deepseek-v4-pro" - env.placeholder: template for API key injection build.sh seed population step reads provider keys from the build host's /usr/local/etc/colibri/provider.env and writes them to the seed partition's env file. Also installs AGENTS.md, harness.toml, and the layered-soul backup. Keys are NEVER committed — only placeholders. Real keys are injected at build time from the build host's provider.env (DEEPSEEK_API_KEY, OPENROUTER_API_KEY).
12 lines
547 B
Text
12 lines
547 B
Text
# Provider API keys — seeded onto the CLAWDIESEED partition.
|
|
# build.sh copies this template and replaces the placeholder values
|
|
# with real keys from /usr/local/etc/colibri/provider.env on the build host.
|
|
#
|
|
# The seed importer merges these into both ~/.env (operator) and
|
|
# /usr/local/etc/colibri/provider.env (daemon), so the autospawned zot
|
|
# boots with working API keys.
|
|
#
|
|
# DO NOT commit real keys to this file. Placeholders only.
|
|
|
|
DEEPSEEK_API_KEY=SEED_DEEPSEEK_API_KEY_PLACEHOLDER
|
|
OPENROUTER_API_KEY=SEED_OPENROUTER_API_KEY_PLACEHOLDER
|