소스 정보
- 저장소
- asermax/claude-plugins
- 최근 소스 활동
- 2026년 2월 8일 18:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/asermax/claude-plugins --skill analyze-impact명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Build something already designed, together with the user, then verify it and offer to commit. Use when a design is agreed and the work is ready to write, or when another skill needs the shared build discipline.
Load first when working with any zenku skill. Carries the vocabulary, the two rules, how to find the project's vault and conventions, and the habits for writing into it.
Lay out the current shape so the user can settle a new one — which modules exist, where the seams are, how data flows, and what earlier quests already decided. Use when the user wants to design a feature or a module, work out an interface, decide where a boundary belongs, or when another skill needs a shape agreed before code.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | analyze-impact |
| description | Analyze the impact of a proposed change on features and dependencies |
| argument-hint | [change description] |
| disable-model-invocation | true |
Analyze the impact of a proposed change on existing features, dependencies, and documentation.
Change description: $ARGUMENTS (optional - will prompt if not provided)
You must load the following skills and read the following files before proceeding.
katachi:iterative-development - Impact analysis workflowdocs/feature-specs/README.md - Feature capability indexdocs/feature-designs/README.md - Feature design indexdocs/architecture/README.md - Architecture decisions (ADRs)docs/design/README.md - Design patterns (DES)Verify framework is initialized:
docs/planning/ doesn't exist, explain this command requires initialized frameworkIf not provided in arguments, ask:
"Describe the change you're considering:
- What are you planning to change?
- Why is this change needed?
- What areas do you think might be affected?"
Task(
subagent_type="katachi:impact-analyzer",
prompt=f"""
Analyze the impact of this proposed change.
## Change Description
{change_description}
## Feature Specs Index
{feature_specs_readme}
## Feature Designs Index
{feature_designs_readme}
## Feature Spec Paths
{list_of_feature_spec_paths}
## Feature Design Paths
{list_of_feature_design_paths}
## ADR Index
{adr_readme}
## DES Index
{des_readme}
"""
)
Show the analysis results in a clear format:
## Impact Analysis
### Change Summary
[What's being changed]
### Risk Level: [Isolated | Moderate | Significant | Structural]
### Directly Affected Features
| Feature | Impact | Reason |
|---------|--------|--------|
| CORE-001 | High | [reason] |
| API-002 | Medium | [reason] |
### Transitively Affected Features
| Feature | Path | Impact |
|---------|------|--------|
| UI-003 | CORE-001 → UI-003 | Medium |
### Documents Requiring Updates
- docs/feature-specs/CORE-001.md - Update acceptance criteria for X
- docs/feature-designs/API-002.md - Revise data flow for Y
- docs/architecture/ADR-005.md - Consider superseding
### Recommendations
1. [Action item]
2. [Action item]
Based on risk level, offer appropriate next steps:
Isolated (1-2 features, no transitive):
"This is a contained change. You can proceed with implementation.
Would you like to:
A) Start implementing (update affected specs first)
B) See more details about affected features
C) Cancel and reconsider"
Moderate (3-5 features or limited transitive):
"This change has moderate impact. I recommend reviewing affected specs before proceeding.
Would you like to:
A) Review affected specs
B) Create an ADR to document this decision
C) See the full dependency chain
D) Cancel and reconsider"
Significant (5+ features or broad transitive):
"This is a significant change with broad impact.
I recommend:
1. Creating an ADR to document the decision and rationale
2. Reviewing all affected specs and designs
Would you like to:
A) Create an ADR for this change
B) Review affected documents
C) Cancel and reconsider"
Structural (architecture or cross-cutting):
"This change affects core architecture and has structural implications.
Before proceeding, I strongly recommend:
1. Creating an ADR with thorough alternatives analysis
2. Reviewing all affected areas in detail
This is a significant decision. Would you like to:
A) Start a detailed architecture discussion
B) Create an ADR to explore options
C) See affected areas in detail
D) Cancel and reconsider"
Review affected specs:
Create ADR:
/katachi:decisionThis command integrates with:
/katachi:decision - For documenting significant changes as ADR or DES/katachi:add-delta - When change requires new work (delta) to implementThis is an informational command: