ソース情報
- リポジトリ
- Hbin77/codex-kit
- ソースの最終更新活動
- 2026年8月7日 04:26
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Hbin77/codex-kit --skill security-reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
| name | security-review |
| description | Security audit of the project or specified scope |
Run a security audit on the current project or specified scope: the task/scope the user described when invoking this skill (if none given, ask or infer from context)
Identify vulnerabilities yourself using the process below. Be evidence-based — cite file:line for every finding.
grep -rniE "password|secret|api_key|apikey|token|private_key" \
--include="*.js" --include="*.ts" --include="*.jsx" --include="*.tsx" \
--include="*.py" --include="*.go" --include="*.rb" --include="*.env" .
(or rg -ni "password|secret|api_key|apikey|token|private_key" -g '*.{js,ts,jsx,tsx,py,go,rb,env}').env files are gitignored; look for committed credentials.npm audit / pip-audit / govulncheck or equivalent.Severity scale (canonical): CRITICAL / WARNING / INFO.
## Security Audit Report
### CRITICAL
[Immediate action required — blocks deployment]
### WARNING
[Should be fixed soon]
### INFO
[Advisory / good to fix when convenient]
### Secure Patterns Found
[Positive findings — things done well]
Include remediation steps for each finding.