update-config

update-config is a skill for Claude Code, Codex from Bilal140202/the-lord-of-the-skills. It costs 48 tokens per session (457 once invoked), scanned B, a copy of update-config, MIT.

An update workflow for awesome-claude-code-config, a configuration package for Claude Code.

In plain words
What is it for?
Use it when you run /update-config or need to check for and install a newer configuration release.
Why use it?
It checks the installed and remote versions first, then updates the configuration while preserving user settings through the package's installer.

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 configuration release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-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 Bilal140202/the-lord-of-the-skills --skill mizoreww__awesome-claude-code-config
Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skills

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/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-config/github.svg)](https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-config)
Your own site
<a href="https://agentmods.dev/skills/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-config"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-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/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-config"><img src="https://agentmods.dev/badge/skills/bilal140202/the-lord-of-the-skills/mizoreww__awesome-claude-code-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.
Origin 100% copy Near-identical to another mod 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 8d ago against content hash 73a0aef5d8d1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 8d 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

This is a copy

100% identical to update-config — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/gondor/claude-code/Mizoreww__awesome-claude-code-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
Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 8d 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 Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d 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). It is 100% identical to update-config, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

serpsmith

Publish SEO articles reliably across AI-agent runtimes.

emiliojohann/SERPsmith · 14 tokens

tool-calling-tutor

Use when a tool-calling agent does not call a tool, sends wrong arguments, loops without stopping, or needs a function schema. Guides a four-branch diagnosis and five-step schema repair. Do not use for framework-specific, MCP-server, or production-observability questions.

WenyuChiou/awesome-agentic-ai-zh · 62 tokens

performing-threat-hunting-with-yara-rules

Use YARA pattern-matching rules to hunt for malware, suspicious files, and indicators of compromise across filesystems and memory dumps. Covers rule authoring, yara-python scanning, and integration with threat intel feeds.

adriannoes/awesome-agentic-ai · 53 tokens

hunt-idor

Hunting skill for idor vulnerabilities. Built from 26 public bug bounty reports. Use when hunting idor on any target.

adriannoes/awesome-agentic-ai · 30 tokens

performing-soc2-type2-audit-preparation

Automates SOC 2 Type II audit preparation including gap assessment against AICPA Trust Services Criteria (CC1-CC9), evidence collection from cloud providers and identity systems, control testing validation, remediation tracking, and continuous compliance monitoring. Covers all five TSC categories (Security…

adriannoes/awesome-agentic-ai · 112 tokens

init

Set up Playwright in a project. Use when user says "set up playwright", "add e2e tests", "configure playwright", "testing setup", "init playwright", or "add test infrastructure".

adriannoes/awesome-agentic-ai · 44 tokens