39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
#!/usr/bin/env bun
|
|
import path from "path"
|
|
import { validateReleasePleaseConfig } from "../../src/release/config"
|
|
import { getCompoundEngineeringCounts, syncReleaseMetadata } from "../../src/release/metadata"
|
|
import { readJson } from "../../src/utils/files"
|
|
|
|
const releasePleaseConfig = await readJson<{ packages: Record<string, unknown> }>(
|
|
path.join(process.cwd(), ".github", "release-please-config.json"),
|
|
)
|
|
const configErrors = validateReleasePleaseConfig(releasePleaseConfig)
|
|
const counts = await getCompoundEngineeringCounts(process.cwd())
|
|
const result = await syncReleaseMetadata({ write: false })
|
|
const changed = result.updates.filter((update) => update.changed)
|
|
|
|
if (configErrors.length === 0 && changed.length === 0) {
|
|
console.log(
|
|
`Release metadata is in sync. compound-engineering currently has ${counts.agents} agents, ${counts.skills} skills, and ${counts.mcpServers} MCP server${counts.mcpServers === 1 ? "" : "s"}.`,
|
|
)
|
|
process.exit(0)
|
|
}
|
|
|
|
if (configErrors.length > 0) {
|
|
console.error("Release configuration errors detected:")
|
|
for (const error of configErrors) {
|
|
console.error(`- ${error}`)
|
|
}
|
|
}
|
|
|
|
if (changed.length > 0) {
|
|
console.error("Release metadata drift detected:")
|
|
for (const update of changed) {
|
|
console.error(`- ${update.path}`)
|
|
}
|
|
console.error(
|
|
`Current compound-engineering counts: ${counts.agents} agents, ${counts.skills} skills, ${counts.mcpServers} MCP server${counts.mcpServers === 1 ? "" : "s"}.`,
|
|
)
|
|
}
|
|
process.exit(1)
|