Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Automatically delegate complex, logic-intensive tasks to OpenAI Codex CLI via `codex exec --full-auto`. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes. --- name: codex-delegator description: Automatically delegate complex, logic-intensive tasks to OpenAI Codex CLI via codex exec --full-auto. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes. --- Codex Delegator Overview This skill enables Claude Code to automatically de Capability contract not published. No trust telemetry is available yet. 13 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
codex-delegator is best for seamlessly, iterate, only 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
Automatically delegate complex, logic-intensive tasks to OpenAI Codex CLI via `codex exec --full-auto`. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes. --- name: codex-delegator description: Automatically delegate complex, logic-intensive tasks to OpenAI Codex CLI via codex exec --full-auto. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes. --- Codex Delegator Overview This skill enables Claude Code to automatically de
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 13 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 15, 2026
Vendor
Eddiearc
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. 13 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/eddiearc/codex-delegator.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
Eddiearc
Protocol compatibility
MCP
Adoption signal
13 GitHub stars
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
codex exec --full-auto "detailed task context with: - Problem description - Architecture and constraints - Previous attempts and failures - Success criteria"
bash
which codex
bash
npm i -g @openai/codex codex auth
bash
cd /path/to/project codex
text
I need help with [problem description]. Context: - [Architecture overview] - [Relevant constraints] - [Previous attempts and failures] The issue is in these files: - [file1]: [specific problem] - [file2]: [specific problem] Goal: [clear success criteria]
bash
codex exec "detailed task description with full context"
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Automatically delegate complex, logic-intensive tasks to OpenAI Codex CLI via `codex exec --full-auto`. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes. --- name: codex-delegator description: Automatically delegate complex, logic-intensive tasks to OpenAI Codex CLI via codex exec --full-auto. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes. --- Codex Delegator Overview This skill enables Claude Code to automatically de
codex exec --full-auto. Claude Code uses this skill to invoke Codex for complex backend logic, intricate algorithms, or persistent bugs. Enables seamless AI-to-AI collaboration where Claude Code analyzes and Codex executes.This skill enables Claude Code to automatically delegate complex, challenging tasks to OpenAI Codex CLI using codex exec --full-auto. When Claude Code encounters tasks that require different problem-solving approaches, deep logical analysis, or tasks that have proven resistant to repeated attempts, it can seamlessly invoke Codex to provide fresh perspectives and alternative solutions. The delegation happens automatically and transparently, with Claude Code handling context preparation, execution, and solution validation.
When Claude Code determines a task is suitable for delegation:
Analysis Phase: Claude Code analyzes the task complexity, context, and requirements
Decision: Determines if delegation would be beneficial based on:
Delegation: Automatically invokes Codex:
codex exec --full-auto "detailed task context with:
- Problem description
- Architecture and constraints
- Previous attempts and failures
- Success criteria"
Validation: Claude Code reviews Codex's solution for correctness and completeness
Integration: Returns validated solution to user with transparency about using Codex
User Transparency: Claude Code will inform you when it delegates to Codex, e.g., "I'm using Codex to generate this complex backend logic..."
Activate this skill specifically for:
Complex Backend Logic
Logic-Intensive Problems
Persistent Unsolved Problems
When Different Perspective Needed
Use Codex when:
Don't use Codex when:
Before delegating, check if Codex is available:
which codex
If not installed:
npm i -g @openai/codex
codex auth
Create clear, detailed task description including:
Use when problem requires exploration and iteration:
cd /path/to/project
codex
Then provide detailed context:
I need help with [problem description].
Context:
- [Architecture overview]
- [Relevant constraints]
- [Previous attempts and failures]
The issue is in these files:
- [file1]: [specific problem]
- [file2]: [specific problem]
Goal: [clear success criteria]
Advantages:
/diff/undo/modelUse when problem is clear and specific:
codex exec "detailed task description with full context"
Add flags as needed:
--search - For problems requiring up-to-date library knowledge--full-auto - For trusted, well-scoped tasksUse for problems needing multiple solution attempts:
codex cloud exec --env ENV_ID --attempts 3 "complex problem description"
Advantages:
In interactive mode:
/diff to review changes before accepting/undo if approach is wrong/review to get Codex's own code reviewAfter execution:
If problem persists:
# Resume previous session
codex resume
# Or try different model/reasoning level
codex
/model # Switch to different model or higher reasoning
Scenario: Implementing sophisticated multi-tenant data isolation with complex permission rules.
cd /path/to/project
codex
I need to implement row-level security for a multi-tenant application.
Requirements:
- Each tenant can only access their own data
- Admin users can access all tenants
- Super admins can impersonate any user
- Audit all data access
Current architecture:
- PostgreSQL database
- Node.js/Express backend
- Using Sequelize ORM
Files involved:
- src/middleware/tenancy.js
- src/models/User.js
- src/policies/access-control.js
Previous attempts:
1. Tried global Sequelize scopes - leaked data in JOIN queries
2. Tried middleware checks - inconsistent across endpoints
3. Current approach using hooks - performance issues
Goal: Bulletproof tenant isolation with good performance
Scenario: Race condition causing intermittent failures.
codex exec --search "Debug and fix race condition in payment processing:
Context:
- Stripe webhook handler in src/webhooks/stripe.js
- Order service in src/services/orders.js
- Redis cache for order status
Problem:
- 5% of payments succeed but orders stay in 'pending' state
- Happens only under high load
- Attempted fixes:
1. Added database transaction - didn't help
2. Increased Redis TTL - still fails
3. Added retry logic - made it worse
Stack trace (intermittent):
[paste stack trace]
Need: Root cause analysis and fix with proper synchronization"
Scenario: Optimizing complex matching algorithm.
cd /path/to/project
codex
Need to optimize recommendation engine in src/algorithms/matching.js
Current implementation:
- O(n²) complexity with nested loops
- Processes 10k items in 30 seconds (too slow)
- Need to handle 100k+ items
Constraints:
- Must maintain ranking accuracy
- Memory limit: 2GB
- Real-time updates required
Attempted optimizations:
1. Added caching - helped but not enough
2. Tried batch processing - broke real-time requirement
3. Implemented early termination - minimal impact
Goal: Sub-second processing for 100k items
For extremely complex problems, request higher reasoning effort:
codex
/model # Choose GPT-5 or increase reasoning level
Then provide the complex problem.
Create project-specific guidelines:
codex
/init
Edit AGENTS.md to include:
Add relevant MCP servers for domain-specific knowledge:
codex mcp add <database-schema-server>
codex mcp add <api-documentation-server>
For very difficult problems:
# Try 4 different approaches
codex cloud exec --env ENV_ID --attempts 4 "complex problem"
Resume session when:
Start fresh when:
After Codex provides solution:
Code Review
# In Codex interactive mode
/review
Run Tests
npm test
# or appropriate test command
Performance Testing
Security Review
/undo to rollback/review to get Codex to check its own workThis skill enables seamless AI-to-AI collaboration:
codex exec --full-auto "Debug race condition in payment processing:
[Full context from previous attempts]
[Architecture details]
[Attempted fixes and why they failed]"
Users can also manually invoke Codex following the guidance in this skill for more control over the delegation process.
Codex is cost-effective for:
Use Claude Code instead for:
See references/execution_strategies.md for:
Load this reference when detailed command syntax or advanced patterns are needed.
# Installation
npm i -g @openai/codex
codex auth
# Interactive mode (most common for complex tasks)
cd /path/to/project
codex
# Exec mode with context
codex exec "detailed task with full context"
# Multi-attempt for difficult problems
codex cloud exec --env ENV_ID --attempts 3 "complex task"
# Resume previous session
codex resume
# Key slash commands in interactive mode
/model # Switch models/reasoning
/diff # Review changes
/undo # Rollback
/review # Code review
Track when delegation is effective:
✅ Success indicators:
❌ Failure indicators:
Adjust delegation strategy based on these outcomes.
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/eddiearc-codex-delegator/snapshot"
curl -s "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/contract"
curl -s "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/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/eddiearc-codex-delegator/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/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-16T23:32:47.082Z"
}
},
"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": "seamlessly",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "iterate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "only",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "access",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "impersonate",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "also",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:seamlessly|supported|profile capability:iterate|supported|profile capability:only|supported|profile capability:access|supported|profile capability:impersonate|supported|profile capability:also|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": "Eddiearc",
"href": "https://github.com/eddiearc/codex-delegator",
"sourceUrl": "https://github.com/eddiearc/codex-delegator",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T04:14:25.199Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T04:14:25.199Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "13 GitHub stars",
"href": "https://github.com/eddiearc/codex-delegator",
"sourceUrl": "https://github.com/eddiearc/codex-delegator",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T04:14:25.199Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/eddiearc-codex-delegator/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 codex-delegator and adjacent AI workflows.