一键导入
coding-agent-pm
Plan, delegate, review, and recover coding-agent implementation work with tight scope control, acceptance criteria, and validation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Plan, delegate, review, and recover coding-agent implementation work with tight scope control, acceptance criteria, and validation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when researching competitors, paid ads, Meta Ad Library creatives, TikTok ads, Instagram/TikTok organic videos, HookRadar MCP data, creative trends, AI creative analysis, reports, downloadable ad/video assets, or shareable creative tables for marketing teams.
Quality-first per-stage model routing AND a pre-flight cost gate for Claude Code dynamic workflows. Use when authoring or running ultracode / dynamic-workflow scripts, spawning subagents, or writing agent() stages — pin the right model and effort on every stage, then estimate cost and confirm with the user before launching. Verify scripts with /ultracost:check.
Use Hermes Tweet when a Claude Code workflow needs a source-aware handoff to Hermes Agent for X/Twitter research, account context, monitoring, or approval-gated actions through the native Hermes Agent plugin.
Design and generate .envelope.json AI agent team definitions — the open standard for multi-agent teams with hierarchy, access policies, human-in-the-loop gates, and cron schedules.
Deploy a free VLESS proxy/VPN node on Cloudflare Pages using edgetunnel. Automates code download, UUID generation, Pages deployment, free domain registration (DNSExit), DNS configuration, custom domain binding, and client setup for Shadowrocket/v2rayN/Clash. Uses Cloudflare Pages (not Workers) because Pages supports CNAME-based custom domains from any DNS provider, avoiding the need to host DNS on Cloudflare.
Access cryptocurrency market data from CoinPaprika: prices, tickers, OHLCV, exchanges, contract lookups for 12,000+ coins and 350+ exchanges. Free tier, no API key needed. Install MCP: add https://mcp.coinpaprika.com/sse as SSE server, or install plugin: /plugin marketplace add coinpaprika/claude-marketplace
| name | coding-agent-pm |
| description | Plan, delegate, review, and recover coding-agent implementation work with tight scope control, acceptance criteria, and validation. |
| category | ai-agents |
| license | MIT |
Use this skill when a human is preparing, delegating, reviewing, or recovering implementation work done by Claude Code, Codex, OpenClaw, or another coding agent.
# Agent Brief
## Outcome
Ship:
## Scope
Owned files/modules:
Do not edit:
Forbidden actions:
- Do not run destructive git commands.
- Do not revert unrelated user changes.
## Context
Relevant files:
Existing patterns to follow:
## Acceptance Criteria
- [ ]
- [ ]
- [ ]
## Validation
Run:
Manual checks:
## Final Response Must Include
- Files changed
- Validation run and result
- Remaining risks or follow-ups
Review in this order:
If the agent drifted, stop new edits and ask it to map each change back to the original acceptance criteria.
Use this when a coding agent's work is hard to trust:
Pause implementation. Map every changed file and every material change back to the original acceptance criteria. For each change, mark it as required, optional, or unrelated. Do not edit files until this map is complete.
User: "Have a coding agent add OAuth login."
Better assignment:
Outcome: Add GitHub OAuth login to the existing auth flow.
Scope:
- Own: src/auth/*, src/routes/login.tsx, tests/auth/*
- Do not edit: billing, onboarding, database migrations unless a failing test proves it is required
Acceptance criteria:
- [ ] Existing email login still works.
- [ ] GitHub login creates or links a user through the existing auth service.
- [ ] Auth errors render through the existing form error pattern.
- [ ] Tests cover success, denied OAuth, and existing linked account.
Validation:
- npm test -- auth
- npm run lint