- Add generate-review-builtin.ts script (downloads from zgsm-ai/costrict-review) - Add review module (index.ts, extension.ts) with locale-aware skill init - Add CommandLocale module with zh-CN/en templates for /review and /security-review - Integrate REVIEW_AGENTS into builtInAgents.ts - Route /review command to CoStrictReviewer agent - Simplify /security-review to use Skill tool with locale templates - Remove old generate-skills.ts and inline security-review skill Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
16 lines
366 B
TypeScript
16 lines
366 B
TypeScript
/**
|
|
* CoStrict Review Module
|
|
*
|
|
* Provides builtin review skills and agents that are embedded
|
|
* in the binary and extracted to cache on first run.
|
|
*/
|
|
|
|
export * as Extension from './extension.js'
|
|
export * as SkillBuiltin from './skill/builtin.js'
|
|
export {
|
|
REVIEW_AGENTS,
|
|
AGENT_VERSIONS,
|
|
PRIMARY_REVIEW_AGENT,
|
|
SUB_REVIEW_AGENT,
|
|
} from './agent/builtin.js'
|