update-config

update-config is a skill for Claude Code, Codex from Mizoreww/awesome-claude-code-config. It costs 48 tokens per session (457 once invoked), scanned B, original, MIT.

A tool for updating the awesome-claude-code-config configuration to its newest released version. It checks the installed and remote versions, then runs the installer when an update exists.

In plain words
What is it for?
Use it when you run /update-config or need to check for and install a newer version of that Claude Code configuration.
Why use it?
It removes the need to manually compare versions and fetch the installer. The installer also preserves existing settings while updating the configuration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths; mentions Claude Code.

Good fit Use it when you run /update-config or need to check for and install a newer version of that Claude Code configuration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mizoreww/awesome-claude-code-config/update-config
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Mizoreww/awesome-claude-code-config --skill update-config
Clone the repo
git clone --depth 1 https://github.com/Mizoreww/awesome-claude-code-config

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for update-config

README.md
[![agentmods](https://agentmods.dev/badge/skills/mizoreww/awesome-claude-code-config/update-config/github.svg)](https://agentmods.dev/skills/mizoreww/awesome-claude-code-config/update-config)
Your own site
<a href="https://agentmods.dev/skills/mizoreww/awesome-claude-code-config/update-config"><img src="https://agentmods.dev/badge/skills/mizoreww/awesome-claude-code-config/update-config/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for update-config

Your own site · 80×15
<a href="https://agentmods.dev/skills/mizoreww/awesome-claude-code-config/update-config"><img src="https://agentmods.dev/badge/skills/mizoreww/awesome-claude-code-config/update-config.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 457 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Agent Snooping · line 21
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
  • high Agent Snooping · line 53
    Skill reads from agent configuration directories (.claude/, .codex/, .gemini/). These directories may contain API keys, personal settings, and other credentials that the skill has no legitimate need to access.
    Fix: Remove all code or instructions that access agent configuration directories (.claude/, .codex/, .gemini/). If configuration values are needed, pass them explicitly as parameters or environment variabl
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.00457
Opus 5 $0.00024 $0.00229
Sonnet 5 $0.00010 $0.00091
Haiku 4.5 $0.00005 $0.00046

Measured 9d ago against content hash 73a0aef5d8d1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

update-config scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

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

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

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

Copies of this mod

1 near-identical copy found in the catalogue:

skills/update-config/SKILL.md · 64 lines

What it actually says

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
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 64 lines · 48 tokens per session scan B 73a0aef5d8d1

Subscribe to this mod's changes

update-config is a skill published in the GitHub repository Mizoreww/awesome-claude-code-config (258 stars, last pushed 5d ago), licensed MIT. It adds 48 tokens to every session and 457 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (reads agent configuration directories, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens