Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Run Claude Code CLI (Anthropic's official coding agent) for software development tasks. Use when the user explicitly requests Claude Code, or when working on coding tasks that benefit from Anthropic's Claude models. Supports project scaffolding, code generation, refactoring, debugging, and code review. --- name: claude-code description: Run Claude Code CLI (Anthropic's official coding agent) for software development tasks. Use when the user explicitly requests Claude Code, or when working on coding tasks that benefit from Anthropic's Claude models. Supports project scaffolding, code generation, refactoring, debugging, and code review. --- Claude Code Run **Claude Code** — Anthropic's official CLI coding agent power Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Freshness
Last checked 2/24/2026
Best For
claude-code is best for general automation workflows where 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
Run Claude Code CLI (Anthropic's official coding agent) for software development tasks. Use when the user explicitly requests Claude Code, or when working on coding tasks that benefit from Anthropic's Claude models. Supports project scaffolding, code generation, refactoring, debugging, and code review. --- name: claude-code description: Run Claude Code CLI (Anthropic's official coding agent) for software development tasks. Use when the user explicitly requests Claude Code, or when working on coding tasks that benefit from Anthropic's Claude models. Supports project scaffolding, code generation, refactoring, debugging, and code review. --- Claude Code Run **Claude Code** — Anthropic's official CLI coding agent power
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 24, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 24, 2026
Vendor
Happykhan
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/24/2026.
Setup snapshot
git clone https://github.com/happykhan/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
Happykhan
Protocol compatibility
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
# ✅ Correct - with PTY exec pty:true command:"claude 'Your task'" # ❌ Wrong - no PTY, agent may break exec command:"claude 'Your task'"
bash
# Install via npm (requires Node.js) npm install -g @anthropic-ai/claude-code # Or via Homebrew (macOS) brew install claude-code # Verify installation claude --version
bash
export ANTHROPIC_API_KEY="your-api-key" # Or configure via: claude config
bash
# Simple task with PTY exec pty:true command:"claude 'Add error handling to api.js'" # In specific directory exec pty:true workdir:/path/to/project command:"claude 'Refactor the auth module'" # Background mode for longer tasks exec pty:true workdir:/path/to/project background:true command:"claude 'Build a REST API for user management'"
bash
# Start interactive session exec pty:true command:"claude" # Interactive in specific directory exec pty:true workdir:/path/to/project command:"claude"
bash
# Create new component exec pty:true workdir:./src command:"claude 'Create a React component for user profile with avatar, name, and bio'" # Generate utility function exec pty:true command:"claude 'Write a TypeScript function to debounce async operations'" # Scaffold project structure exec pty:true workdir:./new-project command:"claude 'Set up a Node.js Express API with TypeScript, Jest, and ESLint'"
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Run Claude Code CLI (Anthropic's official coding agent) for software development tasks. Use when the user explicitly requests Claude Code, or when working on coding tasks that benefit from Anthropic's Claude models. Supports project scaffolding, code generation, refactoring, debugging, and code review. --- name: claude-code description: Run Claude Code CLI (Anthropic's official coding agent) for software development tasks. Use when the user explicitly requests Claude Code, or when working on coding tasks that benefit from Anthropic's Claude models. Supports project scaffolding, code generation, refactoring, debugging, and code review. --- Claude Code Run **Claude Code** — Anthropic's official CLI coding agent power
Run Claude Code — Anthropic's official CLI coding agent powered by Claude models.
Claude Code is an interactive terminal application that needs a pseudo-terminal (PTY) to work correctly. Without PTY, you'll get broken output, missing colors, or the agent may hang.
Always use pty:true when running Claude Code:
# ✅ Correct - with PTY
exec pty:true command:"claude 'Your task'"
# ❌ Wrong - no PTY, agent may break
exec command:"claude 'Your task'"
# Install via npm (requires Node.js)
npm install -g @anthropic-ai/claude-code
# Or via Homebrew (macOS)
brew install claude-code
# Verify installation
claude --version
API Key Setup: Claude Code requires an Anthropic API key. Set it via:
export ANTHROPIC_API_KEY="your-api-key"
# Or configure via: claude config
# Simple task with PTY
exec pty:true command:"claude 'Add error handling to api.js'"
# In specific directory
exec pty:true workdir:/path/to/project command:"claude 'Refactor the auth module'"
# Background mode for longer tasks
exec pty:true workdir:/path/to/project background:true command:"claude 'Build a REST API for user management'"
# Start interactive session
exec pty:true command:"claude"
# Interactive in specific directory
exec pty:true workdir:/path/to/project command:"claude"
# Create new component
exec pty:true workdir:./src command:"claude 'Create a React component for user profile with avatar, name, and bio'"
# Generate utility function
exec pty:true command:"claude 'Write a TypeScript function to debounce async operations'"
# Scaffold project structure
exec pty:true workdir:./new-project command:"claude 'Set up a Node.js Express API with TypeScript, Jest, and ESLint'"
# Review specific file
exec pty:true command:"claude 'Review src/utils/auth.ts for security issues'"
# Analyze code quality
exec pty:true workdir:./src command:"claude 'Analyze the codebase for performance bottlenecks'"
# Review PR changes
exec pty:true command:"claude 'Review the changes in this PR and suggest improvements'"
# Refactor legacy code
exec pty:true command:"claude 'Refactor app.js to use modern ES6+ syntax and improve readability'"
# Extract components
exec pty:true command:"claude 'Extract reusable components from Dashboard.jsx'"
# Optimize performance
exec pty:true command:"claude 'Optimize the database queries in users.controller.js'"
# Fix bugs
exec pty:true command:"claude 'Debug the infinite loop in calculateTotal() function'"
# Resolve errors
exec pty:true command:"claude 'Fix the TypeScript compilation errors in the types/ directory'"
# Add logging
exec pty:true command:"claude 'Add comprehensive logging to the payment processing module'"
# Write tests
exec pty:true command:"claude 'Write Jest unit tests for src/utils/validation.js with 90% coverage'"
# Add test cases
exec pty:true command:"claude 'Add edge case tests for the date parsing function'"
# Fix failing tests
exec pty:true command:"claude 'Fix the failing integration tests in __tests__/api.test.js'"
# Specify model (defaults to claude-3-5-sonnet-latest)
claude --model claude-3-opus-20240229 "Your task"
# Set temperature
claude --temperature 0.7 "Your task"
# Max tokens
claude --max-tokens 4000 "Your task"
# Verbose output
claude --verbose "Your task"
# Help
claude --help
For long-running tasks, use background mode and monitor progress:
# Start in background
exec pty:true workdir:~/project background:true command:"claude 'Build a full authentication system with JWT'"
# Monitor progress (returns sessionId)
process action:log sessionId:XXX
# Check if still running
process action:poll sessionId:XXX
# Kill if needed
process action:kill sessionId:XXX
When spawning Claude Code in background mode, keep the user informed:
Example:
✅ Started Claude Code in ~/project: Building authentication system (background mode)
[wait for completion or milestones]
✅ Done: Built JWT auth with login, register, and token refresh endpoints
For long-running background tasks, add a notification command to your prompt:
exec pty:true workdir:~/project background:true command:"claude 'Build a todo app with React.
When completely finished, run:
openclaw system event --text \"Done: Built React todo app with CRUD operations\" --mode now'"
This triggers an immediate wake event instead of waiting for the next heartbeat.
Claude Code works best in git repositories:
# In existing repo
exec pty:true workdir:~/my-repo command:"claude 'Add user authentication'"
# Create temp repo for experiments
SCRATCH=$(mktemp -d) && cd $SCRATCH && git init && claude 'Build a calculator CLI'
Run multiple Claude Code instances for parallel work:
# Use git worktrees for isolation
git worktree add -b feature/auth /tmp/auth-work main
git worktree add -b feature/api /tmp/api-work main
# Launch parallel instances
exec pty:true workdir:/tmp/auth-work background:true command:"claude 'Implement OAuth2 authentication'"
exec pty:true workdir:/tmp/api-work background:true command:"claude 'Build REST API endpoints'"
# Monitor all
process action:list
# Cleanup after
git worktree remove /tmp/auth-work
git worktree remove /tmp/api-work
| Feature | Claude Code | Codex (Clawd) | Cursor | |---------------------|-------------|---------------|------------| | Provider | Anthropic | OpenAI | OpenAI | | CLI | ✅ | ✅ | ❌ (GUI) | | PTY Required | ✅ | ✅ | N/A | | Background Mode | ✅ | ✅ | N/A | | Auto-approval | Context-dep | --full-auto | Manual | | Git Integration | ✅ | ✅ | ✅ |
When to use Claude Code:
When to use Codex instead:
pty:true is non-negotiable for interactive CLIsworkdir: to focus the agent's contextprocess:log to check progress without interferingpty:true - coding agents need a terminalANTHROPIC_API_KEY environment variable or run claude configworkdir: to constrain the agent's scopeprocess action:log sessionId:XXX - agent may be waiting for confirmationgit init or use existing repo# Use specific Claude model
claude --model claude-3-opus-20240229 "Complex architecture design task"
# Adjust creativity (temperature)
claude --temperature 0.2 "Write precise unit tests" # Lower = more deterministic
claude --temperature 0.9 "Brainstorm API design ideas" # Higher = more creative
# Increase output length
claude --max-tokens 8000 "Generate comprehensive documentation"
For detailed information, see:
pty:true - coding agents need a terminal!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/happykhan-claude-code-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/happykhan-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
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d 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/happykhan-claude-code-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T00:32:50.555Z"
}
},
"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": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|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": "Happykhan",
"href": "https://github.com/happykhan/claude-code-skill",
"sourceUrl": "https://github.com/happykhan/claude-code-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:57.387Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:57.387Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/happykhan-claude-code-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/happykhan-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.