claude-agent-sdk-context-management
Installation
SKILL.md
Claude Agent SDK - Context Management
Managing agent memory, context, and conversation state in the Claude Agent SDK.
Setting Sources
Project Memory
import { Agent } from '@anthropic-ai/claude-agent-sdk';
// Load project-specific context from .claude/CLAUDE.md
const agent = new Agent({
settingSources: ['project'],
});