원클릭으로
autonomous-design
Internal helper. Load only when explicitly named by another skill or agent.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Internal helper. Load only when explicitly named by another skill or agent.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
This skill should be used when the user asks to "babysit a PR", "babysit my pull request", "monitor my PR", "watch my pull request", "keep my PR green", "fix PR build failures automatically", "handle PR review comments", or wants autonomous Azure DevOps PR monitoring that fixes build breaks, test failures, code coverage gaps, and review comments on a polling loop.
Internal helper. Load only when explicitly named by another skill or agent.
Internal helper. Load only when explicitly named by another skill or agent.
Publish local changes as an Azure DevOps pull request — analyzes commits, creates or links a work item (bug, task, or user story), pushes the branch, composes a PR description, and optionally tends to reviewer feedback and build failures until the PR is merged.
Internal helper. Load only when explicitly named by another skill or agent.
Internal helper. Load only when explicitly named by another skill or agent.
| name | autonomous-design |
| description | Internal helper. Load only when explicitly named by another skill or agent. |
| user-invocable | true |
| disable-model-invocation | false |
Design a solution without interactive user approval. Requirements come from structured sources (tracked work items/issues, specs, acceptance criteria) rather than live conversation.
This is the autonomous counterpart to development:brainstorming. Use
brainstorming when a user is in the loop; use this skill when operating
autonomously inside a namespaced workflow (e.g., ado:ado-work-on or
gh:gh-work-on).
When similarly named workflows exist in multiple plugins, keep the namespace so the target system stays explicit.
`development:brainstorming` has a HARD-GATE requiring user approval. This skill auto-selects the best approach based on simplicity and pattern consistency. There is no interactive approval step.List all functional requirements from the available context:
code-reviewer:pr-context-gatherer to extract context from related work items, PRs, or issues.Note any ambiguities — these become assumptions to document.
Use Grep/Glob/Read to understand the relevant code area. Identify:
Propose 2-3 approaches. For each:
Choose the approach that best balances:
Document the reasoning for the selection.
Append to the decision log (if one exists):
## Design Decision
- **Chosen approach**: <approach description>
- **Rationale**: <why this over alternatives>
- **Alternatives rejected:**
- <alternative>: <why rejected>
- **Assumptions**: <any ambiguities resolved by assumption>
<design_review_gate> This is a hard gate: pressure-test the chosen approach BEFORE it is finalized and handed off. Do NOT skip it because the change looks small — this is where over-engineering, design-pattern smells, and blind spots get caught while they are still cheap to fix.
Dispatch reviewers in parallel across two tracks, then triage.
Track 1 — Structured design reviewers (code-reviewer:* agents). At design
time there is no diff, so run only the ones that can reason about the described
approach — skip an agent whose trigger surface (schema, hot path, new type) the
design doesn't actually name:
code-reviewer:architecture-review — layer boundaries, dependency
direction, SOLID, coupling, DI patterns; flags structural risks earlycode-reviewer:over-engineering-review — compares the proposed scope
against the stated intent; flags speculative abstractions, unrequested
features, premature optimization, and other YAGNI violationscode-reviewer:class-design-simplifier — over-abstracted hierarchies,
unnecessary layers, premature generalization, and other design-pattern
complexity in the proposed types/componentscode-reviewer:feature-flag-reviewer — assesses blast radius,
reversibility, and change type to recommend whether the change should
ship behind a feature flagcode-reviewer:schema-compatibility-review — when the design touches
schemas, DTOs, migrations, queue payloads, or any wire-contract surface;
catches forward/backward compat breaks and rollout-sequencing riskscode-reviewer:performance-review — when the design touches hot paths,
large collections, async/concurrency, caching, or data-access patternsTrack 2 — Blind-spot (adversarial) critique. Dispatch 2-3 Explore agents
in parallel, each acting as a devil's advocate against the chosen approach.
Their job is to find what the design MISSED, not to confirm it. Each should
attack a different angle:
(This mirrors the Bug RCA adversarial review used elsewhere in the work-on flow.)
Triage and loop. Collect all findings and classify by severity:
Record the gate outcome (which reviewers ran, key findings, what changed) in the decision log so the rationale survives into the plan and PR. </design_review_gate>
Note: there is no dedicated design-time security reviewer in the
code-reviewer plugin — security concerns are evaluated at code-review time
via the pr-review skill's OWASP checklist. If the design has obvious
security implications (authentication, authorization, crypto, payment, PII
handling), surface them explicitly in the design decision so they're not
discovered late.
Apply the gate's feedback, finalize the design decision, and hand it back to the calling workflow. This skill produces a design decision, not code — it does not implement. The caller turns the design into a concrete plan and then executes:
development:work-on (used by ado:ado-work-on and gh:gh-work-on):
the design decision feeds Phase 1.2-Feature Stage B, where a Plan subagent
details it into a file-by-file implementation plan; implementation then runs in
Phase 2, which delegates to the development:implement skill.The output of this skill is a review-vetted design decision (chosen approach,
rationale, rejected alternatives, assumptions, and the design-review gate
outcome) ready to feed into an implementation plan. The calling skill (e.g.,
development:work-on via ado:ado-work-on or gh:gh-work-on) takes this output
and proceeds to plan creation.