用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tools-only/X-Skills --skill board-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
基于 SOC 职业分类
正在显示 SKILL.md
| name | board-review |
| description | Quick board review - get expert opinions from 5 directors without full deliberation |
| arguments | [{"name":"proposal","type":"string","description":"The proposal, plan, or decision to review","required":false}] |
| user_invocable | true |
Run a quick assessment from the 5-member Board of Directors. Each director provides their expert opinion in parallel, without the discussion phase.
/board-review [proposal or leave blank to review current track]
| Director | Domain |
|---|---|
| CA - Chief Architect | Technical design, scalability, patterns |
| CPO - Chief Product Officer | User value, market fit, scope |
| CSO - Chief Security Officer | Security, compliance, risk |
| COO - Chief Operations Officer | Feasibility, timeline, resources |
| CXO - Chief Experience Officer | UX/UI, accessibility, design |
// Dispatch all 5 directors in parallel
const assessments = await Promise.all([
Task({
subagent_type: "general-purpose",
description: "CA board assessment",
prompt: `You are the Chief Architect.
Proposal: ${proposal}
Follow .claude/skills/board-of-directors/directors/chief-architect.md
Output JSON assessment.`
}),
// ... CPO, CSO, COO, CXO
]);
## Quick Board Review
**Proposal**: [summary]
| Director | Verdict | Score | Top Concern |
|----------|---------|-------|-------------|
| CA | APPROVE | 8/10 | Query performance |
| CPO | APPROVE | 9/10 | None |
| CSO | CONCERNS | 6/10 | Rate limiting missing |
| COO | APPROVE | 7/10 | Timeline tight |
| CXO | APPROVE | 8/10 | Minor a11y issues |
**Quick Verdict**: 4-1 APPROVE with conditions
**Key Conditions**:
1. Add rate limiting (CSO)
2. Add query caching (CA)