用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/swim-fish/atak_tw_coord_plugin --skill speckit-git-commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Prepare, audit, stage, or publish this ATAK plugin through the TAK Third Party Pipeline. Use for TPP source ZIPs, returned bundles, signer checks, release assets, signed tags, or GitHub Releases.
Wiring checklist for adding (or debugging a missing) ATAK Tools-menu page in this plugin. Use whenever you add a new DropDownReceiver page, a new AbstractPluginTool, a toolbar icon, or when a tool/page "exists in code but the Tools-menu button never appears" / "the drop-down never opens". Covers the four seams that must all be wired or the icon silently won't show.
Build, install, reload, and collect safe acceptance evidence for this ATAK plugin on a connected Android device. Use for adb devices, install to device, ATAK restart, plugin reload, logcat smoke checks, or compatibility matrices.
基于 SOC 职业分类
正在显示 SKILL.md
| name | speckit-git-commit |
| description | Commit reviewed Spec Kit paths after a command completes; refuses blanket staging |
| compatibility | Requires spec-kit project structure with .specify/ directory |
| metadata | {"author":"github-spec-kit","source":"git:commands/speckit.git.commit.md"} |
Commit only an explicitly reviewed Spec Kit path set after a command completes.
This command is invoked as a hook after (or before) core commands. It:
after_specify hook, the event is after_specify; if before_plan, the event is before_plan).specify/extensions/git/git-config.yml for the auto_commit sectionauto_commit.default if no event-specific key existsmessage if configured, otherwise a default messagegit add -- <paths> followed
by git commit. It refuses to run without pathspecs; git add . and
git add -A are prohibited.Determine the event name from the hook that triggered this command, then run the script:
.specify/extensions/git/scripts/bash/auto-commit.sh <event_name> <reviewed-path>....specify/extensions/git/scripts/powershell/auto-commit.ps1 <event_name> <reviewed-path>...Replace <event_name> with the actual hook event (e.g., after_specify, before_plan, after_implement).
Derive the path list from the reviewed diff. Do not include unrelated dirty-tree
changes. Auto-commit remains disabled by default.
In .specify/extensions/git/git-config.yml:
auto_commit:
default: false # Global toggle — set true to enable for all commands
after_specify:
enabled: true # Override per-command
message: "[Spec Kit] Add specification"
after_plan:
enabled: false
message: "[Spec Kit] Add implementation plan"