mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-12 22:03:30 +08:00
- 新增项目级 .codex/skills/gframework-boot 启动 skill,统一读取 AGENTS.md、环境清单与 local-plan 恢复信息 - 补充任务复杂度分级与 subagent/model 选择规则,约束 boot 阶段的委派流程 - 更新 AGENTS.md 中的 boot 入口约定,明确 skill 与仓库规则的优先级关系
32 lines
1.0 KiB
Markdown
32 lines
1.0 KiB
Markdown
# Startup Artifacts
|
|
|
|
## Required Reads
|
|
|
|
- `AGENTS.md`
|
|
- `.ai/environment/tools.ai.yaml`
|
|
- `local-plan/todos/`
|
|
- `local-plan/traces/`
|
|
|
|
## Local-Plan Selection Heuristics
|
|
|
|
- Match the user's wording against todo and trace file names first.
|
|
- Prefer the newest matching trace when several candidates describe the same feature area.
|
|
- If one file records a clearer recovery point than a newer but vague file, prefer the clearer recovery point.
|
|
|
|
## Complexity Defaults
|
|
|
|
- `simple`: keep everything local, no subagent
|
|
- `medium`: keep design local, optionally use one `explorer` for parallel read-only discovery
|
|
- `complex`: keep architecture and integration local, delegate only bounded non-blocking subtasks
|
|
|
|
## Model Defaults
|
|
|
|
- `explorer`: `gpt-5.1-codex-mini`
|
|
- `worker`: `gpt-5.4`
|
|
|
|
## Startup Summary Template
|
|
|
|
Use a short update before execution:
|
|
|
|
`Read AGENTS.md, the environment inventory, and the relevant local-plan artifacts. This looks like a <task-state> <complexity> task. I will <delegate-or-not> and start with <first-step>.`
|