Help us improve
Share bugs, ideas, or general feedback.
From claude-agent-sdk
Manages context, memory, and conversation state in Claude AI agents using Anthropic Agent SDK. Covers CLAUDE.md files, system prompts, and multi-turn chats.
npx claudepluginhub thebushidocollective/han --plugin claude-agent-sdkHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-agent-sdk:context-managementThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Managing agent memory, context, and conversation state in the Claude Agent SDK.
Creates and configures Claude AI agents using the Agent SDK in TypeScript. Covers initialization, system prompts, tool permissions, directory structure, and multi-provider authentication.
Guides programmatic control of Claude Code sessions via Claude Agent SDK in TypeScript/JavaScript or Python. Supports custom agents, tools, streaming, and event handling for building AI agents.
Guides creation of custom agents for Claude Code, including file structure, behaviors, tool permissions, workflows, and YAML configuration for specialized tasks.
Share bugs, ideas, or general feedback.
Managing agent memory, context, and conversation state in the Claude Agent SDK.
import { Agent } from '@anthropic-ai/claude-agent-sdk';
// Load project-specific context from .claude/CLAUDE.md
const agent = new Agent({
settingSources: ['project'],
});
// Load user preferences from ~/.claude/CLAUDE.md
const agent = new Agent({
settingSources: ['user'],
});
// Load both user and project settings
const agent = new Agent({
settingSources: ['user', 'project'],
});
# 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
## Communication Style
- Be concise
- Show code examples
- Explain reasoning
## Development Environment
- Primary editor: VS Code
- Node version: 20.x
- Package manager: pnpm
const agent = new Agent({
systemPrompt: `You are an expert TypeScript developer.
Follow these guidelines:
- Use strict type checking
- Prefer immutability
- Write comprehensive tests`,
});
const projectType = detectProjectType();
const agent = new Agent({
systemPrompt: `You are a ${projectType} specialist.
Current project: ${process.cwd()}
Node version: ${process.version}`,
});
const agent = new Agent({
settingSources: ['project'],
});
const response = await agent.chat('What is this project about?');
console.log(response);
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');
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);
}
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}`);
}
// 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');
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),
);
// 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
});
<!-- 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
<!-- 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 .claude/CLAUDE.md when architecture changes
echo "## New Features\n- Added GraphQL API\n- Migrated to PostgreSQL" >> .claude/CLAUDE.md
// 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`,
});
// 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()}`,
});
<!-- Bad: Secrets in context -->
# Project Context
Database: postgresql://user:password@localhost/db
API Key: sk-secret-key-here
<!-- Good: Reference environment -->
# Project Context
Database: Configured via DATABASE_URL env var
API Key: Set OPENAI_API_KEY environment variable
const agent = new Agent({
settingSources: ['project'],
systemPrompt: `
Current branch: ${execSync('git branch --show-current').toString().trim()}
Uncommitted changes: ${execSync('git status --short').toString()}
`,
});
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');