소스 정보
- 저장소
- swim-fish/atak_tw_coord_plugin
- 최근 소스 활동
- 2026년 7월 17일 07:37
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/swim-fish/atak_tw_coord_plugin --skill speckit-git-validate명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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-validate |
| description | Validate current branch follows feature branch naming conventions |
| compatibility | Requires spec-kit project structure with .specify/ directory |
| metadata | {"author":"github-spec-kit","source":"git:commands/speckit.git.validate.md"} |
Validate that the current Git branch follows the expected feature branch naming conventions.
git rev-parse --is-inside-work-tree 2>/dev/null[specify] Warning: Git repository not detected; skipped branch validation
Get the current branch name:
git rev-parse --abbrev-ref HEAD
Before validation, remove one slash-separated integration prefix when the
branch contains exactly two segments. For example,
codex/011-native-tw-coordinate-entry is validated as
011-native-tw-coordinate-entry. Branches with more than one slash are not
rewritten.
The effective branch name must match one of these patterns:
^[0-9]{3,}- (e.g., 001-feature-name, codex/042-fix-bug, 1000-big-feature)^[0-9]{8}-[0-9]{6}- (e.g., 20260319-143022-feature-name, codex/20260319-143022-feature-name)If the effective name matches either pattern:
✓ On feature branch: <branch-name>specs/:
specs/<prefix>-* where prefix matches the numeric portionspecs/<prefix>-* where prefix matches the YYYYMMDD-HHMMSS portion✓ Spec directory found: <path>⚠ No spec directory found for prefix <prefix>If NOT on a feature branch:
✗ Not on a feature branch. Current branch: <branch-name>Feature branches should be named like: 001-feature-name or 20260319-143022-feature-nameIf Git is not installed or the directory is not a Git repository:
SPECIFY_FEATURE environment variable as a fallback