fix(commands): use dynamic base branch and safe rollback in remove-ai-slops

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-04-01 18:21:00 -07:00
parent 51d9685571
commit 842434c81f
3 changed files with 30 additions and 9 deletions
+3
View File
@@ -12,6 +12,7 @@ declare module "bun:test" {
}
export function describe(name: string, fn: () => void): void
export function test(name: string, fn: () => void | Promise<void>): void
export function it(name: string, fn: () => void | Promise<void>): void
export function beforeEach(fn: () => void | Promise<void>): void
export function afterEach(fn: () => void | Promise<void>): void
@@ -28,6 +29,8 @@ declare module "bun:test" {
interface Matchers {
toBe(expected: unknown): void
toBeDefined(): void
toBeUndefined(): void
toBeNull(): void
toEqual(expected: unknown): void
toContain(expected: unknown): void