Crawler Summary

openclaw-claude-code answer-first brief

Claude Code --- name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations, Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Freshness

Last checked 4/14/2026

Best For

openclaw-claude-code is best for submit, multiple, granular workflows where MCP compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

openclaw-claude-code

Claude Code --- name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations,

MCPself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 14, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Trust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Apr 14, 2026

Vendor

Turkeymz

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.

Setup snapshot

git clone https://github.com/turkeymz/openclaw-claude-code.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Turkeymz

profilemedium
Observed Apr 14, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

MCP

contractmedium
Observed Apr 14, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

curl -fsSL https://claude.ai/install.sh | bash

bash

curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

bash

# macOS/Linux/WSL
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

bash

# Homebrew (macOS)
brew install --cask claude-code

# WinGet (Windows)
winget install Anthropic.ClaudeCode

bash

cd your-project
claude

bash

claude
# Start REPL, type natural language commands
# Use /help for available commands

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Claude Code --- name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations,

Full README

name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations, automation), (7) Custom agents and subagents, (8) Project-based configuration and settings, or (9) Enterprise/team deployment scenarios.

Claude Code

Claude Code is Anthropic's AI-powered coding assistant that works directly in your development environment. Use this skill when you need help with Claude Code setup, configuration, or advanced workflows.

🌐 Documentation / 文档

This repository contains comprehensive documentation for Claude Code. Choose your language:

中文文档 (Chinese):

  • README-zh.md - 完整的中文使用指南
  • 适用于:需要中文文档或习惯中文术语的用户

English Documentation:

  • README-en.md - Complete English guide -适用于:English-speaking users and developers

Additional References:

  • See references/ directory for detailed guides on MCP integration, CLI commands, best practices, and more.

Quick Start / 快速开始

Native Install (Recommended):

# macOS/Linux/WSL
curl -fsSL https://claude.ai/install.sh | bash

# Windows PowerShell
irm https://claude.ai/install.ps1 | iex

# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd

Package Managers:

# Homebrew (macOS)
brew install --cask claude-code

# WinGet (Windows)
winget install Anthropic.ClaudeCode

First Session

cd your-project
claude

You'll be prompted to log in on first use with one of:

  • Claude subscription (Pro, Max, Teams, Enterprise)
  • Claude Console account
  • Cloud provider (Amazon Bedrock, Google Vertex AI, Microsoft Foundry)

Core Concepts

Session Types

Claude Code supports multiple interaction modes:

Interactive Mode:

claude
# Start REPL, type natural language commands
# Use /help for available commands

One-shot Query:

claude "query"
# Execute and exit, no persistence

Print Mode (SDK):

claude -p "query"
# Output structured response, useful for scripts

Resume Session:

claude -r session-name
# Continue previous conversation

MCP (Model Context Protocol)

MCP enables Claude Code to connect to external tools, databases, and APIs.

Adding MCP Servers:

# HTTP server
claude mcp add --transport http notion https://mcp.notion.com/mcp

# SSE server
claude mcp add --transport sse asana https://mcp.asana.com/sse

# Local stdio server
claude mcp add --transport stdio airtable -- npx -y airtable-mcp-server

Scopes:

  • --scope local: Project-specific, stored in project .mcp.json
  • --scope project: Shared via .mcp.json in project root
  • --scope user: Cross-project, stored in ~/.claude.json

Managing MCP:

claude mcp list           # List all servers
claude mcp get github      # Get server details
claude mcp remove github    # Remove a server
/mcp                      # Check status in Claude Code

CLI Reference

Essential Commands

| Command | Description | Example | |----------|-------------|----------| | claude | Start interactive REPL | claude | | claude "query" | One-shot query | claude "explain this function" | | claude -p "query" | Print mode (SDK) | claude -p "list files" | | claude -c | Continue last conversation | claude -c | | claude -r <session> | Resume specific session | claude -r auth-refactor | | claude commit | Git commit | claude commit | | claude update | Update to latest | claude update |

Important Flags

| Flag | Description | Example | |-------|-------------|----------| | --model | Set model (sonnet/opus/haiku) | claude --model sonnet | | --agents | Define custom subagents | claude --agents '{...}' | | --tools | Restrict available tools | claude --tools "Read,Edit" | | --mcp-config | Load MCP from JSON | claude --mcp-config ./mcp.json | | --chrome | Enable browser integration | claude --chrome | | --system-prompt | Replace system prompt | claude --system-prompt "You are a Python expert" | | --append-system-prompt | Append to system prompt | claude --append-system-prompt "Always use TypeScript" | | --verbose | Enable debug logging | claude --verbose |

Common Workflows

Coding Tasks

# Add a feature
claude "Add input validation to the user registration form"

# Refactor code
claude "refactor authentication module to use async/await"

# Fix a bug
claude "There's a bug where users can submit empty forms - fix it"

# Write tests
claude "Write unit tests for the calculator functions"

Git Operations

# Check changes
claude "What files have I changed?"

# Create commit
claude "Commit my changes with a descriptive message"

# Create branch
claude "Create a new branch called feature/authentication"

# Resolve conflicts
claude "Help me resolve merge conflicts"

Debugging

# Explain error
claude "Explain this error: TypeError: Cannot read property 'x' of undefined"

# Analyze logs
tail -f app.log | claude -p "Analyze this log stream and alert me to any errors"

# Code review
claude "Review my changes and suggest improvements"

Custom Agents

Define subagents for specialized tasks:

claude --agents '{
  "code-reviewer": {
    "description": "Expert code reviewer. Use proactively after code changes.",
    "prompt": "You are a senior code reviewer. Focus on code quality, security, and best practices.",
    "tools": ["Read", "Grep", "Glob", "Bash"],
    "model": "sonnet"
  },
  "debugger": {
    "description": "Debugging specialist for errors and test failures.",
    "prompt": "You are an expert debugger. Analyze errors, identify root causes, and provide fixes."
  }
}'

Advanced Features

Permission Control

Claude Code supports granular permission control for tools:

# Allow specific tools without prompts
claude --allowedTools 'Bash(git log *)' 'Bash(git diff *)' 'Read' "query"

# Restrict tools
claude --disallowedTools 'Bash' 'Edit' "query"

# Plan mode (no execution)
claude --permission-mode plan "Show me the plan for this feature"

System Prompt Customization

Four modes for different needs:

Replace entire prompt:

claude --system-prompt "You are a Python expert who only writes type-annotated code"

Load from file:

claude -p --system-prompt-file ./prompts/code-review.txt "Review this PR"

Append to default:

claude --append-system-prompt "Always use TypeScript and include JSDoc comments"

Enterprise Features

Managed MCP Configuration:

Deploy /Library/Application Support/ClaudeCode/managed-mcp.json (macOS) for centralized control:

{
  "mcpServers": {
    "github": {
      "type": "http",
      "url": "https://api.githubcopilot.com/mcp/"
    },
    "company-internal": {
      "type": "stdio",
      "command": "/usr/local/bin/company-mcp-server"
    }
  }
}

Allowlist/Denylist:

{
  "allowedMcpServers": [
    {"serverName": "github"},
    {"serverCommand": ["npx", "-y", "approved-package"]},
    {"serverUrl": "https://*.internal.corp/*"}
  ],
  "deniedMcpServers": [
    {"serverName": "dangerous-server"},
    {"serverUrl": "https://*.untrusted.com/*"}
  ]
}

Integration Points

IDE Integrations

  • VS Code: Inline diffs, @-mentions, plan review
  • JetBrains: PyCharm, IntelliJ, WebStorm with IDE diff viewing
  • GitHub Actions: Automate code review, issue triage
  • GitLab CI/CD: Event-driven automation for MRs
  • Slack: @mention to route tasks

Cloud/CI/CD

# GitHub Actions
- name: Run Claude Code Review
  run: |
    claude -p "Review this PR and suggest improvements" --from-pr ${{ github.event.number }}

# Automation
tail -f app.log | claude -p "If you see any anomalies, Slack me"

Configuration Files

Project .mcp.json:

{
  "mcpServers": {
    "shared-server": {
      "command": "/path/to/server",
      "env": {
        "API_KEY": "${API_KEY:-default-key}"
      }
    }
  }
}

Settings ~/.claude.json:

{
  "model": "sonnet",
  "permissionMode": "default",
  "chromeIntegration": true
}

Troubleshooting

Common Issues

Session not saving:

# Check permissions
ls -la ~/.claude/

# Reset configuration
claude /clear

MCP server not connecting:

# Check server status
claude mcp get <server-name>

# Test connection
claude mcp test <server-name>

# View logs
claude --debug

Debug Mode

Enable debug output with category filtering:

# Enable all debug
claude --debug

# Filter specific categories
claude --debug "api,mcp"

# Exclude specific categories
claude --debug "!statsig,!file"

Environment Variables

| Variable | Description | Example | |-----------|-------------|----------| | API_KEY | Claude API key | export API_KEY=sk-xxx | | MAX_MCP_OUTPUT_TOKENS | Max tokens from MCP tools | export MAX_MCP_OUTPUT_TOKENS=50000 | | ENABLE_TOOL_SEARCH | Enable MCP tool search | export ENABLE_TOOL_SEARCH=true |

Reference Documentation

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

MCP: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/snapshot"
curl -s "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract"
curl -s "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

Rank

74

Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-actix-web

Rank

72

An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)

Traction

No public download signal

Freshness

Updated 2d ago

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "MCP"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T01:54:55.932Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "MCP",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "submit",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "multiple",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "granular",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:MCP|unknown|profile capability:submit|supported|profile capability:multiple|supported|profile capability:granular|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Turkeymz",
    "href": "https://github.com/turkeymz/openclaw-claude-code",
    "sourceUrl": "https://github.com/turkeymz/openclaw-claude-code",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:24.459Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "MCP",
    "href": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-14T22:25:24.459Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to openclaw-claude-code and adjacent AI workflows.