fix: add Kimi K2 variants to Moonshot preset (#818) (thanks @mickahouan)

This commit is contained in:
Peter Steinberger
2026-01-13 02:32:29 +00:00
parent abe9440096
commit 99a6fcf3f7
2 changed files with 3 additions and 25 deletions

View File

@@ -75,34 +75,9 @@
## Agent-Specific Notes
- Vocabulary: "makeup" = "mac app".
- When answering questions, respond with high-confidence answers only: verify in code; do not guess.
- Web: allowed by default for read/search when it adds net value; no external actions/posts without explicit OK.
- **Exécution (anti-friction)**
- Si Mike donne une intention claire de lecture/recherche (ex: “remonte son fil”, “retrouve ce tweet”) : jessaie immédiatement les meilleurs outils disponibles (ex: `bird`) sans redemander dOK.
- Je ne reviens avec une question pivot que si 2 tentatives raisonnables échouent (ex: accès public → `bird`).
- Publier/DM/agir “au nom de” reste toujours `Besoin dOK`.
- Model switch commands (copy/paste):
- Turbo: `/model moonshot/kimi-k2-turbo-preview`
- Thinking: `/model moonshot/kimi-k2-thinking`
- Thinking Turbo: `/model moonshot/kimi-k2-thinking-turbo`
- GPT-5.2: `/model openai-codex/gpt-5.2`
- Never update the Carbon dependency.
- CLI progress: use `src/cli/progress.ts` (`osc-progress` + `@clack/prompts` spinner); dont hand-roll spinners/bars.
- Status output: keep tables + ANSI-safe wrapping (`src/terminal/table.ts`); `status --all` = read-only/pasteable, `status --deep` = probes.
### ÉLYSIA (Obsidian vault) reminders
- Applies when the request concerns the ÉLYSIA vault (`/mnt/f/OBSIDIAN/ÉLYSIA`) or Obsidian MCP.
- Never write/edit/move/delete without Mikes explicit OK (includes any tool/command with write effects).
- Prefer Obsidian MCP via `mcporter` (available):
- Read/search notes: `mcporter call obsidian-mcp-server-stdio.<tool> ...`
- Tasks queries: `mcporter call obsidian-tasks.query_tasks ...`
- Do not use Obsidian MCP on `.codex/**`; use filesystem reads instead.
- Obsidian formatting: do not add an H1 (`# ...`) inside note bodies.
- Frontmatter dates: do not create/modify `création` / `modification`.
- Keep technical artifacts (scripts, exports, prototypes) out of the vault by default; use `/mnt/e/Mes Vibes Programmes/`.
### Tonality (Feu / Danse / Jardin)
- If Mike explicitly invokes Feu/Danse/Jardin: adapt style immediately.
- Otherwise: pick the mode that best serves the intent; dont recite the framework.
- Gateway currently runs only as the menubar app; there is no separate LaunchAgent/helper label installed. Restart via the Clawdbot Mac app or `scripts/restart-mac.sh`; to verify/kill use `launchctl print gui/$UID | grep clawdbot` rather than assuming a fixed label. **When debugging on macOS, start/stop the gateway via the app, not ad-hoc tmux sessions; kill any temporary tunnels before handoff.**
- macOS logs: use `./scripts/clawlog.sh` (aka `vtlog`) to query unified logs for the Clawdbot subsystem; it supports follow/tail/category filters and expects passwordless sudo for `/usr/bin/log`.
- If shared guardrails are available locally, review them; otherwise follow this repo's guidance.

View File

@@ -2,6 +2,9 @@
## 2026.1.12-4
### Changes
- Models/Moonshot: add Kimi K2 turbo + thinking variants to the preset + docs. (#818 — thanks @mickahouan)
### Fixes
- Onboarding/Configure: refuse to proceed with invalid configs; run `clawdbot doctor` first to avoid wiping custom fields. (#764 — thanks @mukhtharcm)
- Anthropic: merge consecutive user turns (preserve newest metadata) before validation to avoid “Incorrect role information” errors. (#804 — thanks @ThomsenDrake)