AnEntrypoint

Codemode Agent — AI skill for Claude Code

AI community

Advanced AI agent framework with MCP integration.

How to install Codemode Agent

This entry records only its repository, not the path inside it, so there is no exact command to give. Open AnEntrypoint/codemode-agent and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Codemode Agent does

Advanced AI agent framework with MCP integration.

Alternatives in AI

  • Codex — openai-codex Adversarial code review, Codex CLI integration, cross-model analysis 9.6k ★
  • Cursor Talk To Figma MCP — TalkToFigma: MCP integration between AI Agent (Cursor, Claude Code, Codex) and Figma, allowing Agentic AI to c 7k ★
  • Hindsight — State-of-the-art long-term memory for AI agents by Vectorize 6.7k ★

README

CodeMode Agent

A Claude agent with an execute tool that provides programmatic access to file operations, system commands, and MCP tools. Features interactive mode with real-time typing, persistent execution context, and seamless integration with multiple MCP servers.

Features

  • Interactive Mode: Real-time command input with Escape key to hide/show typing prompt
  • Execute Tool: Run JavaScript code with persistent context across executions
  • Built-in Functions: Read, Write, Edit, Glob, Grep, Bash, LS, WebFetch, WebSearch, TodoWrite
  • MCP Integration: Glootie, Playwright, and Vexify tools available as functions
  • Persistent Context: Variables persist across execute calls within the same session
  • Signal Handling: Proper Ctrl-C support for graceful shutdown
  • Syntax Highlighting: Colorized code blocks and formatted output
  • Extended Thinking: 10,000 token thinking budget with real-time streaming

Installation

npm install -g codemode-agent

Or use with npx (no installation required):

npx codemode-agent --agent "Your task here"

Usage

CodeMode supports two modes: **Agent Mode** (interactive) and **MCP Server Mode**.

Agent Mode (Interactive)

Run Claude agent with execute tool for autonomous task completion:

# Interactive mode (default)
codemode-agent --agent "Create a React component"

# Single execution mode (non-interactive)
codemode-agent --agent "Fix bugs" --no-interactive

# Using npx
npx codemode-agent --agent "Your task here"

Interactive Mode Features

  • Type anytime: Start typing to show the input prompt automatically
  • Escape key: Press Escape to hide the typing prompt
  • Ctrl-C: Gracefully exit at any time
  • Streaming output: Watch the agent think and work in real-time

MCP Server Mode

Start the MCP server that provides the execute tool:

# Start MCP server
codemode-agent --mcp

# Using npx
npx codemode-agent --mcp

# Disable external MCP