claude-agent-sdk-context-management
Use when managing agent context, memory, and conversation state in Claude AI agents using the Agent SDK.
What this skill does
# Claude Agent SDK - Context Management
Managing agent memory, context, and conversation state in the Claude Agent SDK.
## Setting Sources
### Project Memory
```typescript
import { Agent } from '@anthropic-ai/claude-agent-sdk';
// Load project-specific context from .claude/CLAUDE.md
const agent = new Agent({
settingSources: ['project'],
});
```
### User Memory
```typescript
// Load user preferences from ~/.claude/CLAUDE.md
const agent = new Agent({
settingSources: ['user'],
});
```
### Combined Sources
```typescript
// Load both user and project settings
const agent = new Agent({
settingSources: ['user', 'project'],
});
```
## CLAUDE.md Files
### Project Context (.claude/CLAUDE.md)
```markdown
# Project Context
This is a TypeScript web application using React and Next.js.
## Code Style
- Use functional components
- Prefer hooks over class components
- Use TypeScript strict mode
## Architecture
- API routes in /pages/api
- Components in /components
- Utilities in /lib
```
### User Preferences (~/.claude/CLAUDE.md)
```markdown
# User Preferences
## Communication Style
- Be concise
- Show code examples
- Explain reasoning
## Development Environment
- Primary editor: VS Code
- Node version: 20.x
- Package manager: pnpm
```
## System Prompts
### Direct System Prompt
```typescript
const agent = new Agent({
systemPrompt: `You are an expert TypeScript developer.
Follow these guidelines:
- Use strict type checking
- Prefer immutability
- Write comprehensive tests`,
});
```
### Dynamic System Prompt
```typescript
const projectType = detectProjectType();
const agent = new Agent({
systemPrompt: `You are a ${projectType} specialist.
Current project: ${process.cwd()}
Node version: ${process.version}`,
});
```
## Conversation State
### Single-Turn Conversations
```typescript
const agent = new Agent({
settingSources: ['project'],
});
const response = await agent.chat('What is this project about?');
console.log(response);
```
### Multi-Turn Conversations
```typescript
const agent = new Agent({
settingSources: ['project'],
});
// First turn
const response1 = await agent.chat('List all API endpoints');
// Second turn - agent remembers previous context
const response2 = await agent.chat('Add authentication to the login endpoint');
// Third turn
const response3 = await agent.chat('Write tests for the changes you just made');
```
### Conversation History
```typescript
import { query } from '@anthropic-ai/claude-agent-sdk';
const conversation = query({
prompt: 'Help me refactor this code',
options: {
settingSources: ['project'],
},
});
// Access conversation history
for await (const message of conversation) {
console.log('Role:', message.role);
console.log('Content:', message.content);
}
```
## Context Limits
### Managing Context Size
```typescript
const agent = new Agent({
model: 'claude-3-5-sonnet-20241022',
systemPrompt: 'You are a code reviewer',
// Agent automatically manages context window
});
// For very large files, chunk the content
const largeFile = await readFile('huge-file.ts');
const chunks = chunkContent(largeFile, 10000);
for (const chunk of chunks) {
await agent.chat(`Review this section:\n\n${chunk}`);
}
```
### Context Summarization
```typescript
// Agent can summarize previous context to fit window
const agent = new Agent({
settingSources: ['project'],
});
// Long conversation
await agent.chat('Explain the authentication system');
await agent.chat('How does session management work?');
await agent.chat('What about password hashing?');
// Agent maintains relevant context automatically
await agent.chat('Update the login endpoint to use bcrypt');
```
## Memory Persistence
### Storing Conversation State
```typescript
import { query } from '@anthropic-ai/claude-agent-sdk';
const conversationFile = './conversation-state.json';
// Load previous conversation
let messages = [];
if (existsSync(conversationFile)) {
messages = JSON.parse(readFileSync(conversationFile, 'utf8'));
}
const conversation = query({
prompt: 'Continue where we left off',
options: {
settingSources: ['project'],
// Pass previous messages if API supports it
},
});
// Save conversation state
const newMessages = [];
for await (const message of conversation) {
newMessages.push(message);
}
writeFileSync(
conversationFile,
JSON.stringify([...messages, ...newMessages], null, 2),
);
```
## Best Practices
### Separate Project and User Context
```typescript
// Good: Clear separation
const agent = new Agent({
settingSources: ['user', 'project'],
systemPrompt: `Additional task-specific context`,
});
// Avoid: Mixing contexts in system prompt
const agent = new Agent({
systemPrompt: `
User preference: Be concise
Project: TypeScript + React
Task: Review code
`, // Hard to maintain
});
```
### Keep CLAUDE.md Files Focused
```markdown
<!-- Good: Focused project context -->
# Project Context
## Technology Stack
- Next.js 14
- TypeScript 5
- Tailwind CSS
## Key Conventions
- Use server components by default
- Client components only when needed
- API routes follow REST conventions
```
```markdown
<!-- Avoid: Too much detail -->
# Project Context
## Technology Stack
- Next.js 14.2.3
- TypeScript 5.4.2
- Tailwind CSS 3.4.1
- ...50 more dependencies
## Every Single File
- src/app/page.tsx: Homepage
- src/app/about/page.tsx: About page
- ...200 more files
```
### Update Context as Project Evolves
```bash
# Update .claude/CLAUDE.md when architecture changes
echo "## New Features\n- Added GraphQL API\n- Migrated to PostgreSQL" >> .claude/CLAUDE.md
```
## Anti-Patterns
### Don't Duplicate Context
```typescript
// Bad: Duplicating project info in system prompt
const agent = new Agent({
settingSources: ['project'], // Already loads .claude/CLAUDE.md
systemPrompt: `This is a React app using TypeScript`, // Redundant
});
// Good: Let settingSources handle it
const agent = new Agent({
settingSources: ['project'],
systemPrompt: `Additional task-specific guidance`,
});
```
### Don't Hardcode Paths
```typescript
// Bad: Hardcoded paths
const agent = new Agent({
systemPrompt: `Project location: /Users/me/projects/myapp`,
});
// Good: Use relative or dynamic paths
const agent = new Agent({
systemPrompt: `Project root: ${process.cwd()}`,
});
```
### Don't Store Secrets in CLAUDE.md
```markdown
<!-- Bad: Secrets in context -->
# Project Context
Database: postgresql://user:password@localhost/db
API Key: sk-secret-key-here
```
```markdown
<!-- Good: Reference environment -->
# Project Context
Database: Configured via DATABASE_URL env var
API Key: Set OPENAI_API_KEY environment variable
```
## Advanced Patterns
### Context Injection
```typescript
const agent = new Agent({
settingSources: ['project'],
systemPrompt: `
Current branch: ${execSync('git branch --show-current').toString().trim()}
Uncommitted changes: ${execSync('git status --short').toString()}
`,
});
```
### Role-Based Context
```typescript
function createSpecializedAgent(role: 'reviewer' | 'implementer' | 'tester') {
const rolePrompts = {
reviewer: 'Focus on code quality and best practices',
implementer: 'Write production-ready code',
tester: 'Create comprehensive test coverage',
};
return new Agent({
settingSources: ['project'],
systemPrompt: rolePrompts[role],
});
}
const reviewer = createSpecializedAgent('reviewer');
const implementer = createSpecializedAgent('implementer');
```
## Related Skills
- **agent-creation**: Agent initialization and configuration
- **tool-integration**: Working with tools and MCP servers
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.