Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Use Spec-Driven Development with spec-kit - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude Code documentation - Use spec-kit workflow for structured development - Manage AI-assisted development workflows - Execute complex programming tasks --- name: claude-code description: | Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Use Spec-Driven Development with spec-kit - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude 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 do workflows where MCP and OpenClaw 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
Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Use Spec-Driven Development with spec-kit - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude Code documentation - Use spec-kit workflow for structured development - Manage AI-assisted development workflows - Execute complex programming tasks --- name: claude-code description: | Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Use Spec-Driven Development with spec-kit - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude
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, OpenClaw
Freshness
Feb 25, 2026
Vendor
Claude
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/hw10181913/openclaw-skill-claude-code.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
Claude
Protocol compatibility
MCP, OpenClaw
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
# Get documentation about a specific topic claude-code query "subagents" claude-code query "best practices" claude-code query "settings"
bash
# Create a coding subagent for a complex task claude-code task --description "Fix the login bug" --priority high claude-code task --description "Refactor the database layer" --model claude-3-5-sonnet
bash
# Show all available commands claude-code --help
bash
claude-code query <topic>
bash
claude-code query "subagents" claude-code query "agent-teams" claude-code query "best practices" claude-code query "common workflows" claude-code query "settings" claude-code query "troubleshooting"
bash
claude-code task --description "<task description>" [--priority <level>] [--model <model-name>]
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Use Spec-Driven Development with spec-kit - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude Code documentation - Use spec-kit workflow for structured development - Manage AI-assisted development workflows - Execute complex programming tasks --- name: claude-code description: | Claude Code integration for OpenClaw. This skill provides interfaces to: - Query Claude Code documentation from https://code.claude.com/docs - Use Spec-Driven Development with spec-kit - Manage subagents and coding tasks - Execute AI-assisted coding workflows - Access best practices and common workflows Use this skill when users want to: - Get help with coding tasks - Query Claude
name: claude-code description: | Claude Code integration for OpenClaw. This skill provides interfaces to:
This skill integrates Claude Code capabilities into OpenClaw, providing access to AI-assisted coding workflows, documentation, and best practices.
# Get documentation about a specific topic
claude-code query "subagents"
claude-code query "best practices"
claude-code query "settings"
# Create a coding subagent for a complex task
claude-code task --description "Fix the login bug" --priority high
claude-code task --description "Refactor the database layer" --model claude-3-5-sonnet
# Show all available commands
claude-code --help
Query Claude Code documentation for a specific topic.
Usage:
claude-code query <topic>
Examples:
claude-code query "subagents"
claude-code query "agent-teams"
claude-code query "best practices"
claude-code query "common workflows"
claude-code query "settings"
claude-code query "troubleshooting"
Topics include:
Create and execute a coding subagent task.
Usage:
claude-code task --description "<task description>" [--priority <level>] [--model <model-name>]
Options:
--description, -d: Task description (required)--priority, -p: Task priority (low/medium/high, default: medium)--model, -m: Model to use (optional, uses default if not specified)Examples:
claude-code task --description "Implement user authentication module"
claude-code task --description "Refactor database queries" --priority high
claude-code task --description "Write unit tests for the API" --model claude-3-5-sonnet
Get overview of Claude Code documentation sections.
Usage:
claude-code docs [section]
Sections:
quickstart - Getting started guidebest-practices - AI coding best practicescommon-workflows - Typical development workflowssettings - Customization optionstroubleshooting - Common issues and solutionsall - Full documentation overview (default)Examples:
claude-code docs
claude-code docs quickstart
claude-code docs best-practices
claude-code docs troubleshooting
Display Claude Code configuration and status.
Usage:
claude-code info
Output includes:
This skill works seamlessly with OpenClaw's native capabilities:
# 1. Query best practices for debugging
claude-code query "debugging best practices"
# 2. Create a subagent to investigate and fix
claude-code task --description "Find and fix the null pointer exception in userService.js" --priority high
# 3. Review the changes
claude-code query "code review best practices"
# 1. Get best practices for the feature type
claude-code query "API design best practices"
# 2. Create development task
claude-code task --description "Implement REST API for user management" --priority medium
# 3. Check settings for code style
claude-code query "code style settings"
# 1. Query PR review best practices
claude-code query "PR review workflows"
# 2. Set up automated review task
claude-code task --description "Review all PRs in the last week" --priority low
Not required for basic usage. Claude Code integration uses OpenClaw's native capabilities.
Uses OpenClaw's configured default models. Override per task with --model option.
Managed by OpenClaw's subagent configuration (default: 8 concurrent subagents).
Spec-Driven Development flips the script on traditional software development. Instead of coding first and treating specs as scaffolding, specifications become executable - directly generating working implementations rather than just guiding them.
# Install via uv (recommended)
uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
# Verify installation
specify check
# Initialize project with Claude Code
specify init <PROJECT_NAME> --ai claude
Use /speckit.constitution command to create governing principles:
/speckit.constitution Create principles focused on:
- Code quality standards
- Testing requirements
- User experience consistency
- Performance requirements
- Design system guidelines
Creates .specify/memory/constitution.md - your project's foundational guidelines.
Use /speckit.specify to describe what to build:
/speckit.specify Build an application that [describe your product vision]
Focus on:
- What the application does
- User stories and scenarios
- Core features and functionality
- User experience goals
NOT the tech stack!
Use /speckit.clarify for structured questioning:
/speckit.clarify
Sequential, coverage-based questioning that records answers in Clarifications section.
Use /speckit.plan to define your tech stack:
/speckit.plan The application uses:
- Frontend: [React/Vue/Vanilla HTML+CSS+JS]
- Backend: [Node.js/Python/Go]
- Database: [PostgreSQL/MongoDB/LocalStorage]
- Key libraries: [list dependencies]
Use /speckit.tasks to break down implementation:
/speckit.tasks
Creates tasks.md with:
Use /speckit.implement to build:
/speckit.implement
Executes tasks in correct order, follows TDD approach, provides progress updates.
| Command | Description |
|---------|-------------|
| /speckit.constitution | Create/update project principles |
| /speckit.specify | Define what to build (requirements) |
| /speckit.plan | Create technical implementation plan |
| /speckit.tasks | Generate actionable task list |
| /speckit.implement | Execute all tasks |
| Command | Description |
|---------|-------------|
| /speckit.clarify | Structured requirements clarification |
| /speckit.analyze | Cross-artifact consistency analysis |
| /speckit.checklist | Quality validation checklists |
specify init)PROJECT_NAME/
āāā .specify/
ā āāā memory/
ā ā āāā constitution.md # Project principles
ā āāā scripts/
ā ā āāā check-prerequisites.sh
ā ā āāā common.sh
ā ā āāā create-new-feature.sh
ā ā āāā setup-plan.sh
ā ā āāā update-claude-md.sh
ā āāā specs/
ā āāā 001-feature-name/
ā āāā spec.md # Functional specs
ā āāā plan.md # Technical plan
ā āāā tasks.md # Implementation tasks
ā āāā quickstart.md # Run instructions
āāā CLAUDE.md # AI assistant guidance
āāā templates/
āāā CLAUDE-template.md
āāā plan-template.md
āāā spec-template.md
āāā tasks-template.md
specify init todo-app-spec-kit --ai claude
cd todo-app-spec-kit
/speckit.constitution Create principles:
- Design Excellence: Skeuomorphic first, tactile feedback
- Code Quality: Clean architecture, progressive enhancement
- Testing: Visual testing, interaction testing
- User Experience: Intuitive, rewarding, calm design
/speckit.specify Build a beautiful todo list app with:
- Tasks as index cards on a corkboard or notebook
- Add/edit/delete task functionality
- Mark complete with stamp animation
- Drag-and-drop reordering
- LocalStorage persistence
- Warm paper-like aesthetic with handwriting fonts
- Satisfying tactile interactions (crumpling, writing sounds)
/speckit.plan Use:
- Pure HTML5/CSS3/JavaScript (no frameworks)
- LocalStorage for data persistence
- Google Fonts (Caveat handwriting)
- CSS animations for tactile effects
- Mobile-responsive design
- Fully offline-capable
/speckit.tasks # Creates task breakdown
/speckit.implement # Executes all tasks
ā Structured Process: No more vague prompts ā Quality Assurance: Built-in checklists and validation ā Parallel Exploration: Multiple implementation paths ā Documentation: Automatic spec generation ā Reproducible: Same workflow for every project ā AI-Optimized: Commands designed for Claude Code
/speckit.checklist before declaring doneThis Claude Code skill includes Spec-Kit knowledge! You can:
# Query Spec-Kit documentation
claude-code query "spec-kit"
claude-code query "spec-driven development"
claude-code query "specify CLI"
# Get workflow guidance
claude-code docs spec-workflow
# 1. Install spec-kit (one-time)
uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
# 2. Initialize project
specify init my-new-app --ai claude
# 3. In Claude Code, use the commands:
/speckit.constitution # Set design principles
/speckit.specify # Define your app
/speckit.plan # Choose tech stack
/speckit.tasks # Get task list
/speckit.implement # Build it!
Resources:
Machine 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/hw10181913-openclaw-skill-claude-code/snapshot"
curl -s "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/contract"
curl -s "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/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/hw10181913-openclaw-skill-claude-code/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP",
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T03:27:04.514Z"
}
},
"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": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "do",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile protocol:OPENCLEW|unknown|profile capability:do|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://code.claude.com/docs/en/chrome",
"sourceUrl": "https://code.claude.com/docs/en/chrome",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-03-14T02:02:38.381Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Claude",
"href": "https://code.claude.com/docs",
"sourceUrl": "https://code.claude.com/docs",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:20.431Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP, OpenClaw",
"href": "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:20.431Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/hw10181913-openclaw-skill-claude-code/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Use Claude Code with Chrome (beta) - Claude Code Docs",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://code.claude.com/docs/en/chrome",
"sourceUrl": "https://code.claude.com/docs/en/chrome",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-03-14T02:02:38.381Z",
"isPublic": true
}
]Sponsored
Ads related to claude-code and adjacent AI workflows.