원클릭으로
build-lookup
Look up the git commit and GitHub Actions run for a Flipcash versionCode. Usage: /build-lookup <versionCode>
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Look up the git commit and GitHub Actions run for a Flipcash versionCode. Usage: /build-lookup <versionCode>
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Download and use the R8 mapping file for a Flipcash release build to deobfuscate stack traces. Usage: /r8-mapping <versionCode>
Triage a Bugsnag production issue — either the top open issue or a specific issue by URL/ID. Investigate with evidence from stack traces / logs / breadcrumbs, propose a fix direction, route through domain experts, and write a lean review brief.
Review a Dependabot PR for breaking changes, gotchas, and required code updates. Usage: /dep-review <PR number or URL>
Fetch latest protobuf definitions, verify build, summarize API changes, and scaffold new service stubs. Usage: /fetch-protos [flipcash|opencode] [commit_sha]
Generate GitHub release notes from git refs (tags, commits, or HEAD). Usage - /release-notes <from> <to>. Runs the changelog script, then rewrites the output into polished GitHub release notes.
| name | build-lookup |
| description | Look up the git commit and GitHub Actions run for a Flipcash versionCode. Usage: /build-lookup <versionCode> |
| user-invocable | true |
| argument-hint | <versionCode> |
| allowed-tools | ["Bash"] |
Resolve a Flipcash versionCode to its git commit and the associated GitHub Actions build run.
The Flipcash versionCode is the output of git rev-list --count HEAD at build
time (see apps/flipcash/app/build.gradle.kts:20-25). This means
versionCode N = the Nth commit from the root of the repository.
When someone says "commit 3797" or "build 3797" they mean versionCode 3797.
Parse $ARGUMENTS for a versionCode (integer). If not provided, ask the user.
Run the helper script:
bash .claude/skills/build-lookup/scripts/build-lookup.sh <versionCode>
The script emits JSON:
{
"version_code": 3797,
"commit": {
"sha": "637722b9c...",
"short": "637722b9c",
"message": "the commit message",
"date": "2026-06-03T..."
},
"total_commits": 3810,
"github_actions": {
"run_id": 26846060877,
"url": "https://github.com/code-payments/code-android-app/actions/runs/26846060877",
"status": "completed",
"conclusion": "success"
}
}
github_actions is null if no matching workflow run was found.
Present the results clearly:
<short_sha> — <message> (date)