claude-blog-sources
Fetch Claude Blog and official Claude Code docs. Use when researching Claude Code capabilities, CLAUDE.md optimization, memory hierarchy, or @import patterns.
What this skill does
# Claude Blog Sources
## When to Use This Skill
| Use this skill when... | Use alternative when... |
|------------------------|-------------------------|
| Researching Claude Code features and best practices | You already know the answer from existing documentation |
| Need latest updates on CLAUDE.md, @imports, memory hierarchy | Implementing known patterns without research needed |
| Staying current with Claude Code improvements | Just need to read local project documentation |
| Cross-referencing blog insights with official docs | Need general programming help unrelated to Claude |
## Overview
The Anthropic Claude Blog (https://www.claude.com/blog/) publishes official guidance on Claude Code features, usage patterns, and best practices. This skill provides structured access to blog content for staying current with Claude capabilities.
## Primary Sources
### Official Documentation (preferred for technical details)
**Claude Code Docs**: https://code.claude.com/docs/en/
| Topic | URL | Description |
|-------|-----|-------------|
| Memory management | /docs/en/memory | CLAUDE.md, auto memory, @imports, rules hierarchy |
| Configuration | /docs/en/configuration | Settings, permissions, MCP servers |
| Hooks | /docs/en/hooks | Pre/post tool use hooks |
| Claude Code overview | /docs/en/overview | Getting started, features |
Use official docs as the authoritative reference. Blog posts supplement with patterns and examples.
### Blog
**Main Blog**: https://www.claude.com/blog/
Note: May redirect to https://website.claude.com/blog - follow redirects automatically.
## Key Articles for Claude Code
### Essential Reading
| Article | URL | Topic |
|---------|-----|-------|
| Using CLAUDE.md Files | /blog/using-claude-md-files | CLAUDE.md structure and best practices |
| How Anthropic Teams Use Claude Code | /blog/how-anthropic-teams-use-claude-code | Internal usage patterns and workflows |
| Claude Code on the Web | /blog/claude-code-on-the-web | Web-based features and capabilities |
### Article Relevance Categories
**High Relevance** (always check):
- Articles mentioning "CLAUDE.md", "Claude Code", "Skills", "Agents"
- Articles about coding workflows, development practices
- Product announcements for Claude Code features
**Medium Relevance** (check if applicable):
- Articles about prompt engineering, context management
- Enterprise AI deployment patterns
- Integration guides (Slack, GitHub, etc.)
## Research Workflow
### When User Asks About Claude Code Features
1. **Check Recent Articles First**
```
WebSearch: site:claude.com/blog {feature_name} OR "Claude Code"
```
2. **Fetch Relevant Articles**
```
WebFetch: https://www.claude.com/blog/{article-slug}
Prompt: Extract practical guidance, examples, and best practices for {topic}
```
3. **Cross-Reference with Documentation**
- Official docs: https://docs.claude.com/en/docs/claude-code/
- Compare blog insights with documentation
### Monthly Article Review Process
For staying current with Claude improvements:
1. **Fetch Blog Index**
```
WebFetch: https://www.claude.com/blog/
Prompt: List all articles from the past month with titles, dates, and relevance to Claude Code
```
2. **Triage by Relevance**
- High: Directly mentions Claude Code, CLAUDE.md, Skills, or Agents
- Medium: General AI coding patterns, prompt engineering
- Low: Unrelated topics (enterprise, safety research, etc.)
3. **Extract Key Insights**
For high-relevance articles, extract:
- New features or capabilities
- Updated best practices
- Example patterns and workflows
- Configuration recommendations
4. **Update Local Knowledge**
- Consider updating relevant Skills with new patterns
- Update CLAUDE.md files with new best practices
- Create new Skills for newly documented features
## CLAUDE.md Best Practices (from Blog + Official Docs)
Based on official documentation and blog posts:
### Structure Guidelines
- **Keep concise**: Treat as documentation both humans and Claude need to understand quickly
- **Strategic placement**: Root for team-wide, parent dirs for monorepos, home folder for universal
- **Use `@import`**: Reference existing docs with `@path/to/file.md` instead of duplicating content
- **Use `CLAUDE.local.md`**: Personal preferences go here (auto-gitignored), not in shared CLAUDE.md
- **Use `.claude/rules/`**: Path-specific rules with `paths` frontmatter for conditional loading
### Memory Hierarchy
| Layer | Purpose | Managed by |
|-------|---------|------------|
| CLAUDE.md | Team instructions (checked into git) | Developers |
| CLAUDE.local.md | Personal preferences (gitignored) | Individual |
| .claude/rules/ | Path-specific and domain rules | Developers |
| ~/.claude/rules/ | User-level rules (all projects) | Individual |
| Auto memory | Claude's own learnings | Claude (automatic) |
### Essential Sections (team-shared)
1. **Project Overview**: Brief summary, key technologies, architectural patterns
2. **Directory Map**: Visual hierarchy showing key directories
3. **Standards & Conventions**: Type hints, code style, naming conventions
4. **Common Commands**: Frequently-used commands with descriptions
5. **Workflows**: Standard approaches for different task types
6. **Tool Integration**: MCP servers, custom tools with usage examples
### What Auto Memory Handles (omit from CLAUDE.md)
- Current focus and work-in-progress context
- Key file relationships and navigation patterns
- Debugging insights and workarounds
- Personal preferences and habits
### What to Avoid
- Sensitive information (API keys, credentials, connection strings)
- Excessive length (keep concise from context engineering perspective)
- Theoretical content not matching actual development reality
- Content that duplicates auto memory concerns
### Evolution Strategy
- Start simple, expand deliberately
- Add sections based on real friction points
- Maintain as living document that evolves with codebase
- Use `@import` to keep CLAUDE.md lean as the project grows
## Delegation Pattern
When research requires deep investigation:
```markdown
Use research-documentation agent for:
- Comprehensive blog article analysis
- Cross-referencing multiple sources
- Building knowledge summaries
Example delegation prompt:
"Research the Claude blog for articles about {topic} from the past 3 months.
Extract practical patterns and update recommendations. Focus on:
- New features or capabilities
- Changed best practices
- Concrete examples we can apply"
```
## Recent Articles Checklist
*Last reviewed: February 2026. Update this list monthly when reviewing new articles.*
Official documentation worth checking (authoritative reference):
- [ ] /docs/en/memory - Memory management, CLAUDE.md, @imports, auto memory, rules hierarchy
- [ ] /docs/en/configuration - Settings, permissions, MCP servers
- [ ] /docs/en/hooks - Hook system for tool use events
Articles worth checking (sorted by relevance to Claude Code):
- [ ] /blog/using-claude-md-files - CLAUDE.md best practices
- [ ] /blog/how-anthropic-teams-use-claude-code - Internal usage patterns
- [ ] /blog/improving-frontend-design-through-skills - Skills feature
- [ ] /blog/claude-code-on-the-web - Web-based features
## Integration with Other Skills
This skill complements:
- **project-discovery**: Use blog patterns for new codebase orientation
- **blueprint-development**: Apply latest CLAUDE.md best practices to PRDs
- **multi-agent-workflows**: Incorporate blog-recommended delegation patterns
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.