一键导入
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 页面并帮你完成安装。
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.
基于 SOC 职业分类
| 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 "..."