refresh-claude — community refresh-claude, claude-code-starter, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Code Analysis Agents needing to maintain up-to-date project context with Claude Code configurations. Production-ready Claude Code configuration template with stack presets, security hooks, and automation tools

zbruhnke zbruhnke
[0]
[0]
Updated: 3/5/2026

Agent Capability Analysis

The refresh-claude skill by zbruhnke is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Code Analysis Agents needing to maintain up-to-date project context with Claude Code configurations.

Core Value

Empowers agents to keep CLAUDE.md files synchronized with the latest codebase changes, ensuring accurate context for future sessions through automated reviews and updates of stack presets, security hooks, and automation tools.

Capabilities Granted for refresh-claude

Updating CLAUDE.md files after significant codebase updates
Automating context synchronization for collaborative projects
Reviewing recent changes to identify new patterns and conventions

! Prerequisites & Limits

  • Requires access to the project's codebase and CLAUDE.md file
  • Specifically designed for Claude Code configurations
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

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

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

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 Code configurations. Production-ready Claude Code configuration template with stack presets, security hooks, and automation tools

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 codebase updates, Automating context synchronization for collaborative projects, Reviewing recent changes to identify new patterns and conventions.

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 Claude Code configurations.

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.

Related Skills

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

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI