How Anthropic Teams Use Claude Code
Simon Scrapesgo watch the original →
the gist
Anthropic's non-engineering teams use Claude Code by offloading repetitive tasks to modular 'skills' while keeping humans in the loop for final decisions, rather than attempting fully autonomous workflows.
Context-Driven Execution
Instead of relying on complex, monolithic prompts, Anthropic teams prioritize setting up a robust context environment before executing tasks. This involves creating a .clauderc or memory file that defines the user's role, brand voice, and target audience. By establishing this identity upfront, users shift the effort from prompt engineering to simple, step-by-step instructions. Teams often plan the entire session in the Claude web interface before moving to the Claude Code CLI to ensure the goal is clearly defined.
Modular Skill Development
To ensure consistency, teams encapsulate repeatable processes into modular "skills" saved as folders. Each skill includes a skill.md file that follows a specific structure:
- Name and Description: These must be highly specific to ensure Claude loads the skill only when relevant. The description should explicitly state when the skill should be called, when it should not be called, and the primary objective.
- Step-by-Step Instructions: The
skill.mdfile should be kept under 200 lines to avoid context bloat. - External References: Detailed examples and heavy documentation are stored in separate reference files within the folder, which Claude only accesses when the task requires specific data.
Human-in-the-Loop Automation
Anthropic teams avoid the "autonomous agent" trap, instead using Claude Code to augment administrative and repetitive work. Marketing teams, for example, use the tool to generate hundreds of ad variations from a single mockup, but they retain the final decision on which variations go live. This design principle ensures that the AI handles the "grind" of data transformation while the human remains at the checkpoint to review the output and prevent low-quality results.
The Slot Machine Mindset
Rather than attempting to correct a session that has drifted off course, teams treat Claude Code like a slot machine. If the model fails to produce the desired result, they do not spend time on corrective prompting. Instead, they use the rewind flag to revert to a previous checkpoint or start a completely fresh session. Internal data suggests that restarting is more efficient and has a higher success rate than attempting to rescue a degraded conversation.