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
Check Recent Articles First
WebSearch: site:claude.com/blog {feature_name} OR "Claude Code"
Fetch Relevant Articles
WebFetch: https://www.claude.com/blog/{article-slug}
Prompt: Extract practical guidance, examples, and best practices for {topic}
Cross-Reference with Documentation
Monthly Article Review Process
For staying current with Claude improvements:
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
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.)
Extract Key Insights
For high-relevance articles, extract:
- New features or capabilities
- Updated best practices
- Example patterns and workflows
- Configuration recommendations
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)
- Project Overview: Brief summary, key technologies, architectural patterns
- Directory Map: Visual hierarchy showing key directories
- Standards & Conventions: Type hints, code style, naming conventions
- Common Commands: Frequently-used commands with descriptions
- Workflows: Standard approaches for different task types
- 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:
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):
Articles worth checking (sorted by relevance to Claude Code):
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
1---2name: claude-blog-sources3description: Fetch Claude Blog and official Claude Code docs. Use when researching Claude Code capabilities, CLAUDE.md optimization, memory hierarchy, or @import patterns.4---5
6# Claude Blog Sources
7
8## When to Use This Skill
9
10| Use this skill when... | Use alternative when... |
11|------------------------|-------------------------|
12| Researching Claude Code features and best practices | You already know the answer from existing documentation |
13| Need latest updates on CLAUDE.md, @imports, memory hierarchy | Implementing known patterns without research needed |
14| Staying current with Claude Code improvements | Just need to read local project documentation |
15| Cross-referencing blog insights with official docs | Need general programming help unrelated to Claude |
16
17## Overview
18
19The 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.
20
21## Primary Sources
22
23### Official Documentation (preferred for technical details)
24
25**Claude Code Docs**: https://code.claude.com/docs/en/
26
27| Topic | URL | Description |
28|-------|-----|-------------|
29| Memory management | /docs/en/memory | CLAUDE.md, auto memory, @imports, rules hierarchy |
30| Configuration | /docs/en/configuration | Settings, permissions, MCP servers |
31| Hooks | /docs/en/hooks | Pre/post tool use hooks |
32| Claude Code overview | /docs/en/overview | Getting started, features |
33
34Use official docs as the authoritative reference. Blog posts supplement with patterns and examples.
35
36### Blog
37
38**Main Blog**: https://www.claude.com/blog/
39
40Note: May redirect to https://website.claude.com/blog - follow redirects automatically.
41
42## Key Articles for Claude Code
43
44### Essential Reading
45
46| Article | URL | Topic |
47|---------|-----|-------|
48| Using CLAUDE.md Files | /blog/using-claude-md-files | CLAUDE.md structure and best practices |
49| How Anthropic Teams Use Claude Code | /blog/how-anthropic-teams-use-claude-code | Internal usage patterns and workflows |
50| Claude Code on the Web | /blog/claude-code-on-the-web | Web-based features and capabilities |
51
52### Article Relevance Categories
53
54**High Relevance** (always check):
55- Articles mentioning "CLAUDE.md", "Claude Code", "Skills", "Agents"
56- Articles about coding workflows, development practices
57- Product announcements for Claude Code features
58
59**Medium Relevance** (check if applicable):
60- Articles about prompt engineering, context management
61- Enterprise AI deployment patterns
62- Integration guides (Slack, GitHub, etc.)
63
64## Research Workflow
65
66### When User Asks About Claude Code Features
67
681. **Check Recent Articles First**
69 ```
70 WebSearch: site:claude.com/blog {feature_name} OR "Claude Code"
71 ```
72
732. **Fetch Relevant Articles**
74 ```
75 WebFetch: https://www.claude.com/blog/{article-slug}
76 Prompt: Extract practical guidance, examples, and best practices for {topic}
77 ```
78
793. **Cross-Reference with Documentation**
80 - Official docs: https://docs.claude.com/en/docs/claude-code/
81 - Compare blog insights with documentation
82
83### Monthly Article Review Process
84
85For staying current with Claude improvements:
86
871. **Fetch Blog Index**
88 ```
89 WebFetch: https://www.claude.com/blog/
90 Prompt: List all articles from the past month with titles, dates, and relevance to Claude Code
91 ```
92
932. **Triage by Relevance**
94 - High: Directly mentions Claude Code, CLAUDE.md, Skills, or Agents
95 - Medium: General AI coding patterns, prompt engineering
96 - Low: Unrelated topics (enterprise, safety research, etc.)
97
983. **Extract Key Insights**
99 For high-relevance articles, extract:
100 - New features or capabilities
101 - Updated best practices
102 - Example patterns and workflows
103 - Configuration recommendations
104
1054. **Update Local Knowledge**
106 - Consider updating relevant Skills with new patterns
107 - Update CLAUDE.md files with new best practices
108 - Create new Skills for newly documented features
109
110## CLAUDE.md Best Practices (from Blog + Official Docs)
111
112Based on official documentation and blog posts:
113
114### Structure Guidelines
115
116- **Keep concise**: Treat as documentation both humans and Claude need to understand quickly
117- **Strategic placement**: Root for team-wide, parent dirs for monorepos, home folder for universal
118- **Use `@import`**: Reference existing docs with `@path/to/file.md` instead of duplicating content
119- **Use `CLAUDE.local.md`**: Personal preferences go here (auto-gitignored), not in shared CLAUDE.md
120- **Use `.claude/rules/`**: Path-specific rules with `paths` frontmatter for conditional loading
121
122### Memory Hierarchy
123
124| Layer | Purpose | Managed by |
125|-------|---------|------------|
126| CLAUDE.md | Team instructions (checked into git) | Developers |
127| CLAUDE.local.md | Personal preferences (gitignored) | Individual |
128| .claude/rules/ | Path-specific and domain rules | Developers |
129| ~/.claude/rules/ | User-level rules (all projects) | Individual |
130| Auto memory | Claude's own learnings | Claude (automatic) |
131
132### Essential Sections (team-shared)
133
1341. **Project Overview**: Brief summary, key technologies, architectural patterns
1352. **Directory Map**: Visual hierarchy showing key directories
1363. **Standards & Conventions**: Type hints, code style, naming conventions
1374. **Common Commands**: Frequently-used commands with descriptions
1385. **Workflows**: Standard approaches for different task types
1396. **Tool Integration**: MCP servers, custom tools with usage examples
140
141### What Auto Memory Handles (omit from CLAUDE.md)
142
143- Current focus and work-in-progress context
144- Key file relationships and navigation patterns
145- Debugging insights and workarounds
146- Personal preferences and habits
147
148### What to Avoid
149
150- Sensitive information (API keys, credentials, connection strings)
151- Excessive length (keep concise from context engineering perspective)
152- Theoretical content not matching actual development reality
153- Content that duplicates auto memory concerns
154
155### Evolution Strategy
156
157- Start simple, expand deliberately
158- Add sections based on real friction points
159- Maintain as living document that evolves with codebase
160- Use `@import` to keep CLAUDE.md lean as the project grows
161
162## Delegation Pattern
163
164When research requires deep investigation:
165
166```markdown
167Use research-documentation agent for:
168- Comprehensive blog article analysis
169- Cross-referencing multiple sources
170- Building knowledge summaries
171
172Example delegation prompt:
173"Research the Claude blog for articles about {topic} from the past 3 months.
174Extract practical patterns and update recommendations. Focus on:
175- New features or capabilities
176- Changed best practices
177- Concrete examples we can apply"
178```
179
180## Recent Articles Checklist
181
182*Last reviewed: February 2026. Update this list monthly when reviewing new articles.*
183
184Official documentation worth checking (authoritative reference):
185
186- [ ] /docs/en/memory - Memory management, CLAUDE.md, @imports, auto memory, rules hierarchy
187- [ ] /docs/en/configuration - Settings, permissions, MCP servers
188- [ ] /docs/en/hooks - Hook system for tool use events
189
190Articles worth checking (sorted by relevance to Claude Code):
191
192- [ ] /blog/using-claude-md-files - CLAUDE.md best practices
193- [ ] /blog/how-anthropic-teams-use-claude-code - Internal usage patterns
194- [ ] /blog/improving-frontend-design-through-skills - Skills feature
195- [ ] /blog/claude-code-on-the-web - Web-based features
196
197## Integration with Other Skills
198
199This skill complements:
200- **project-discovery**: Use blog patterns for new codebase orientation
201- **blueprint-development**: Apply latest CLAUDE.md best practices to PRDs
202- **multi-agent-workflows**: Incorporate blog-recommended delegation patterns