Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计异常

landing-the-plane飞机着陆

Agent Skill

landing-the-plane 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

192

周安装

8

GitHub Stars

2

下载量

64
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:landing-the-plane(飞机着陆)
来源仓库:https://github.com/lambdamechanic/skills
仓库路径:skills/landing-the-plane
安装命令:
npx skills add https://github.com/lambdamechanic/skills --skill landing-the-plane
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/lambdamechanic/skills --skill landing-the-plane

简介

landing-the-plane 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍为空,需参考原始 SKILL.md 补充细节。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Landing the Plane

When someone asks you to "land the plane", they want you to wrap up the current body of work cleanly—no loose ends, no hidden surprises. Use this checklist any time that phrase shows up.

Non-negotiable: landing the plane always ends with a pushed branch and an open (non-draft) pull request. Even if the work started on main, cut a feature branch, push it, create the PR, and flip it out of draft before you check this box.

1. Quality Gates

  • Run the full automated test suite plus linters/formatters that the project relies on *in the feature branch you’ll merge*.
  • Confirm that the code you wrote is covered by automated tests; add or expand tests if any path would otherwise go unverified.
  • When a review uncovers a bug/regression, follow this micro-loop before touching the fix:

1. Write (or extend) a failing test that reproduces the issue. Default to a generative proptest! so the failing input can shrink and be re-run later. 2. Run the pre-commit suite, commit that red test by itself, and push so the failing state is visible on the PR/branch. 3. Implement the fix in a separate commit, push it, and reply to the original feedback thread with the fixing commit hash/summary. 4. Comment @codex review (or ping the human reviewer) to kick off the next review once the fix is in place.

Transactional upgrades check (sticky failure prevention)

If the work touches any multi-item “apply/upgrade” loop, add property/integration tests that prove these invariants:

  • Atomicity on failure: if any target fails during the apply loop, previously processed targets are rolled back (or the lockfile is advanced in step with on-disk changes). The repository must never land in a state where on-disk contents and lockfile disagree, causing future runs to refuse to proceed.
  • Lockfile sync: the lock is only written after all filesystem changes succeed; it always captures the exact commit SHA/digest that landed so later upgrades/status checks have an immutable reference point.
  • Cross-device safety: staging/swap logic works when the install root lives on a different filesystem (e.g., rename EXDEV). Include a test that simulates cross-device behavior and asserts correctness.
  • Symlink preservation: upgrades preserve symlinks inside upgraded trees (recreate symlinks on Unix; best-effort on Windows).

Reject “done” until these tests exist and pass on CI across all OS targets in the matrix.

2. Code & Repo Hygiene

  • Strip out temporary logging, printlns, dbg! calls, feature flags, sleep statements, and other debug aids that should not ship.
  • Remove throwaway files, scripts, or notes that were only needed during exploration.
  • Remove untracked build artifacts, log files, or editor temp files that accidentally appeared. Ensure .gitignore is correct.

3. Git & Branch Workflow

  • Check git status -sb, git stash list, and git branch --merged to ensure there are no forgotten stashes or half-merged branches related to the work.
  • Rebase the feature branch on the latest main (or git pull --rebase) so the PR is merge-ready.
  • Squash or reorder commits into one or more coherent changesets with descriptive messages.
  • Push the branch to GitHub and open a PR via gh pr create with an informative title/body summarizing the change, testing, and linked bd issues. Landing the plane is not complete until a ready-for-review PR exists (even if you iterated on main, create a branch at the end and push that history), but usually we will have created a draft PR already.
  • If the PR started as a draft, convert it to "Ready for review" as part of this step so reviewers can pick it up immediately.
  • Preferred helper command to flip to ready: scripts/pr-ready.sh Or via GitHub CLI directly: gh pr ready.
  • Once the PR is ready, comment @codex review to trigger the automated review. If Codex leaves feedback, address every comment, push the fixes, reply directly on each feedback thread with the commit hash (or summary) that resolves it, and comment @codex review again until Codex reports no remaining issues.
  • Before asking for final review, check for any unresolved Codex inline threads without a human reply: scripts/codex-unreplied.sh [<pr-number>] Reply inline or resolve threads, then re-run to ensure it prints nothing.

Codex Review Trigger (exact string)

  • To request a Codex review, your PR comment must contain exactly: @codex review.
  • Put it in its own comment (not just the PR body) so the trigger is reliably detected.
  • Finish any bd update calls (notes/status changes) before your final commit/push so .beads/issues.jsonl in the PR matches the tracker state.

4. Tracking & Documentation

  • Update/close beads issues and GitHub tickets linked to the work, ensuring status, notes, and acceptance criteria are satisfied.
  • Refresh any affected docs (README, QUICKSTART, ADRs, runbooks) so they reflect the new reality.

5. Final QA & Communication

  • Re-run the tests one last time after the final rebase.
  • Post the PR link + testing summary back into bd, commit and push so it's persisted.
  • Run GH_WAIT_INTERVAL=15./scripts/gh-wait-for-merge.py --interval 15 (or similar) at the end. Let it surface any failing checks, fixing issues one-by-one until it exits cleanly. Only stop the script early if you have approval to hand off unresolved failures.
  • Verify CI is green. If it fails, fix or document the failure reason before claiming you’ve landed the plane.
  • Double-check for leftover git stashes, unpushed commits, or edge cases noted earlier.
  • Comment "@codex review" on the PR with gh when you think you're done; it's not fully done until the reviewer reports no issues found.
  • When you report back (to the user, bd, etc.), include a direct URL to the PR (full https://github.com/... link). Do not use only an abbreviation like #123.

Working through this list ensures the feature is truly finished, both trackers agree, and reviewers have a clear, reproducible artifact to look at.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

28.58%
按下载量换算18

OpenCode

22.42%
按下载量换算14

Codex

17.64%
按下载量换算11

Claude Code

14.31%
按下载量换算9

Antigravity

9.15%
按下载量换算6

Gemini CLI

4.01%
按下载量换算3

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills