/readme-updater
Keep README files current with project changes. Use when project structure changes, features added, or setup instructions modified. Suggests README updates based on code changes. Triggers on significant project changes, new features, dependency changes.
$ npx -y skills add alirezarezvani/claude-code-tresor --skill readme-updater --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/readme-updater
Context preview
The summary Claude sees to decide when to auto-load this skill.
Keep README files current with project changes. Use when project structure changes, features added, or setup instructions modified. Suggests README updates based on code changes. Triggers on significant project changes, new features, dependency changes.
SKILL.md
readme-updater.SKILL.mdname: readme-updater
description: Keep README files current with project changes. Use when project structure changes, features added, or setup instructions modified. Suggests README updates based on code changes. Triggers on significant project changes, new features, dependency changes.
allowed-tools: Read, Write, Edit, Grep
README Updater Skill
Keep your README current with project changes.
When I Activate
- ✅ New features added
- ✅ Project structure changes
- ✅ Dependencies added/removed
- ✅ Setup instructions change
- ✅ User mentions README or documentation
- ✅ Configuration files modified
What I Update
README Sections
**Installation:**
- New dependencies
- Setup steps
- Prerequisites
- Environment variables
**Features:**
- New capabilities
- Functionality changes
- Feature deprecation
**Usage:**
- API changes
- New examples
- Updated screenshots
**Configuration:**
- New options
- Environment variables
- Config file changes
Examples
New Feature Addition
# You add authentication:
git diff
# + auth.service.ts
# + login.component.tsx
# + JWT middleware
# I suggest README update:
## Features
- ✨ User authentication with JWT # NEW
- 🔐 Role-based access control # NEW
- User management
- Dashboard
New Dependency
# You add: npm install stripe
# I suggest:
## Installation
```bash
npm install
npm install stripe # Added for payment processing
Environment Variables
STRIPE_SECRET_KEY=your_stripe_key # Required for payments
### Setup Instructions
```bash
# You modify docker-compose.yml
# I update README:
## Development Setup
```bash
# 1. Clone repository
git clone [url]
# 2. Install dependencies
npm install
# 3. Start services (UPDATED)
docker-compose up -d # Now includes Redis cache
# 4. Run migrations
npm run migrate
## Detection Logic
### Change Analysis
I detect these changes automatically:
- **package.json** → Update dependencies section
- **New routes** → Update API documentation
- **.env.example** → Update environment variables
- **docker-compose.yml** → Update setup instructions
- **New features** → Update features list
### Section Mapping
```yaml
Code Change → README Section:
- New API endpoint → Usage / API Reference
- New dependency → Installation
- New env var → Configuration
- New feature → Features list
- Architecture change → Architecture section
Intelligent Updates
Keep Structure
I maintain your README structure:
- Preserve emoji style
- Keep formatting consistent
- Maintain tone and voice
- Respect existing organization
Add Missing Sections
# Suggested additions:
## Prerequisites
- Node.js 18+
- Docker (for development)
- PostgreSQL 14+
## Environment Variables
```bash
DATABASE_URL=postgresql://localhost/mydb
API_KEY=your_api_key
Testing
npm test
### Update Examples
```markdown
# Before:
```javascript
const result = api.getUsers();
After (API changed):
const result = await api.getUsers({ page: 1, limit: 10 });
## Version Compatibility
I track version-specific documentation:
```markdown
## Requirements
- Node.js 18+ (updated from 16+)
- TypeScript 5.0+ (new requirement)
- React 18+ (unchanged)
Changelog Integration
I can sync with CHANGELOG.md:
## Recent Changes
See [CHANGELOG.md](CHANGELOG.md) for detailed version history.
### Latest (v2.1.0)
- ✨ Added user authentication
- 🔧 Fixed memory leak in data processing
- 📝 Updated API documentation
Screenshot Management
# I suggest when UI changes:
## Screenshots

*Updated: 2025-10-24 - New authentication panel*

*New feature - user profile management*
Relationship with @docs-writer
**Me (Skill):** Keep README current with code changes **@docs-writer (Sub-Agent):** Comprehensive documentation strategy
Workflow
1. I detect changes 2. I suggest README updates 3. For full docs → Invoke **@docs-writer** sub-agent 4. Sub-agent creates complete documentation
Sandboxing Compatibility
**Works without sandboxing:** ✅ Yes **Works with sandboxing:** ✅ Yes
- **Filesystem**: Writes to README.md
- **Network**: None required
- **Configuration**: None required
Best Practices
1. **Keep it current** - Update README with every feature 2. **Be specific** - Include version numbers, prerequisites 3. **Add examples** - Show actual usage, not just API 4. **Include troubleshooting** - Common issues and solutions 5. **Badge status** - Keep build/coverage badges current
README Templates
Basic Structure
# Project Name
Brief description
## Features
- Feature 1
- Feature 2
## Installation
```bash
npm install
Usage
// Example
Configuration
Environment variables needed
Contributing
How to contribute
License
MIT
### Comprehensive Structure
```markdown
# Project Name
> Tagline
[Badges]
## Table of Contents
- Features
- Installation
- Usage
- API Reference
- Configuration
- Development
- Testing
- Deployment
- Contributing
- License
[Sections with detailed content]
Integration
With /docs-gen Command
/docs-gen --format markdown
# Generates:
# 1. README.md (via me)
# 2. Full documentation site (via @docs-writer)
# 3. API reference (via api-documenter)
With CI/CD
# .github/workflows/docs.yml
- name: Update README
run: |
# Skill suggests updates based on changes
# Review and commitCustomization
Add company-specific README standards:
cp -r ~/.claude/skills/documentation/readme-updater \
~/.claude/skills/documentation/company-readme-updater
# Edit to add:
# - Company README template
# - Required sections
# - Badge standardsRelated Tools
- **api-documenter skill**: API documentation
- **@docs-writer sub-agent**: Comprehensive docs
- **git-commit-helper s
Read more
name: readme-updater description: Keep README files current with project changes. Use when project structure changes, features added, or setup instructions modified. Suggests README updates based on code changes. Triggers on significant project changes, new features, dependency changes. allowed-tools: Read, Write, Edit, Grep
README Updater Skill
Keep your README current with project changes.
When I Activate
- ✅ New features added
- ✅ Project structure changes
- ✅ Dependencies added/removed
- ✅ Setup instructions change
- ✅ User mentions README or documentation
- ✅ Configuration files modified
What I Update
README Sections
**Installation:**
- New dependencies
- Setup steps
- Prerequisites
- Environment variables
**Features:**
- New capabilities
- Functionality changes
- Feature deprecation
**Usage:**
- API changes
- New examples
- Updated screenshots
**Configuration:**
- New options
- Environment variables
- Config file changes
Examples
New Feature Addition
# You add authentication: git diff # + auth.service.ts # + login.component.tsx # + JWT middleware # I suggest README update: ## Features - ✨ User authentication with JWT # NEW - 🔐 Role-based access control # NEW - User management - Dashboard
New Dependency
# You add: npm install stripe # I suggest: ## Installation ```bash npm install npm install stripe # Added for payment processing
Environment Variables
STRIPE_SECRET_KEY=your_stripe_key # Required for payments
### Setup Instructions ```bash # You modify docker-compose.yml # I update README: ## Development Setup ```bash # 1. Clone repository git clone [url] # 2. Install dependencies npm install # 3. Start services (UPDATED) docker-compose up -d # Now includes Redis cache # 4. Run migrations npm run migrate
## Detection Logic ### Change Analysis I detect these changes automatically: - **package.json** → Update dependencies section - **New routes** → Update API documentation - **.env.example** → Update environment variables - **docker-compose.yml** → Update setup instructions - **New features** → Update features list ### Section Mapping ```yaml Code Change → README Section: - New API endpoint → Usage / API Reference - New dependency → Installation - New env var → Configuration - New feature → Features list - Architecture change → Architecture section
Intelligent Updates
Keep Structure
I maintain your README structure:
- Preserve emoji style
- Keep formatting consistent
- Maintain tone and voice
- Respect existing organization
Add Missing Sections
# Suggested additions: ## Prerequisites - Node.js 18+ - Docker (for development) - PostgreSQL 14+ ## Environment Variables ```bash DATABASE_URL=postgresql://localhost/mydb API_KEY=your_api_key
Testing
npm test
### Update Examples ```markdown # Before: ```javascript const result = api.getUsers();
After (API changed):
const result = await api.getUsers({ page: 1, limit: 10 });## Version Compatibility I track version-specific documentation: ```markdown ## Requirements - Node.js 18+ (updated from 16+) - TypeScript 5.0+ (new requirement) - React 18+ (unchanged)
Changelog Integration
I can sync with CHANGELOG.md:
## Recent Changes See [CHANGELOG.md](CHANGELOG.md) for detailed version history. ### Latest (v2.1.0) - ✨ Added user authentication - 🔧 Fixed memory leak in data processing - 📝 Updated API documentation
Screenshot Management
# I suggest when UI changes: ## Screenshots  *Updated: 2025-10-24 - New authentication panel*  *New feature - user profile management*
Relationship with @docs-writer
**Me (Skill):** Keep README current with code changes **@docs-writer (Sub-Agent):** Comprehensive documentation strategy
Workflow
1. I detect changes 2. I suggest README updates 3. For full docs → Invoke **@docs-writer** sub-agent 4. Sub-agent creates complete documentation
Sandboxing Compatibility
**Works without sandboxing:** ✅ Yes **Works with sandboxing:** ✅ Yes
- **Filesystem**: Writes to README.md
- **Network**: None required
- **Configuration**: None required
Best Practices
1. **Keep it current** - Update README with every feature 2. **Be specific** - Include version numbers, prerequisites 3. **Add examples** - Show actual usage, not just API 4. **Include troubleshooting** - Common issues and solutions 5. **Badge status** - Keep build/coverage badges current
README Templates
Basic Structure
# Project Name Brief description ## Features - Feature 1 - Feature 2 ## Installation ```bash npm install
Usage
// Example
Configuration
Environment variables needed
Contributing
How to contribute
License
MIT
### Comprehensive Structure ```markdown # Project Name > Tagline [Badges] ## Table of Contents - Features - Installation - Usage - API Reference - Configuration - Development - Testing - Deployment - Contributing - License [Sections with detailed content]
Integration
With /docs-gen Command
/docs-gen --format markdown # Generates: # 1. README.md (via me) # 2. Full documentation site (via @docs-writer) # 3. API reference (via api-documenter)
With CI/CD
# .github/workflows/docs.yml
- name: Update README
run: |
# Skill suggests updates based on changes
# Review and commitCustomization
Add company-specific README standards:
cp -r ~/.claude/skills/documentation/readme-updater \
~/.claude/skills/documentation/company-readme-updater
# Edit to add:
# - Company README template
# - Required sections
# - Badge standardsRelated Tools
- **api-documenter skill**: API documentation
- **@docs-writer sub-agent**: Comprehensive docs
- **git-commit-helper s
A world-class collection of Claude Code utilities: autonomous skills, expert agents, slash commands, and prompts that supercharge your development workflow.
Repo: alirezarezvani/claude-code-tresor
Other skills on claude-code-tresor.
- /code-reviewer
Automatic code quality and best practices analysis. Use proactively when files are modified, saved, or committed. Analyzes code style, patterns, potential bugs, and security basics. Triggers on file changes, git diff, code edits, quality mentions.
Open skill - /git-commit-helper
Generate conventional commit messages automatically. Use when user runs git commit, stages changes, or asks for commit message help. Analyzes git diff to create clear, descriptive conventional commit messages. Triggers on git commit, staged changes, commit message requests.
Open skill - /test-generator
Automatically suggest tests for new functions and components. Use when new code is written, functions added, or user mentions testing. Creates test scaffolding with Jest, Vitest, Pytest patterns. Triggers on new functions, components, test requests, testing mentions.
Open skill - /api-documenter
Auto-generate API documentation from code and comments. Use when API endpoints change, or user mentions API docs. Creates OpenAPI/Swagger specs from code. Triggers on API file changes, documentation requests, endpoint additions.
Open skill - /dependency-auditor
Check dependencies for known vulnerabilities using npm audit, pip-audit, etc. Use when package.json or requirements.txt changes, or before deployments. Alerts on vulnerable dependencies. Triggers on dependency file changes, deployment prep, security mentions.
Open skill - /secret-scanner
Detect exposed secrets, API keys, credentials, and tokens in code. Use before commits, on file saves, or when security is mentioned. Prevents accidental secret exposure. Triggers on file changes, git commits, security checks, .env file modifications.
Open skill

