Anatomy of the .claude/ Folder
Apr 29 • From Toan Vo
Is AI actually saving your engineering team time?
Most teams have adopted AI in some form, but the gap between “using AI” and “getting measurable ROI from AI” is larger than people realize. Postman released a cost savings analysis that looks at six common API development workflows and benchmarks the actual time and cost difference when AI is built into the platform versus bolted on externally.
Anatomy of the .claude/ folder
Claude Code users typically treat the .claude folder like a black box. They know it exists. They’ve seen it appear in their project root. But they’ve never opened it, let alone understood what every file inside it does.
interface ApiTag { id: string; name: string; slug: string; created_at: string;} interface ApiPost { id: string; title: string; slug: string; content_json?: string | null; cover_image_url?: string | null; status: "PUBLISHED" | "DRAFT" | "ARCHIVED"; author_id?: string | null; category_id?: string | null; category_name?: string | null; tags?: ApiTag[] | null; layout_type?: string | null; seo_title?: string | null; seo_description?: string | null; published_at: string | null; created_at: string; updated_at: string | null;}