ワンクリックで
coding-agent
Standard procedures for a coding agent — memory hygiene and PR workflow.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Standard procedures for a coding agent — memory hygiene and PR workflow.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Audits all Markdown files in a repository for internal inconsistencies, contradictions, stale CLI commands/flags, and broken cross-references. Returns a structured findings report. Use when asked to check, audit, or verify docs for correctness or consistency.
Scans a GitHub pull request for security vulnerabilities including OWASP Top 10 issues, hardcoded secrets, and dependency CVEs. Returns a structured JSON findings report. Use when asked to review, audit, or scan a PR for security issues.
| name | coding-agent |
| description | Standard procedures for a coding agent — memory hygiene and PR workflow. |
Before starting any task, search for relevant prior context:
search_memory("relevant keywords for the task")
After completing significant work, save non-obvious findings:
save_memory({ content: "...", tags: ["relevant-area"] })
git checkout -b <descriptive-name>git add -A && git commit -m "..."git push -u origin HEADgh pr create --title "..." --body "..."