coduck
Verified Safeby t3ta
Overview
Orchestrates Codex AI coding jobs using isolated Git worktrees and integrates with Claude Code via MCP server for automated development tasks.
Installation
npm run startSecurity Notes
The system uses `child_process.execFile` for executing external commands (`codex` CLI, `git`), which is safer than `exec` as it prevents shell injection by default. Input validation is performed using Zod schemas for API requests, mitigating common web vulnerabilities. Critically, each AI job runs in an isolated Git worktree, and the `codex` CLI is configured with `sandbox: 'workspace-write'`, limiting AI actions to this confined environment. This significantly reduces the blast radius of any malicious or erroneous AI behavior. However, `approval-policy: 'never'` implies no human intervention during AI execution, relying solely on the sandboxing and post-execution review (e.g., via `push_mode: 'never'` jobs that require manual push). The security of the overall system depends on the robustness of the `codex` CLI and the underlying AI model. The project itself does not require direct `OPENAI_API_KEY` or similar external service credentials; these would typically be configured within the `codex` CLI environment.
Similar Servers
claude-flow
Orchestrates AI agents (Claude) for development workflows, including code generation, testing, analysis, research, and project migration, with MLOps capabilities.
claude-code-subagents-collection
Provides a command-line interface to browse, install, manage, and verify Claude Code subagents, commands, and external MCP (Model Context Protocol) servers, facilitating local and project-level configuration for development workflows.
claude-codex-settings
This repository provides a toolkit and configurations for integrating Model Context Protocol (MCP) servers into Claude Code plugins, enabling AI agents to interact with external services, local tools, and APIs within an AI-assisted development environment.
consult-llm-mcp
Facilitates Claude Code to consult powerful external AI models for complex code analysis, debugging, and review tasks.