install
source · Clone the upstream repo
git clone https://github.com/Microck/ordinary-claude-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Microck/ordinary-claude-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills_all/claude-win11-speckit-update-skill/skills/speckit-updater" ~/.claude/skills/microck-ordinary-claude-skills-speckit-updater && rm -rf "$T"
manifest:
skills_all/claude-win11-speckit-update-skill/skills/speckit-updater/SKILL.mdsource content
SpecKit Safe Update
This skill provides safe update capabilities for GitHub SpecKit installations, preserving customizations while applying template updates.
Installation: Available via plugin (
/plugin marketplace add NotMyself/claude-plugins then /plugin install speckit-updater) or manual Git clone. See README.md for details.
What to do when this skill is invoked
When the user invokes
/speckit-updater, you should:
-
Run the update orchestrator script without any flags (conversational mode):
pwsh -NoProfile -Command "& 'C:\Users\bobby\.claude\skills\speckit-updater\scripts\update-wrapper.ps1'" -
Parse the output for markers:
- Update scenario (existing SpecKit installation)[PROMPT_FOR_APPROVAL]
- Fresh installation scenario (no .specify/ directory)[PROMPT_FOR_INSTALL]
-
For Updates (
marker found):[PROMPT_FOR_APPROVAL]- Present the Markdown summary showing:
- Current version vs. available version
- Files to update/add/remove
- Conflicts detected (if any)
- Files preserved (customized)
- Backup location
- Custom commands
- Ask the user for approval to proceed with the update
- If approved, re-run with
flag-Proceed - If declined, inform the user the update was cancelled
- Present the Markdown summary showing:
-
For Fresh Installations (
marker found):[PROMPT_FOR_INSTALL]- Present a natural installation offer to the user, such as:
- "SpecKit is not currently installed in this project. Would you like me to install it?"
- "I can install the latest SpecKit templates for you. This will create the .specify/ directory structure and download the templates from GitHub."
- Do NOT mention the
flag to the user (this is an implementation detail)-Proceed - If user approves (says "yes", "proceed", "install it", etc.), re-run with
flag-Proceed - If user declines, inform them the installation was cancelled
- Present a natural installation offer to the user, such as:
-
Execute approved action by re-running with
flag:-Proceedpwsh -NoProfile -Command "& 'C:\Users\bobby\.claude\skills\speckit-updater\scripts\update-wrapper.ps1' -Proceed"
Special cases:
- If user requests
: run with that flag and show the report-CheckOnly - If user requests
: run with that flag and confirm restoration-Rollback - If user requests specific
: include that parameter-Version
Commands
/speckit-updater
Updates SpecKit templates, commands, and scripts while preserving customizations.
Usage:
- Interactive update/install with conversational approval workflow (recommended for Claude Code)/speckit-updater
- Proceed with update/install after approval (used by Claude after user confirms)/speckit-updater -Proceed
- Check for updates without applying/speckit-updater -CheckOnly
- Update to specific version/speckit-updater -Version v0.0.72
- Force overwrite SpecKit files (preserves custom commands)/speckit-updater -Force
- Restore from previous backup/speckit-updater -Rollback
- DEPRECATED: Use conversational workflow instead (shows warning, maps to -Proceed)/speckit-updater -Auto
Fresh Installation (No .specify/ directory):
- First invocation shows installation offer with
marker[PROMPT_FOR_INSTALL] - Claude Code presents natural question to user (e.g., "Would you like me to install SpecKit?")
- User approves via conversational response (e.g., "yes", "proceed", "install it")
- Claude re-invokes with
flag automatically (implementation detail hidden from user)-Proceed - Script creates
structure, downloads templates, creates manifest.specify/ - Exit code 0 throughout (awaiting approval is not an error)
- Consistent with update flow: both use conversational approval workflow
Process:
- Validates prerequisites (Git installed, clean Git state, write permissions)
- Loads or creates manifest (.specify/manifest.json)
- Fetches target version from GitHub Releases API
- Compares file hashes to identify customizations
- Creates timestamped backup
- Applies selective updates preserving customized files
- Opens VSCode merge editor for conflicts (Flow A: one at a time)
- Automatically invokes /speckit.constitution for constitution updates
- Updates manifest with new version
- Manages backup retention (keeps last 5)
When you invoke this command, I will:
- Execute the update-orchestrator.ps1 script
- Parse output for markers (
for updates,[PROMPT_FOR_APPROVAL]
for fresh installations)[PROMPT_FOR_INSTALL] - For updates: Present Markdown summary of proposed changes
- For installations: Ask naturally if you want to install SpecKit (without mentioning
flag)-Proceed - Wait for your approval via chat conversation
- After approval: automatically re-invoke with
flag to execute-Proceed - Guide you through conflict resolution one file at a time (updates only)
- Open VSCode diff/merge tools as needed (updates only)
- Report results with detailed summary
Conversational Workflow: The skill uses a two-step approval process:
- Step 1: Outputs summary → script exits → waits for approval
- Step 2: After approval, Claude re-invokes with
→ applies updates-Proceed
Requirements:
- Git installed and in PATH
- Internet connection for fetching updates from GitHub
- Write permissions to .specify/ and .claude/ directories
- Clean or staged Git working directory
The script is located at:
{skill_path}/scripts/update-wrapper.ps1 (entry point) and {skill_path}/scripts/update-orchestrator.ps1 (main logic)
Entry point command:
pwsh -NoProfile -Command "& '{skill_path}/scripts/update-wrapper.ps1' [parameters]"
Note: Both PowerShell-style (
-CheckOnly) and Linux-style (--check-only) flags are supported via the wrapper script.
Features
- Customization Preservation: Automatically detects and preserves user customizations using normalized file hashing
- Intelligent Conflict Resolution: Guides through conflicts one-at-a-time with 4 options: merge editor, keep mine, use new, skip
- Version Tracking: Maintains
with file hashes, version info, and backup history.specify/manifest.json - Automatic Backups: Creates timestamped backups in
with automatic retention management.specify/backups/ - Fail-Fast with Rollback: Automatically rolls back on any error, restoring pre-update state
- Dry-Run Mode:
shows exactly what would change without applying updates--check-only - Constitution Integration: Notifies when constitution template has updates (run
)/speckit.constitution - Custom Command Safety: User-created commands never overwritten, even with
--force
Architecture
Modules
- HashUtils: Normalized hashing (handles line endings, trailing whitespace, BOM)
- VSCodeIntegration: Context detection, Quick Pick, diff/merge editor integration
- GitHubApiClient: GitHub Releases API interaction (unauthenticated, 60 req/hour)
- ManifestManager: Manifest CRUD operations with caching
- BackupManager: Backup creation, restoration, and retention management
- ConflictDetector: File state analysis and conflict detection
Workflow
- Prerequisites validation (critical checks must pass, warnings allow continuation)
- Manifest loading/creation (safe default: assume all files customized if no manifest)
- GitHub API query for target version
- File state analysis (6 actions: add/remove/merge/preserve/update/skip)
- User confirmation with change preview
- Backup creation (timestamped, excludes backups directory)
- Selective file updates (fail-fast with automatic rollback)
- Conflict resolution (Flow A: one-at-a-time, VSCode merge editor)
- Manifest update (version, file hashes, customization flags)
- Backup cleanup (keep 5 most recent, requires confirmation)
- Detailed summary display
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | General error |
| 2 | Prerequisites not met |
| 3 | Network/API error |
| 4 | Git error |
| 5 | User cancelled |
| 6 | Rollback required (automatic) |