基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/eugeneh101/astrotyper --skill git-commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Runs all unit tests (Jest) and Python evaluations (tests/eval/run_evals.py) for the AstroTyper project, then reports the results. Does NOT refactor or fix any failures unless explicitly asked.
Performs a systematic STRIDE threat modeling assessment on the current project's codebase and architecture. Use this when starting a new implementation phase or reviewing existing components.
A workflow for fixing bugs using Test-Driven Development (TDD). Trigger this when the user describes a bug and wants you to do TDD or Red-Green-Refactor.
| name | git-commit |
| description | Analyzes uncommitted changes, formats a concise changelog, and automatically runs git add and git commit. |
When the user requests to commit their code (e.g. using the /git-commit slash command or asking to "commit changes"), follow these steps:
Run the following commands to understand what has changed:
git status to see modified and untracked files.git diff (and git diff --cached if files are already staged) to read the specific line-by-line changes.Synthesize the changes into a concise, professional commit message.
feat:, fix:, refactor:, chore:).Use the run_command tool to execute the commit:
git add .
git commit -m "<type>: <brief summary>" -m "<bulleted list of detailed changes>"
Since the secure sandbox blocks git push from accessing the network and macOS Keychain, do NOT attempt to run git push yourself.
Instead, inform the user that the local commit was successful, print the commit message you used, and politely ask them to run git push manually in their own terminal.