소스 정보
- 저장소
- materialofair/oh-my-codex
- 최근 소스 활동
- 2026년 7월 8일 09:00
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 12
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/materialofair/oh-my-codex --skill architect-planner명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | architect-planner |
| description | 架构规划专家 - 使用 Codex 本地上下文、仓库证据和只读 child agent 进行大型系统架构设计与规划。 |
| auto_invoke | true |
| tags | ["architecture","planning","codex-native","system-design"] |
| version | 0.2.0 |
| source | fork |
| checksum | 8d45cc8e68cd1f71940dc4393ebdc3e3a1672cfea5c6fc9de7723d2244532555 |
| updated_at | 2026-06-08T02:50:00.000Z |
| layer | research |
面向复杂系统设计、架构评审和迁移规划。默认使用 Codex 当前会话、仓库检索、项目文档和只读 child agent;不调用外部模型 CLI。
手动触发:
使用 architect-planner 设计:<架构需求>
明确以下信息:
优先读取本地证据:
rg --files
rg -n "architecture|deploy|service|database|queue|auth|cache" README.md docs . 2>/dev/null
如在代码仓内,先用本地 ProjectMind 或直接检索建立事实基础:
PROJECT_PATH="$(pwd)"
PROJECTMIND_HOME="${PROJECTMIND_HOME:-/Users/WangQiao/claude-enhanced-quality}"
PYTHON_BIN="${PYTHON_BIN:-$(command -v python3 || command -v python || true)}"
if [ -z "$PYTHON_BIN" ]; then
echo "ProjectMind error: no python3 or python interpreter found" >&2
exit 1
fi
"$PYTHON_BIN" "$PROJECTMIND_HOME/project_mind.py" "$PROJECT_PATH"
补充读取:
README.mddocs/复杂场景使用 explorer 做只读架构调研:
spawn_agent(agent_type="explorer", message="<architecture exploration prompt>")
wait_agent
close_agent
Prompt 框架:
Your task is architecture exploration. Read-only.
<agent-instructions>
Inputs:
- Goal: <架构目标>
- Constraints: <约束>
- Known files/docs: <本地证据>
Trace the current architecture and produce:
1. Current system map
2. Critical dependencies and coupling points
3. Architecture risks
4. Candidate target architectures
5. Migration constraints and unknowns
Cite concrete files and configuration paths.
</agent-instructions>
至少给出:
高风险架构变更派发 reviewer:
spawn_agent(agent_type="reviewer", message="<review architecture plan for risks>")
要求 reviewer 从正确性、安全、运维、迁移风险和测试缺口角度给 findings。
## Architecture Plan
### Context
[事实、约束、目标]
### Current State
[基于本地证据的现状]
### Recommendation
[推荐方案]
### Alternatives
| Option | Pros | Cons | When to choose |
### Target Architecture
[组件、边界、数据流]
### Migration Plan
1. [step] -> verify: [check]
### Risks
[风险和缓解]
### Validation
[命令、测试、指标]
如果 child agent 不可用,在当前回复中用 [EXPLORER] / [REVIEWER] 块自演分析,但必须引用本地文件和命令结果。