You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Umbrella for the CLI defects the 2026-07-16 skilltester eval hit repeatedly (5 surfaces, evidence per item under docs/evals/*/2026-07-16-* on cipherstash/skilltester branch 20260716-01-claude). Split out as needed:
init reports "EQL installed" when it only generated the migration — the schema doesn't exist yet; the message misleads both agents and humans.
stash plan --target claude-code spawns a nested claude subprocess — inside an agent session this hangs (nested interactive agent). It should detect it's already inside an agent (or offer a --no-spawn mode that just writes plan.md). Also crashed outright on the prisma-next context.
Skill installation is incomplete and late — skills land at plan (not init; context.json shows installedSkills: [] after init), and only 2–3 of 7 are installed; stash-supabase was omitted on Supabase apps.
init is not bundler/runtime aware — on a Vite SPA it scaffolds the FFI encryption client into src/ (the browser bundle) and emits top-level await that fails vite build --ssr (esbuild es2020); on a Deno edge app it runs npm install, scaffolds a native/TLA Node client, and records integration: postgresql with no Deno/WASM awareness.
Summary
Umbrella for the CLI defects the 2026-07-16 skilltester eval hit repeatedly (5 surfaces, evidence per item under
docs/evals/*/2026-07-16-*on cipherstash/skilltester branch20260716-01-claude). Split out as needed:--eql-version 2silently ignored on--drizzle/--directpaths — emits a v3 migration regardless, with no warning. (Inverse facet of stash eql install: --eql-version 3 rejects --drizzle, so there is no way to generate a v3 Drizzle migration #613, which tracks--eql-version 3being rejected with--drizzle.) Also--outignored / empty stub written.initreports "EQL installed" when it only generated the migration — the schema doesn't exist yet; the message misleads both agents and humans.stash plan --target claude-codespawns a nestedclaudesubprocess — inside an agent session this hangs (nested interactive agent). It should detect it's already inside an agent (or offer a--no-spawnmode that just writesplan.md). Also crashed outright on the prisma-next context.plan(notinit;context.jsonshowsinstalledSkills: []after init), and only 2–3 of 7 are installed;stash-supabasewas omitted on Supabase apps.initis not bundler/runtime aware — on a Vite SPA it scaffolds the FFI encryption client intosrc/(the browser bundle) and emits top-levelawaitthat failsvite build --ssr(esbuild es2020); on a Deno edge app it runsnpm install, scaffolds a native/TLA Node client, and recordsintegration: postgresqlwith no Deno/WASM awareness.Each surface's
bug-*.mdfiles carry exact commands, expected vs actual, and workarounds.