Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Comprehensive reference for Claude Code — the agentic CLI coding tool by Anthropic. Use when helping with installation, CLI usage, CLAUDE.md configuration, settings.json, permissions, MCP server setup, hooks, subagents, session management, or troubleshooting Claude Code issues. Also use when the user asks how to use or configure Claude Code, automate workflows with it, or when answering questions about Claude Code features and best practices. --- name: claude-code description: Comprehensive reference for Claude Code — the agentic CLI coding tool by Anthropic. Use when helping with installation, CLI usage, CLAUDE.md configuration, settings.json, permissions, MCP server setup, hooks, subagents, session management, or troubleshooting Claude Code issues. Also use when the user asks how to use or configure Claude Code, automate workflows with it, or when answe Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
claude-code is best for claude 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
Comprehensive reference for Claude Code — the agentic CLI coding tool by Anthropic. Use when helping with installation, CLI usage, CLAUDE.md configuration, settings.json, permissions, MCP server setup, hooks, subagents, session management, or troubleshooting Claude Code issues. Also use when the user asks how to use or configure Claude Code, automate workflows with it, or when answering questions about Claude Code features and best practices. --- name: claude-code description: Comprehensive reference for Claude Code — the agentic CLI coding tool by Anthropic. Use when helping with installation, CLI usage, CLAUDE.md configuration, settings.json, permissions, MCP server setup, hooks, subagents, session management, or troubleshooting Claude Code issues. Also use when the user asks how to use or configure Claude Code, automate workflows with it, or when answe
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Zdadadaz
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/zdadadaz/claude-code-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Zdadadaz
Protocol compatibility
MCP
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
bash
curl -fsSL https://claude.ai/install.sh | bash
bash
# macOS/Linux/WSL (recommended) curl -fsSL https://claude.ai/install.sh | bash # Homebrew (macOS) brew install --cask claude-code # Windows PowerShell irm https://claude.ai/install.ps1 | iex # WinGet winget install Anthropic.ClaudeCode
markdown
See @README.md for overview. Git workflow: @docs/git-instructions.md
yaml
--- paths: - "src/api/**/*.ts" --- # API Rules - All endpoints must include input validation
json
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"permissions": {
"allow": ["Bash(npm run lint)", "Bash(npm run test *)"],
"deny": ["Read(./.env)", "Read(./secrets/**)"]
}
}bash
# Add remote HTTP server (recommended) claude mcp add --transport http notion https://mcp.notion.com/mcp # Add remote SSE server claude mcp add --transport sse asana https://mcp.asana.com/sse # Add local stdio server claude mcp add --env AIRTABLE_API_KEY=key airtable -- npx -y airtable-mcp-server # Scopes: local (default), project, user claude mcp add --scope project --transport http github https://api.githubcopilot.com/mcp/ # Manage claude mcp list claude mcp get github claude mcp remove github # Use Claude Code itself as MCP server claude mcp serve
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Comprehensive reference for Claude Code — the agentic CLI coding tool by Anthropic. Use when helping with installation, CLI usage, CLAUDE.md configuration, settings.json, permissions, MCP server setup, hooks, subagents, session management, or troubleshooting Claude Code issues. Also use when the user asks how to use or configure Claude Code, automate workflows with it, or when answering questions about Claude Code features and best practices. --- name: claude-code description: Comprehensive reference for Claude Code — the agentic CLI coding tool by Anthropic. Use when helping with installation, CLI usage, CLAUDE.md configuration, settings.json, permissions, MCP server setup, hooks, subagents, session management, or troubleshooting Claude Code issues. Also use when the user asks how to use or configure Claude Code, automate workflows with it, or when answe
Claude Code is an agentic coding tool that reads your codebase, edits files, and runs commands. It works in terminal, VS Code/JetBrains IDEs, desktop app, web, and CI/CD.
# macOS/Linux/WSL (recommended)
curl -fsSL https://claude.ai/install.sh | bash
# Homebrew (macOS)
brew install --cask claude-code
# Windows PowerShell
irm https://claude.ai/install.ps1 | iex
# WinGet
winget install Anthropic.ClaudeCode
Start in any project: cd your-project && claude
Login on first use with /login. Supports Claude.ai accounts, Console API key, and cloud providers (Bedrock, Vertex AI, Azure Foundry).
| Command | Description |
|---------|-------------|
| claude | Start interactive REPL |
| claude "task" | Start REPL with initial prompt |
| claude -p "query" | Non-interactive (print mode), then exit |
| cat file \| claude -p "query" | Process piped input |
| claude -c | Continue most recent conversation |
| claude -r [session] | Resume session by name/ID or show picker |
| claude --from-pr 123 | Resume session linked to PR |
| claude update | Update to latest version |
| claude mcp | Configure MCP servers |
| claude --remote "task" | Create new web session on claude.ai |
| claude --teleport | Resume a web session locally |
| claude commit | Create a Git commit |
| Flag | Description |
|------|-------------|
| --print, -p | Non-interactive print mode |
| --continue, -c | Load most recent conversation |
| --resume, -r | Resume session by ID/name |
| --model | Set model (sonnet/opus/haiku or full name) |
| --permission-mode | Start in plan/acceptEdits/dontAsk/bypassPermissions |
| --dangerously-skip-permissions | Skip all permission prompts (use with caution) |
| --output-format | text/json/stream-json (print mode only) |
| --max-turns N | Limit agentic turns (print mode) |
| --max-budget-usd N | Spending cap (print mode) |
| --system-prompt | Replace entire system prompt |
| --append-system-prompt | Add to default system prompt |
| --add-dir PATH | Add extra working directories |
| --allowedTools | Tools that run without prompting |
| --disallowedTools | Tools to block |
| --tools | Restrict to specific built-in tools |
| --mcp-config FILE | Load MCP servers from JSON file |
| --verbose | Enable verbose logging |
| --debug | Debug mode with category filter |
| --agents JSON | Define custom subagents for this session |
| --agent NAME | Specify agent for session |
| --fork-session | Create new session ID when resuming |
| -v, --version | Show version |
See
references/cli-flags.mdfor complete flag reference.
Claude loads these files at startup as persistent context/instructions.
| Location | Scope |
|----------|-------|
| /Library/Application Support/ClaudeCode/CLAUDE.md | Organization-wide (managed) |
| ~/.claude/CLAUDE.md | All your projects (user) |
| ./CLAUDE.md or ./.claude/CLAUDE.md | Project team (commit to git) |
| ./CLAUDE.local.md | Your personal project overrides (gitignored) |
| ./.claude/rules/*.md | Modular topic-specific rules |
Bootstrap: /init — auto-generates a CLAUDE.md from your codebase.
Imports: Use @path/to/file syntax to import other files:
See @README.md for overview. Git workflow: @docs/git-instructions.md
Path-specific rules (YAML frontmatter in .claude/rules/):
---
paths:
- "src/api/**/*.ts"
---
# API Rules
- All endpoints must include input validation
Auto memory: Claude automatically saves learnings to ~/.claude/projects/<project>/memory/MEMORY.md. Manage via /memory. First 200 lines loaded each session.
See
references/memory-guide.mdfor full memory system details.
| File | Scope |
|------|-------|
| ~/.claude/settings.json | User (all projects) |
| .claude/settings.json | Project (committed) |
| .claude/settings.local.json | Local project (gitignored) |
| ~/.claude.json | Global state (OAuth, MCP servers) |
| .mcp.json | Project MCP servers (committed) |
| Managed: /Library/Application Support/ClaudeCode/managed-settings.json | Org-wide (macOS) |
Minimal example:
{
"$schema": "https://json.schemastore.org/claude-code-settings.json",
"permissions": {
"allow": ["Bash(npm run lint)", "Bash(npm run test *)"],
"deny": ["Read(./.env)", "Read(./secrets/**)"]
}
}
Key settings keys: model, permissions, env, hooks, language, cleanupPeriodDays, companyAnnouncements, attribution, sandbox, outputStyle, statusLine, alwaysThinkingEnabled, autoUpdatesChannel
See
references/settings-reference.mdfor all settings keys and environment variables.
Permission modes (set with --permission-mode or defaultMode in settings):
default — prompts on first useacceptEdits — auto-accept file editsplan — read-only analysis onlydontAsk — auto-deny unless pre-approvedbypassPermissions — skip all promptsRule syntax in permissions.allow/ask/deny:
| Rule | Matches |
|------|---------|
| Bash | All bash commands |
| Bash(npm run *) | Commands starting with npm run |
| Bash(git commit *) | Commands starting with git commit |
| Read(./.env) | Reading .env file |
| WebFetch(domain:example.com) | Fetches to example.com |
| mcp__puppeteer__* | All puppeteer MCP tools |
| Task(Explore) | Explore subagent |
Deny rules always take precedence over ask and allow.
See
references/permissions-guide.mdfor full rule syntax and tool-specific patterns.
# Add remote HTTP server (recommended)
claude mcp add --transport http notion https://mcp.notion.com/mcp
# Add remote SSE server
claude mcp add --transport sse asana https://mcp.asana.com/sse
# Add local stdio server
claude mcp add --env AIRTABLE_API_KEY=key airtable -- npx -y airtable-mcp-server
# Scopes: local (default), project, user
claude mcp add --scope project --transport http github https://api.githubcopilot.com/mcp/
# Manage
claude mcp list
claude mcp get github
claude mcp remove github
# Use Claude Code itself as MCP server
claude mcp serve
Common servers: github, sentry, notion, asana, slack, figma, postgresql
See
references/mcp-guide.mdfor full MCP configuration, scopes, auth, and managed setup.
| Command | Purpose |
|---------|---------|
| /help | Show commands |
| /clear | Clear conversation history |
| /compact [focus] | Compact history with optional instructions |
| /config | Open settings interface |
| /context | Visualize context window usage |
| /cost | Show token usage stats |
| /doctor | Check installation health |
| /export [file] | Export conversation |
| /init | Initialize CLAUDE.md for project |
| /mcp | Manage MCP connections |
| /memory | Edit CLAUDE.md files |
| /model | Select or change model |
| /permissions | View/update tool permissions |
| /plan | Enter plan mode |
| /rename NAME | Name current session |
| /resume [session] | Resume conversation |
| /rewind | Restore previous code/conversation state |
| /stats | Usage stats and session history |
| /vim | Enable vim editing mode |
| ! command | Run bash directly (adds output to context) |
| @path | Reference a file |
| Shortcut | Action |
|----------|--------|
| Ctrl+C | Cancel current operation |
| Esc | Stop Claude mid-action |
| Esc + Esc | Open rewind menu |
| Shift+Tab | Cycle permission modes (Normal → AutoAccept → Plan) |
| Ctrl+O | Toggle verbose output |
| Ctrl+B | Background current bash task |
| Ctrl+T | Toggle task list |
| Ctrl+R | Reverse search history |
| Option+T / Alt+T | Toggle extended thinking |
| Option+P / Alt+P | Switch model |
Custom subagent file (.claude/agents/name.md or ~/.claude/agents/name.md):
---
name: code-reviewer
description: Reviews code for quality and security. Use proactively after changes.
tools: Read, Grep, Glob, Bash
model: sonnet
---
You are a senior code reviewer. Focus on quality, security, and best practices.
Provide prioritized feedback: Critical → Warnings → Suggestions.
Built-ins: Explore (fast read-only), Plan (planning research), general-purpose
CLI subagents (session-only):
claude --agents '{"reviewer": {"description": "...", "prompt": "...", "tools": ["Read"]}}'
See
references/sub-agents-guide.mdfor full configuration and patterns.
Auto-run scripts at lifecycle events. Configure in .claude/settings.json:
{
"hooks": {
"PostToolUse": [{
"matcher": "Edit|Write",
"hooks": [{"type": "command", "command": "./scripts/lint.sh"}]
}],
"PreToolUse": [{
"matcher": "Bash",
"hooks": [{"type": "command", "command": "./scripts/security-check.sh"}]
}]
}
}
Events: SessionStart, UserPromptSubmit, PreToolUse, PermissionRequest, PostToolUse, PostToolUseFailure, Stop, SubagentStart, SubagentStop, PreCompact, SessionEnd
Hook scripts receive JSON via stdin and control flow via exit codes: 0 = allow, 2 = block, other = non-blocking error.
See
references/hooks-guide.mdfor full events, input schemas, and output formats.
Shift+Tab) before implementing complex changes/init to bootstrap/clear between unrelated tasks to keep context clean@file references instead of describing where code lives/clear and start fresh with better prompt--permission-mode plan for safe analysis of unfamiliar codeclaude -p "task" --output-format json| Problem | Fix |
|---------|-----|
| Auth issues | /logout then restart claude |
| Slow/incomplete search on WSL | Move project to Linux filesystem or use more specific searches |
| Search not working | brew install ripgrep + set USE_BUILTIN_RIPGREP=0 |
| Repeated permission prompts | Use /permissions to allowlist safe commands |
| High CPU/memory | /compact regularly, restart between major tasks |
| Claude ignoring CLAUDE.md rules | File is too long — prune it |
| Node not found (WSL) | Install Node via Linux package manager or nvm |
| JetBrains IDE not detected (WSL2) | Configure Windows Firewall or switch to mirrored networking |
| MCP server not found | Check /mcp status, verify server config |
| Reset to defaults | rm -rf ~/.claude/ ~/.claude.json |
Run /doctor for automated health checks (installation, settings, MCP, plugins, context warnings).
| File | Purpose |
|------|---------|
| ~/.claude/settings.json | User settings |
| .claude/settings.json | Project settings (committed) |
| .claude/settings.local.json | Local project settings |
| ~/.claude.json | Global state (theme, OAuth, MCP) |
| .mcp.json | Project MCP servers |
| ~/.claude/CLAUDE.md | User memory |
| ./CLAUDE.md | Project memory |
| ~/.claude/agents/ | User subagents |
| .claude/agents/ | Project subagents |
| ~/.claude/projects/<project>/memory/ | Auto memory |
references/cli-flags.md — Complete CLI flags and environment variablesreferences/settings-reference.md — All settings.json keys and environment variablesreferences/memory-guide.md — CLAUDE.md, auto memory, modular rulesreferences/permissions-guide.md — Permission system, modes, rule syntaxreferences/mcp-guide.md — MCP setup, scopes, auth, managed configreferences/hooks-guide.md — Hooks events, input/output schemasreferences/sub-agents-guide.md — Subagent creation, config, patternsreferences/best-practices.md — Extended best practices and workflowsMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
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
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
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/zdadadaz-claude-code-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/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-17T00:32:43.422Z"
}
},
"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": "claude",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:claude|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": "Zdadadaz",
"href": "https://github.com/zdadadaz/claude-code-skill",
"sourceUrl": "https://github.com/zdadadaz/claude-code-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:24:29.946Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:24:29.946Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/zdadadaz-claude-code-skill/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 claude-code and adjacent AI workflows.