mizoreww/awesome-claude-code-config

update-config

Update awesome-claude-code-config to the latest version. Checks remote for new releases, then re-runs the installer with the interactive selector. Use when user types /update-config or asks to update their Claude Code configuration.

First seen Apr 28, 2026

Installation

$ npx skills add mizoreww/awesome-claude-code-config --skill update-config

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from mizoreww/awesome-claude-code-config.

npx skills add mizoreww/awesome-claude-code-config

Browse all from mizoreww/awesome-claude-code-config

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 258
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,030 B
  • docs SUMMARY.md 253 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 14 installs

SKILL.md

Update — awesome-claude-code-config

Overview

Check for updates and upgrade the installed configuration to the latest version.

Workflow

Run the following steps in order. Stop immediately if a step fails. Do NOT ask for confirmation between steps — just execute.

Step 1: Check versions

# Installed version
INSTALLED="$(cat ~/.claude/.awesome-claude-code-config-version 2>/dev/null || echo 'not installed')"

# Remote version
REMOTE="$(curl -fsSL https://raw.githubusercontent.com/Mizoreww/awesome-claude-code-config/main/VERSION 2>/dev/null | tr -d '[:space:]')"

echo "Installed: $INSTALLED"
echo "Remote:    $REMOTE"

If INSTALLED equals REMOTE, tell the user they are already on the latest version and stop.

If the remote fetch fails, warn the user and stop.

Step 2: Run the installer (remote mode)

Download and execute the latest installer interactively:

bash <(curl -fsSL https://raw.githubusercontent.com/Mizoreww/awesome-claude-code-config/main/install.sh)

This launches the interactive component selector. The installer handles:

  • Smart merging of settings.json (preserves user customizations)
  • Version stamping
  • Font and dependency installation
  • Plugin updates

Step 3: Report result

After the installer finishes, confirm the new version:

cat ~/.claude/.awesome-claude-code-config-version 2>/dev/null

Tell the user the update is complete with the new version number.

Notes

  • The installer's smart merge preserves existing settings.json customizations
  • lessons.md is never overwritten if it already exists
  • Plugins are re-installed (idempotent — existing ones are skipped)
  • User should restart Claude Code after updating for changes to take effect