소스 정보
- 저장소
- gautam-achieveai/ClaudePlugins
- 최근 소스 활동
- 2026년 7월 9일 07:23
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/gautam-achieveai/ClaudePlugins --skill autonomous-design명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Internal helper. Load only when explicitly named by another skill or agent. Publishes goal-aligned, deduplicated PR feedback with clear blocker outcomes and stable closure criteria so reviews converge without repeated comment rounds.
Conduct goal-aligned code reviews of individual pull requests, analyzing correctness, solution fit, performance, code alignment, testing coverage, and code quality while helping authors converge quickly on a mergeable change. Provides prioritized, actionable feedback with stable closure criteria. Use when asked to "review PR #[number]", "code review pull request", "check PR for issues", or "analyze PR changes". Works on GitHub or Azure DevOps, with PR numbers, branch names, or GitHub/Azure DevOps PR URLs. NOT for developer performance reviews over time.
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.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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.