From Agent Crew
リポジトリ内の個人情報・機密情報の漏洩リスクを検査するスキル。 「個人情報チェック」「プライバシー監査」「情報漏洩チェック」 「公開前に確認して」「個人情報が含まれていないか調べて」 のような指示で起動。git 追跡ファイル全体をスキャンし、 🔴 CRITICAL / 🟡 WARNING / 🟢 INFO で分類して報告する。 公開リポジトリへの push 前・プラグイン配布前に実行推奨。
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-crew:privacy-auditThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
git ls-files
スキャン対象: git ls-files で列挙されたすべてのテキストファイル。
除外: .git/、node_modules/、バイナリファイル、*.lock、.env(未追跡であれば問題なし)
bash scripts/privacy-check.sh
自動スキャンが対象とするパターン:
@ を含むもの)/Users/<username>/ 等のユーザー名を含むもの)hooks.slack.com/services/)ghp_ プレフィックス)以下のファイルが git 追跡対象になっていないか確認する:
git ls-files | grep -E '(settings\.local\.json|\.env|credentials|\.secret|_lessons\.json)' || echo "(対象ファイルなし)"
危険なファイルが追跡対象の場合は 🔴 CRITICAL として報告する。
git log --oneline -50
コミットメッセージに実名・メールアドレス・電話番号が含まれていないか目視確認する。
以下の形式でレポートを出力する:
## プライバシー監査結果
### 🔴 CRITICAL(即時対応が必要)
- ファイル: 内容(コミット前に削除または .gitignore 追加が必須)
### 🟡 WARNING(公開前に確認推奨)
- ファイル: 内容(意図的な場合は除外設定を見直す)
### 🟢 INFO(懸念なし)
- 検出なし / 検出内容と判断理由
### 総合判定: SAFE / REVIEW_NEEDED / UNSAFE
scripts/privacy-check.sh が差分ファイルに対して自動実行されるclaude plugin install で配布前に実行することを推奨Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub andryu/agent-crew --plugin agent-crew