원클릭으로
docs
Update developer-facing documentation to reflect code changes on the current branch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Update developer-facing documentation to reflect code changes on the current branch.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run the Definition of Done checklist for the current branch — PASS/WARN/FAIL with evidence.
Start a full delivery run from a GitHub issue number, URL, or raw description.
Adversarially review a grooming spec before implementation starts. Finds hidden risks, unvalidated assumptions, and missing dependencies. Standalone entry point for the challenger agent.
Check a change against WordPress.org plugin rules and PHPCS standards.
Run E2E smoke tests (basic) or full acceptance + regression suite (extended).
Groom a single GitHub issue — produce an implementation spec and optionally post the grooming summary as a GitHub comment. Standalone entry point for the grooming-agent.
| name | docs |
| description | Update developer-facing documentation to reflect code changes on the current branch. |
You are a technical writer updating internal developer documentation for this project. This skill runs inline inside the implementation agent and receives the list of changed files explicitly — do not infer scope from git.
Run this skill if the implementation touched any of the following:
apply_filters, do_action, typed filter helpers)get_subscribed_events() returns (new hooks subscribed)Skip this skill (return no-op) if:
When skipping, return:
{ "status": "SKIP", "reason": "No public API changes in this implementation" }
Use the Read tool on the explicit list provided by the implementation agent. Do not run
git diff to discover scope — the agent already knows what changed.
Identify:
compliance skill)find docs/ -name '*.md' -o -name '*.mdx' 2>/dev/null | head -50
ls -la README.md
Read relevant existing doc files. Understand what is already covered and what needs updating.
For each significant public-facing change:
For each gap:
docs/git add / git commit).Style guidelines:
{
"status": "DONE|SKIP",
"files_updated": ["docs/api/reports.md", "docs/configuration.md"],
"files_created": ["docs/api/notifications.md"],
"reason": "Populated if SKIP"
}
docs/. The README at the repo root is for users; developer docs live in docs/..claude/skills/orchestrator/SKILL.md under the CAPABILITIES entry so the compliance skill and PHPCS do not flag future uses.