refresh-claude — CLAUDE.md automation refresh-claude, claude-code-starter, community, CLAUDE.md automation, ide skills, codebase analysis, context updates, Claude Code configuration, code review, install refresh-claude, Claude Code

v1.0.0

About this Skill

Perfect for Code Analysis Agents needing to maintain up-to-date project context with CLAUDE.md files. refresh-claude is a production-ready Claude Code configuration template with stack presets, security hooks, and automation tools for maintaining accurate CLAUDE.md files.

Features

Reviews recent changes to the codebase
Identifies new patterns, conventions, or important context
Updates CLAUDE.md to reflect current state
Removes outdated information
Utilizes automation tools for efficient context updates

# Core Topics

zbruhnke zbruhnke
[12]
[1]
Updated: 1/27/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 10/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
10/11
Quality Score
60
Canonical Locale
en
Detected Body Locale
en

Perfect for Code Analysis Agents needing to maintain up-to-date project context with CLAUDE.md files. refresh-claude is a production-ready Claude Code configuration template with stack presets, security hooks, and automation tools for maintaining accurate CLAUDE.md files.

Core Value

Empowers agents to keep project knowledge current by reviewing recent codebase changes, identifying new patterns, and updating CLAUDE.md files to reflect the current project state, ensuring seamless context persistence between sessions using CLAUDE Code.

Ideal Agent Persona

Perfect for Code Analysis Agents needing to maintain up-to-date project context with CLAUDE.md files.

Capabilities Granted for refresh-claude

Updating CLAUDE.md files after significant code refactoring
Maintaining project context consistency across multiple development sessions
Automating the removal of outdated information from CLAUDE.md files

! Prerequisites & Limits

  • Requires access to the project's codebase and CLAUDE.md file
  • Specifically designed for use with CLAUDE Code and CLAUDE.md files

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is refresh-claude?

Perfect for Code Analysis Agents needing to maintain up-to-date project context with CLAUDE.md files. refresh-claude is a production-ready Claude Code configuration template with stack presets, security hooks, and automation tools for maintaining accurate CLAUDE.md files.

How do I install refresh-claude?

Run the command: npx killer-skills add zbruhnke/claude-code-starter/refresh-claude. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for refresh-claude?

Key use cases include: Updating CLAUDE.md files after significant code refactoring, Maintaining project context consistency across multiple development sessions, Automating the removal of outdated information from CLAUDE.md files.

Which IDEs are compatible with refresh-claude?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for refresh-claude?

Requires access to the project's codebase and CLAUDE.md file. Specifically designed for use with CLAUDE Code and CLAUDE.md files.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add zbruhnke/claude-code-starter/refresh-claude. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use refresh-claude immediately in the current project.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

refresh-claude

Install refresh-claude, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Refresh CLAUDE.md

You are refreshing the project's CLAUDE.md file to ensure it stays relevant and useful for future Claude Code sessions.

Purpose

CLAUDE.md serves as persistent context between sessions. When a project evolves, CLAUDE.md should evolve too. This skill:

  1. Reviews recent changes to the codebase
  2. Identifies new patterns, conventions, or important context
  3. Updates CLAUDE.md to reflect current state
  4. Removes outdated information

Process

Step 1: Analyze Recent Changes

bash
1# Recent commits 2git log --oneline -20 3 4# Changed files 5git diff --stat HEAD~10..HEAD 6 7# New files 8git diff --name-status HEAD~10..HEAD | grep "^A"

Look for:

  • New features or modules
  • New dependencies or tools
  • Changed conventions or patterns
  • New commands or scripts
  • Architecture changes

Step 2: Review Current CLAUDE.md

Read the existing CLAUDE.md and identify:

  • Outdated information
  • Missing new features/tools
  • Incorrect commands or paths
  • Stale conventions

Step 3: Scan the Codebase

Check for patterns not reflected in CLAUDE.md:

bash
1# Check for new test patterns 2ls -la **/test* **/*test* **/*spec* 2>/dev/null | head -20 3 4# Check for new config files 5ls -la *.config.* .* 2>/dev/null | head -20 6 7# Check package.json/pyproject.toml/etc for new scripts 8cat package.json 2>/dev/null | jq '.scripts' || true

Step 4: Update CLAUDE.md

Make targeted updates:

DO update:

  • New commands (dev, test, build, lint)
  • New project structure (directories, key files)
  • New conventions discovered in code
  • Important architectural decisions
  • New dependencies that affect how to work with the code

DON'T add:

  • Implementation details that change frequently
  • Obvious things (e.g., "this is a JavaScript project" for a .js repo)
  • Temporary workarounds
  • Personal preferences not enforced by tooling

Step 5: Verify Changes

After updating, verify:

  • Commands still work
  • Paths are correct
  • No duplicate sections
  • Concise and scannable

Output Format

markdown
1## CLAUDE.md Refresh Summary 2 3### Changes Made 4- Added: [what was added] 5- Updated: [what was updated] 6- Removed: [what was removed] 7 8### Context Discovered 9- [New pattern or convention found] 10- [New tool or command found] 11 12### Recommendations 13- [Suggestions for project improvements]

Guidelines

Keep It Concise

CLAUDE.md should be scannable. Every line should earn its place.

❌ "This project uses React, which is a JavaScript library for building user interfaces..."
✓ "React 18 with TypeScript. See src/components/ for patterns."

Focus on What's Actionable

Include information Claude needs to work effectively:

✓ Commands to run
✓ Key file locations
✓ Conventions to follow
✓ Things to avoid

Avoid Duplication

Don't repeat what's in:

  • README.md (user-facing docs)
  • Code comments (implementation details)
  • Config files (tooling handles it)

Keep It Fresh

Remove information that's:

  • No longer accurate
  • Covered by tooling (linters, formatters)
  • Too detailed for context

Example Updates

Adding a New Command

markdown
1## Commands 2+ npm run e2e # Run end-to-end tests

Adding a Convention

markdown
1## Conventions 2+ API routes follow REST conventions in `src/api/` 3+ Use `zod` for runtime validation at API boundaries

Removing Outdated Info

markdown
1- ## Legacy 2- The old auth system in `src/auth-old/` is deprecated.

When to Run

  • After adding major features
  • After significant refactoring
  • After adding new tools or dependencies
  • Periodically (weekly/monthly) on active projects
  • Before onboarding new team members

Related Skills

Looking for an alternative to refresh-claude or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer