用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/boogy/aws-oidc-warden --skill fix-issue命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fix-issue |
| description | Use when asked to analyze and fix a GitHub issue in this repo. Takes the issue number as argument. |
Issue-to-PR workflow. <N> is the issue number passed as argument.
gh issue view <N>
Expected vs actual behavior, repro steps, affected components.
rg -n "<search term>" internal/
rg -n "func.*Handle" internal/handler/ # request pipeline
rg -n "Validate" internal/validator/ # token validation
rg -n "mapstructure:" internal/config/ # config keys
Each internal/<pkg>/CLAUDE.md maps its package — read the one for the
area being touched before changing it.
Follow codebase patterns: interfaces for testability, explicit error
handling, slog structured logging, pre-compiled regex, validated and
size-bounded external input. New sentinel errors go in
internal/handler/types.go and must be mapped to HTTP status in every
frontend adapter (apigateway.go, alb.go, lambdaurl.go).
Add cases to the existing table-driven tests; cover edge cases.
make check # fmt + lint + vuln + test — must pass
If the fix touches deploy/, also run the deploy-check skill.
Conventional Commits, signed, no co-author:
fix: <brief description>
Fixes #<N>
gh pr create --title "fix: <description>" --body "Fixes #<N>"