feat(ce-polish-beta): human-in-the-loop polish phase between /ce:review and merge (#568)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Kieran Klaassen
2026-04-16 17:55:10 -05:00
committed by GitHub
parent 3d96c0f074
commit 070092d997
25 changed files with 3800 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
import { describe, expect, test } from "bun:test"
import { promises as fs } from "fs"
import path from "path"
import { loadClaudePlugin } from "../src/parsers/claude"
import { convertClaudeToOpenCode, transformSkillContentForOpenCode } from "../src/converters/claude-to-opencode"
@@ -6,6 +7,12 @@ import { parseFrontmatter } from "../src/utils/frontmatter"
import type { ClaudePlugin } from "../src/types/claude"
const fixtureRoot = path.join(import.meta.dir, "fixtures", "sample-plugin")
const compoundEngineeringRoot = path.join(
import.meta.dir,
"..",
"plugins",
"compound-engineering",
)
describe("convertClaudeToOpenCode", () => {
test("from-command mode: map allowedTools to global permission block", async () => {