claude-sdk
Installation
SKILL.md
Claude SDK Expert
Expert knowledge of Claude Code SDK, tools, and extension development.
Core Tools
File Operations:
// Read files
Read({ file_path: '/absolute/path/file.ts' });
// Write files (creates new or overwrites)
Write({
file_path: '/absolute/path/file.ts',
content: 'export const hello = () => "world";'
});