Alpha
Internal or limited testing with significant changes expected. May have bugs or incomplete functionality.
Ta treść nie jest jeszcze dostępna w Twoim języku.
Claude Code continues to evolve rapidly with experimental features and beta programs. This guide explains how to access, test, and provide feedback on cutting-edge capabilities before they reach general availability.
Alpha
Internal or limited testing with significant changes expected. May have bugs or incomplete functionality.
Beta
Feature-complete but gathering feedback. Available to specific user groups or plans.
Preview
Near-final implementation. Broadly available but may have minor adjustments.
GA
Generally Available. Stable, supported, and recommended for production use.
Claude Code GitHub Actions enables AI-powered automation in your GitHub workflow:
name: Claude Code Reviewon: [pull_request, issue_comment]
jobs: claude-action: runs-on: ubuntu-latest steps: - uses: anthropics/claude-code-action@beta with: github-token: ${{ secrets.GITHUB_TOKEN }} anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}
Features:
@claude
mentions in issues and PRsAn experimental installation method that provides platform-native binaries:
# From existing Claude Code installationclaude install
# Fresh install via scriptcurl -fsSL claude.ai/install.sh | bash
Design-to-code integration through Model Context Protocol:
# Enable in Figma Desktop App# Preferences → Dev Mode → Enable MCP Server
# Add to Claude Codeclaude mcp add --transport sse figma-dev-mode http://127.0.0.1:3845/sse
Capabilities:
DISABLE_INTERLEAVED_THINKING
Control whether Claude streams its reasoning process
export DISABLE_INTERLEAVED_THINKING=1
Large Codebase Support
Claude Code automatically optimizes for large codebases based on your request complexity
CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR
Lock Bash tool to project root directory
export CLAUDE_BASH_MAINTAIN_PROJECT_WORKING_DIR=1
MCP_TIMEOUT
Adjust MCP server startup timeout (milliseconds)
export MCP_TIMEOUT=30000
The MCP ecosystem includes many production-ready servers:
As of version 1.0.10/1.0.11, Claude Code is available to:
# View current version and featuresclaude --version
# Check system informationclaude doctor
# View available slash commandsclaude /help
# Check MCP server statusclaude /mcp list
Based on recent releases, these features have graduated from beta to GA:
Hooks System
Released in v1.0.38 - User-defined automation points
Plan Mode
Structured planning with /think and /ultrathink
Custom Commands
Slash command system in .claude/commands/
Native Windows
Windows support added in v1.0.51
/feedback
command in Claude Code# Create test environmentmkdir claude-test && cd claude-testgit init
# Test with clean configurationclaude --no-config
# Use temporary settingsexport CLAUDE_CONFIG_DIR=~/.claude-test
# Disable auto-updates for testingclaude config set disableAutoUpdate true
# Use debug loggingexport ANTHROPIC_LOG=debug
Based on community discussions and development patterns:
Enhanced CI/CD
Deeper integration with build pipelines beyond GitHub Actions
Team Collaboration
Shared contexts and collaborative coding sessions
Plugin System
Extensible architecture for custom integrations
Performance Mode
Optimized for large-scale refactoring operations
Environment Details
claude doctor > diagnostic.txt
Reproduction Steps
Submit via Appropriate Channel
/feedback
for suggestionsVersion Control
Always commit before testing new features
Incremental Testing
Start with non-critical projects
Document Findings
Keep notes on behavior changes
Share Knowledge
Help others with your discoveries
MCP Server Connection Problems:
# Debug MCP connectionsclaude --mcp-debug
# Check server logsclaude /mcp logs <server-name>
# Restart MCP serversclaude /mcp restart
Permission Issues:
# Reset permissionsclaude /permissions reset
# View current permissionsclaude /permissions list
Model Access:
# Check available modelsclaude /models
# Upgrade plan if neededclaude /upgrade