ワンクリックで
ss-modify
Modify features with impact analysis and compatibility checks. Triggers on modify/change/update/refactor intent.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Modify features with impact analysis and compatibility checks. Triggers on modify/change/update/refactor intent.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Spec-driven feature development workflow. Triggers on build/create/add/implement/develop intent.
Fix bugs with regression testing and auto-retry. Triggers on fix/debug/broken/error/not-working intent.
Initialize SpecSwarm for a project with constitution and standards. Triggers on setup/initialize/configure intent.
Show feature metrics and sprint analytics. Triggers on metrics/stats/analytics/how-did-we-do intent.
Prepare releases with changelog, version bump, and tagging. Confirms on release/tag/publish/version intent.
Safely rollback failed features (DESTRUCTIVE). ALWAYS confirms on rollback/undo/revert/abort intent.
SOC 職業分類に基づく
| name | ss-modify |
| effort | low |
| description | Modify features with impact analysis and compatibility checks. Triggers on modify/change/update/refactor intent. |
| allowed-tools | AskUserQuestion, SlashCommand |
| hooks | [{"event":"PreToolUse","tool":"SlashCommand","handler":"ensure-impact-analysis","description":"Ensures impact analysis is completed before modification commands"},{"event":"PostToolUse","tool":"SlashCommand","handler":"track-modification-progress","description":"Tracks modification progress and breaking change detection"}] |
Provides natural language access to /ss:modify command.
Trigger this skill when the user mentions:
Examples:
--refactor--deprecate--analyze-onlyNOT for this skill:
Skill-Based Routing:
Detect that user mentioned modifying/changing existing functionality
Extract the modification description from their message
Route based on intent clarity:
Clear intent - Execute directly:
/ss:modify "modification description"/ss:modify "target" --refactor/ss:modify "target" --deprecate/ss:modify "target" --analyze-onlyAmbiguous intent - Ask for confirmation:
If user selects Option 2, process normally without SpecSwarm
After command completes, STOP - do not continue with ship/merge
/ss:modify runs complete workflow:
Stops after modification is complete - does NOT merge/ship/deploy.
This skill should trigger not just on exact keywords, but semantic equivalents:
Modify equivalents: modify, change, update, adjust, enhance, extend, alter, revise, adapt, transform, convert Refactor equivalents: refactor, clean up, reorganize, simplify, reduce complexity, eliminate duplication, improve naming, optimize structure Deprecate equivalents: deprecate, sunset, retire, phase out, remove feature, end-of-life Impact analysis equivalents: what's the impact, analyze impact, dependency analysis, blast radius Target terms: feature, functionality, behavior, workflow, process, mechanism, system, module, component
Distinguish from:
User: "Change authentication from session to JWT"
Claude: 🎯 Running /ss:modify... (press Ctrl+C within 3s to cancel)
[Executes /ss:modify "Change authentication from session to JWT"]
User: "Refactor the utils module to reduce complexity"
Claude: 🎯 Running /ss:modify --refactor... (press Ctrl+C within 3s to cancel)
[Executes /ss:modify "utils module" --refactor]
User: "Deprecate the v1 API"
Claude: 🎯 Running /ss:modify --deprecate... (press Ctrl+C within 3s to cancel)
[Executes /ss:modify "v1 API" --deprecate]
User: "What would be the impact of changing the user model?"
Claude: 🎯 Running /ss:modify --analyze-only...
[Executes /ss:modify "user model" --analyze-only]
User: "Update the authentication"
Claude: [Shows AskUserQuestion]
1. Run /ss:modify - Use SpecSwarm's workflow
2. Process normally - Handle as regular Claude Code request
User selects Option 1