Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All releases Home olderv1.0.80 v1.0.82newer

Claude Code v1.0.81

8 entries read diff v1.0.80 → v1.0.81 Markdown

Claude Code v1.0.81 introduces a powerful plugin system for extending functionality through custom commands and agents, improves concurrent query handling to prevent race conditions, and adds enhanced telemetry for better usage insights.

Find
Pick an entry · j / k steps through
8 entries

Changesopen

Plugin System (Experimental)#

What: Complete plugin framework for extending Claude Code with custom commands, agents, and hooks How to use:

# Enable plugin system (currently requires environment variable)
export ENABLE_PLUGINS=1
claude

# Plugins are loaded from ~/.claude/plugins/repos/
# Structure: ~/.claude/plugins/repos/owner/repo/

Details:

  • Supports three types of extensions: commands, agents, and hooks
  • Git-based distribution with automatic updates via git pull --ff-only
  • Plugin manifest format (plugin.json) with name, version, description, and author metadata
  • Commands and agents are namespaced (e.g., pluginName:commandName)
  • Individual plugins can be enabled/disabled per repository
  • Supports ${CLAUDE_PLUGIN_ROOT} variable for referencing plugin files
  • Currently disabled by default - requires ENABLE_PLUGINS environment variable

Prompt Caching Infrastructure (Disabled)#

What: Infrastructure for caching API prompts to local JSON files Details:

  • Saves prompts to .claude-cache/prompts/{sessionId}/{timestamp}.json
  • Currently disabled via hardcoded flag - likely for future release
  • Captures complete prompt data including tools, system prompts, and messages
  • Silent error handling to prevent interruption of normal operations

Enhanced Concurrent Query Handling#

What changed: Concurrent queries are now blocked with user feedback instead of causing undefined behavior Impact: Prevents race conditions and provides clear messaging when users submit queries too quickly. Shows "Previous query still processing. Please try again." warning message.

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Output Style Management#

What changed: Automatic cache refresh when output styles are created or modified Impact: New output styles are immediately available without requiring a restart. The output-style-setup agent now includes a callback that clears the style cache after successful operations.

Improved Telemetry#

What changed: Added categorization for agent and output style usage tracking Impact: Better insights into feature usage patterns with categories like:

  • agent:default, agent:custom, agent:{agentType} for agent usage
  • outputStyle:default, outputStyle:custom, outputStyle:{styleName} for output styles

Plugin Agent Discovery#

What changed: Agent discovery now supports plugin-provided agents in addition to built-in and custom agents Impact: Plugin agents appear seamlessly integrated in the agent list with "Plugin: {pluginName}" attribution

Fixed: Concurrent Query Race Condition#

  • Issue: Users could submit multiple queries simultaneously, causing unpredictable behavior
  • Cause: Previous implementation only logged telemetry without preventing concurrent execution
  • Resolution: Now blocks concurrent queries with proper mutex protection and user feedback

Related

Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.

Fixed: Output Style Cache Staleness#

  • Issue: Newly created output styles weren't immediately available
  • Cause: Output style cache wasn't cleared after modifications
  • Resolution: Added callback mechanism to clear cache after output-style-setup agent completes
Verbatim
Official · Anthropic

Anthropic’s official release notes

Published verbatim by Anthropic for v1.0.81. Text is unmodified from the upstream changelog. Everything else on this page came out of the bundle instead, which is why the two lists don't match.

  • Released output styles, including new built-in educational output styles "Explanatory" and "Learning". Docs: https://code.claude.com/docs/en/output-styles
  • Agents: Fix custom agent loading when agent files are unparsable
System prompt

The system prompt was not captured for this release, so this page cannot say whether it moved.