Claude Code Platform

Orchestrates Claude Code platform tools for file and codebase operations.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/sidsarasvati/dotfiles --skill claude-code-platform
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Claude Code Platform
Source: https://github.com/sidsarasvati/dotfiles/tree/main/claude/skills/claude-code-platform
Command: npx skills add https://github.com/sidsarasvati/dotfiles --skill claude-code-platform

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill consolidates exhaustive knowledge of Claude Code platform tools, patterns, and best practices, enabling faster, safer code assistance without hunting through docs.

Core Features & Use Cases

  • Comprehensive tool reference: Read, Write, Edit, Glob, Grep, Bash, Task; MCP integration patterns; and Haiku 4.5 model usage.
  • Guidance on best practices: Progressive disclosure, tool selection hierarchy, and performance optimization.
  • Real-world workflows: parallel tool execution, context management, and error handling.
  • Use with Model Context Protocol (MCP) for external data sources; quick reference for common commands.

Quick Start

Explain how to use the Read tool to inspect a file, including parallel reads.

Frequently Asked Questions about Claude Code Platform

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I read and explore files in Claude Code using the Read tool?

The Read tool inspects file contents and supports parallel reads across multiple files in a single operation. Use it to preview code, understand structure, and gather context before making edits. Parallel execution lets you load several files simultaneously without sequential delays.

What's the best way to search and match patterns across a codebase?

The Grep tool performs pattern search across files and directories, letting you locate code references, function definitions, or matching strings quickly. Combine with Glob to target specific file types and narrow results for faster navigation.

How do I safely edit code files without accidentally overwriting content?

Claude Code enforces Read-before-Write and Read-before-Edit patterns: inspect file content first, then apply edits with unique string replacements. This deterministic approach prevents data loss and ensures only intended changes are made.

Can I automate file operations and integrate external data sources with Claude Code tools?

Yes. The Model Context Protocol (MCP) integration enables orchestration of Read, Write, Edit, Glob, and Bash tools with external systems. Use MCP naming and configuration patterns to chain operations and pull data from local projects or remote skill deployments.

What file operations can I run through the Bash tool in Claude Code?

The Bash tool executes system commands for file management, codebase operations, and external integrations. Pair it with Read and Glob for safe, deterministic workflows that explore, validate, and transform files across your project.

How does context management and error handling work with parallel tool execution?

Parallel tool execution reduces latency by running independent Read or Glob operations simultaneously. Context management tracks tool outputs progressively; error handling validates tool parameters and results before chaining operations to maintain workflow safety.