一键导入
flight-debrief
Post-flight analysis for continuous improvement. Use after a flight is completed to capture lessons learned and improve the methodology.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Post-flight analysis for continuous improvement. Use after a flight is completed to capture lessons learned and improve the methodology.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Initialize a project for Flight Control. Creates .flightops directory with methodology reference and artifact configuration. Run before using other Flight Control skills on a new project.
Run a behavior test — spawn two live agents (an Executor that performs each step's actions and a Validator that judges each step's expected results), drive them through the spec's step table communicating mid-test so failures surface immediately, then write a run log with evidence. Tests are specs that follow the Witnessed pattern: every action is judged by an independent agent. Verifies system properties through observables (UI state, HTTP responses, shell output, filesystem state) measured via whichever apparatus (MCP, tool) is registered. Invocation: `/behavior-test <slug>` to run a test by slug. Specs are authored inline during flight/leg/mission planning — see `AUTHORING.md` sibling file for the authoring guide. Spec format lives in the target project's `.flightops/ARTIFACTS.md`.
Active orchestrator for multi-agent flight execution. Drives leg design per leg, then batches implementation across all autonomous legs, with a single code review and commit at the end of the flight.
Create technical flight specifications from missions. Use when breaking down a mission into implementable work or planning technical approach.
Between-mission codebase health assessment. Run after `/mission-debrief`, never after an individual flight, to verify the codebase is flight-ready or scaffold a maintenance mission. Per-flight findings instead roll into the next flight or accumulate into an end-of-mission maintenance flight — not into this skill.
Generate detailed implementation guidance for LLM execution. Use when creating atomic implementation steps from a flight.
| name | flight-debrief |
| description | Post-flight analysis for continuous improvement. Use after a flight is completed to capture lessons learned and improve the methodology. |
Perform comprehensive post-flight analysis for continuous improvement.
/init-project (.flightops/ARTIFACTS.md must exist)landed before debriefingIdentify the target project
projects.md to find the project's pathVerify project is initialized
{target-project}/.flightops/ARTIFACTS.md exists/init-project firstRead the artifact configuration
{target-project}/.flightops/ARTIFACTS.md for artifact locations and formatsLoad flight documentation
Load project context
README.md and CLAUDE.mdExamine actual implementation
Read {target-project}/.flightops/agent-crews/flight-debrief.md for crew definitions and prompts (fall back to defaults at .claude/skills/init-project/defaults/agent-crews/flight-debrief.md).
Validate structure: The phase file MUST contain ## Crew, ## Interaction Protocol, and ## Prompts sections with fenced code blocks. If the file exists but is malformed, STOP and tell the user: "Phase file flight-debrief.md is missing required sections. Either fix it manually or re-run /init-project to reset to defaults."
subagent_type: "general-purpose")
subagent_type: "general-purpose")
Brief questions to capture insights documents may miss. Keep this lightweight — 2-3 questions max based on what you observed in the flight log.
Skip the human interview if the flight log is comprehensive and there are no obvious gaps.
Synthesize Developer input, Architect input, human input, and document analysis across multiple dimensions:
Evaluate whether the mission-control skills could be improved:
Create the flight debrief artifact using the format defined in .flightops/ARTIFACTS.md.
Ask the user if the flight should be marked as completed. If confirmed, update the flight artifact's status from landed to completed.
Avoid vague recommendations. Instead of "improve documentation," say:
When the debrief surfaces a "we should have caught this with a test" insight (especially behavior that needs real-environment observation — UI flow, multi-component interaction, AI agent behavior), recommend authoring a behavior test spec as a follow-up action. See .claude/skills/behavior-test/AUTHORING.md. The spec gets written during the next planning conversation; the test gets run via /behavior-test {slug} thereafter.
Identify effective patterns that should be reinforced or codified.
Create the debrief artifact using the location and format defined in .flightops/ARTIFACTS.md.
After creating the debrief, summarize the top 3-5 most impactful recommendations.