feat(core): admit v2 skill guidance (#30843)

This commit is contained in:
Kit Langton
2026-06-05 11:19:55 -04:00
committed by GitHub
parent cc487dd032
commit 3f64b5e621
40 changed files with 3119 additions and 174 deletions
@@ -0,0 +1,11 @@
import { Effect } from "effect"
import type { DatabaseMigration } from "../migration"
export default {
id: "20260605042240_add_context_epoch_agent",
up(tx) {
return Effect.gen(function* () {
yield* tx.run(`ALTER TABLE \`session_context_epoch\` ADD \`agent\` text DEFAULT 'build' NOT NULL;`)
})
},
} satisfies DatabaseMigration.Migration