AgentSkillsCN

green

完成标准——类型检查、构建、测试、格式化,所有环节均需顺利通过

SKILL.md
--- frontmatter
name: green
description: Completion criteria -- typecheck, build, test, format must all pass

Green

Before considering work complete, verify affected packages are "green":

bash
npm run typecheck -w packages/<name>    # or workspaces/<name>
npm run build -w packages/<name>        # or workspaces/<name>
npm test -w packages/<name>             # or workspaces/<name>
npm run format packages/<name>          # or workspaces/<name>

All four must pass with zero errors or warnings for each affected package.