Skip to main content

Command Palette

Search for a command to run...

Claude Routines Explained: What SME Operators and Technical Teams Need to Know

What Claude Routines are, how they work, and what SME operators and technical teams should know before building workflows around them.

Updated
7 min read
Claude Routines Explained: What SME Operators and Technical Teams Need to Know

TL;DR: What Claude Routines are, how they work, and what SME operators and technical teams should know before building workflows around them.

Anthropic released Claude Routines in April 2026. The announcement landed quietly in the developer community, but the feature has practical implications for operators running AI workflows on small and mid-sized teams. This guide explains what Routines are, what they change about working with Claude, and what team leads should understand before building workflows around them.

What Claude Routines are

Claude Routines are saved, reusable instruction sets that attach to a Claude session or project. Instead of re-explaining context at the start of every conversation, a routine stores that context and applies it automatically.

A routine might contain:

  • A persona or role definition ("You are an EU AI Act compliance reviewer")
  • A set of standing constraints ("Never suggest solutions that require cloud storage in non-EU jurisdictions")
  • A workflow template ("When I share a document, first summarize it in 3 bullets, then flag any GDPR risks, then suggest three actions")
  • A reference set ("Use these internal style guidelines when generating copy")

The practical effect: a team member can start a Claude session and the routine activates the full working context without any additional setup.

Why this matters for operations leaders at growing companies

The friction in AI tool adoption at small and mid-sized companies is not primarily the tool itself. It is the inconsistency. A marketing manager asks Claude to review copy. A different marketing manager asks the same question next week and gets a different framing because the context was different.

Claude Routines address this. A company can define a standard routine for each use case, distribute it to the relevant team members, and get consistent outputs that reflect company standards, not individual prompting skill.

For a 25-person operations team, this is significant. The difference between "everyone prompts however they want" and "everyone uses the approved routine" is the difference between AI as a personal productivity tool and AI as a team workflow component.

What routines are not

Claude Routines are not automation. They do not run on a schedule or trigger on external events. They are instruction templates, not pipelines.

Operators who want fully automated workflows (where Claude processes inputs without human initiation) should look at Claude Managed Agents or the Claude API with scheduled triggers. Routines are for human-initiated sessions that need consistent framing.

Three practical use cases for SME teams

1. Procurement review: a routine for reviewing supplier contracts might include: "Read the contract, flag clauses that conflict with GDPR data processing requirements, identify non-standard payment terms, and summarize the three highest-risk clauses in plain language." Every procurement manager uses the same starting point.

2. Customer communication drafting: a routine that sets tone, brand voice, and required disclaimers for customer emails. Customer service staff start a session, paste the customer's message, and get a draft that already reflects company standards.

3. Weekly reporting: a routine that takes a data export and produces a consistent report format. The finance manager pastes the CSV, the routine formats the summary table, highlights variance from the previous week, and flags any items that need approval.

What technical teams should know about implementation

Claude Routines are set up through the Claude interface (claude.ai) for teams with business or team subscriptions. They are not currently available through the Claude API in the same way (the API approach uses system prompts, which accomplish the same function but require developer configuration).

For teams using Claude Code: CLAUDE.md files serve the same function at the project level. A well-written CLAUDE.md is a routine for the engineering context.

Key implementation considerations:

  • Version control: routines should be documented in a shared location (Notion, Confluence, or a shared document) so they can be updated centrally when company standards change.
  • Access control: decide who can create or modify routines. In most teams, this is a small number of people (one per function or one per team lead).
  • Audit trail: when a routine produces an output that is acted upon, keep a record of which routine version was used. This matters for compliance contexts under the EU AI Act.

EU AI Act relevance

The EU AI Act does not specifically regulate routines, but the governance principles apply. If a routine is used to make or support a consequential decision (a hiring screen, a credit assessment, a patient triage step), the organization is responsible for the accuracy and fairness of the outputs, even if the instruction template was the source of the problem.

For most SME use cases (drafting, summarizing, reviewing internal documents), routines fall well below the high-risk threshold. Teams should apply common sense: the more consequential the output, the more oversight the routine needs.

FAQ

Are Claude Routines available on all Claude plans?

Claude Routines are available on Claude Team and Enterprise plans. Individual Pro plans have limited routine functionality. Check Anthropic's current pricing page for the latest feature availability.

Can routines access external data or systems?

Not directly. Routines are instruction sets, not data connectors. To give Claude access to external data, teams use MCP (Model Context Protocol) integrations or paste data into the session. Routines can include instructions for how to handle data when it is pasted, but they do not fetch data automatically.

How are routines different from Claude Projects?

Claude Projects store conversation history and can attach files. Routines store instruction sets. They complement each other: a Project might contain the conversation history for a particular client, while a Routine defines how to work on that client's materials. Both are available on Team and Enterprise plans.

Can Claude Routines be shared across a team?

Yes. On Team plans, routines can be shared with team members. On Enterprise plans, administrators can set default routines for the organization.

Further Reading