← Back to all entries
2026-03-19

/loop Command, Claude Marketplace, Market Share & AI SRE

/loop Command, Marketplace, Market Share & AI SRE — visual for 2026-03-19

Claude Code /loop — Turn Your Session into an Autonomous Background Worker

Introduced in Claude Code v2.1.71 (early March 2026), the /loop command is a session-scoped cron scheduler that lets you give Claude a prompt and a cadence and have it repeat automatically — no manual re-triggering required. Closing the terminal cancels everything; this is deliberately a lightweight, session-bound tool, not a persistent background daemon. The underlying primitives are three native tools exposed to skills: CronCreate, CronList, and CronDelete.

Basic syntax

/loop 5m check the deployment and report any errors
/loop 30m run the test suite and summarise failures
/loop 1h scan open pull requests and flag stale ones

Supported interval units are s (seconds), m (minutes), h (hours), and d (days). Intervals below one minute are rounded up since the underlying cron has one-minute granularity. Each scheduled task receives an 8-character ID that you can use with CronDelete to cancel it individually.

Key constraints to know

Practical use cases

Tip Combine /loop with a custom subagent (defined in .claude/agents/) to keep the main session context clean. The loop fires the subagent, which does its work in its own isolated window and returns only a brief summary to the main session.

Cost awareness Each loop execution consumes tokens like a normal turn. A tight interval on a verbose task can add up quickly. Use CronList to audit active tasks and /effort low for mechanical monitoring prompts that don't need deep reasoning.

claude-code loop cron automation scheduled-tasks

Claude Marketplace — Anthropic's Enterprise App Store (No Commission)

On 6 March 2026, Anthropic launched the Claude Marketplace in limited preview — a B2B procurement platform that lets enterprises with existing Anthropic spending commitments buy Claude-powered software from vetted third-party partners, all within a single billing relationship. Crucially, Anthropic takes no commission on marketplace transactions, positioning it as a procurement convenience rather than a revenue share play.

Launch partners

How procurement works

Enterprises that have signed annual API spend commitments with Anthropic can apply a portion of that commitment to marketplace purchases — so the cost flows through a single vendor relationship rather than requiring separate contracts with each ISV. Payment is handled by Anthropic; the partner receives their revenue directly. Organisations without an existing spend commitment can still browse, but must negotiate separately.

Strategic context The Marketplace extends Anthropic beyond a model API provider into a distribution layer for Claude-powered software. Combined with the self-serve Enterprise plan (launched February 2026) and the $100M Partner Network (March 12), it completes an end-to-end enterprise go-to-market stack: sell, deploy, and expand — all through Anthropic-managed channels.

Tip for developers If you are building a Claude-powered product targeting enterprise customers, the Marketplace is a distribution channel worth applying for. Anthropic takes no cut, and your product surfaces directly in procurement conversations that enterprise buyers are already having with Anthropic.

marketplace enterprise B2B procurement Anthropic

Claude's Business Subscription Share Jumps 4.9 % in a Month

Data published by fintech company Ramp on 19 March 2026 shows that Anthropic's business software subscriptions grew 4.9 % month-over-month in February 2026 — the same period in which OpenAI's share fell 1.5 %. The headline numbers: OpenAI still leads at 34.4 % of business AI subscriptions tracked by Ramp, but Anthropic has climbed to 24.4 %, up from roughly 4 % just twelve months earlier.

The speed of the shift

Revenue trajectory

Anthropic's annualised revenue grew from $1 billion in December 2024 to $4 billion by July 2025, $9 billion by December 2025, and $14 billion by February 2026 — a roughly 14× increase in 14 months. The company now serves more than 300,000 business customers.

Why it matters for developers Rapid enterprise adoption of Claude translates directly into demand for Claude API skills, Claude Code expertise, and Claude-powered product development. The market is rewarding strong coding and agentic capabilities — the exact differentiators Anthropic has invested in most heavily over the past six months.

market-share enterprise growth Anthropic business

Fixing Claude with Claude — Anthropic's AI Reliability Engineering in Practice

On 19 March 2026, a member of Anthropic's AI Reliability Engineering (AIRE) team spoke at QCon London and published findings on using Claude as an internal SRE tool — in effect, using the model to help maintain the infrastructure that runs the model. The report is a candid account of both the genuine productivity gains and the current limitations that prevent Claude from fully replacing a human site reliability engineer.

What AIRE does

Anthropic's AI Reliability Engineering team partners with internal teams to improve reliability across every serving path: from the SDK through network and API layers, to serving infrastructure and accelerators. Claude agents assist by monitoring dashboards, correlating incidents, drafting runbooks, and proposing mitigations — all faster than a human on-call engineer could scan the same signal volume.

Where Claude excels

Where Claude still falls short

Takeaway for teams building AI ops tooling Use Claude for the intelligence amplification layer — faster anomaly detection, better summaries, quicker runbook drafts — while keeping humans in the loop for all remediation decisions. Gate autonomous actions behind an explicit approval step until you have high confidence in the model's causal reasoning on your specific infrastructure.

Practical resource Anthropic has published a reference implementation in the Claude cookbook: The Site Reliability Agent — a worked example of an SRE agent built on the Claude Agent SDK.

SRE reliability agents ops best-practices