CodexPotter

作者 breezewish已验证

A better /goal

627
Stars
56
Forks
JavaScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/breezewish/CodexPotter

快速入门

使用 CodexPotter 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

CodexPotter banner

CodexPotter screenshot

💡 Why CodexPotter

Platform npm CI License LinuxDo

CodexPotter continuously reconciles code base toward your instructed state (Ralph Wiggum pattern):

  • 🤖 Codex-first — Codex subscription is all you need; no extra LLM needed.
  • 🧭 Auto-review / reconcile — Review and polish multi rounds until fully aligned with your instruction.
  • 💦 Clean-room — Use clean context in each round, avoid context poisoning, maximize IQ.
  • 🎯 Attention is all you need — Keep you focused on crafting tasks, instead of cleaning up unfinished work.
  • 🚀 Never worse than Codex — Drive Codex, nothing more; no business prompts which may not suit you.
  • 🧩 Seamless integration — AGENTS.md, skills & MCPs just work™ ; opt in to improve plan / review.
  • 🧠 File system as memory — Store instructions in files to resist compaction and preserve all details.
  • 🪶 Tiny footprint — Use <1k tokens, ensuring LLM context fully serves your business logic.
  • 📚 Built-in knowledge base — Keep a local KB as index so Codex learns project fast in clean contexts.

👀 How does it work


                                                  𝒀𝑶𝑼𝑹 𝑷𝑹𝑶𝑴𝑷𝑻:
                                                  𝘚𝘪𝘮𝘱𝘭𝘪𝘧𝘺 𝘵𝘩𝘦 𝘲𝘶𝘦𝘳𝘺 𝘦𝘯𝘨𝘪𝘯𝘦 𝘣𝘺 𝘧𝘰𝘭𝘭𝘰𝘸𝘪𝘯𝘨 ...
                                                                 │
                                                                 │
     codex: Work or review according to MAIN.md                  │
            ┌──────────────────────────┐                         │
            │                          │                         ▼
  ┌─────────┴─────────┐     ┌──────────▼────────┐       ┌───────────────────┐
  │    CodexPotter    │     │       codex       │◄─────►│      MAIN.md      │
  └─────────▲─────────┘     └──────────┬────────┘       └───────────────────┘
            │                          │
            │      Work finished       │
            └──────────────────────────┘

✨ What's New

⚡️ Getting started

1. Prerequisites: ensure you have codex CLI locally. CodexPotter drives your local codex to perform tasks.

2. Install CodexPotter via npm or bun:

# Install via npm
npm install -g codex-potter
# Install via bun
bun install -g codex-potter

3. Run: Start CodexPotter in your project directory, just like Codex:

# --yolo is recommended to be fully autonomous
codex-potter --yolo

⚠️ Note: Unlike Codex, every follow up prompt turns into a new task, not sharing previous contexts. Assign tasks to CodexPotter, instead of chat with it.

⚠️ Note: CodexPotter is not a replacement for codex, because CodexPotter is a loop executor — it executes tasks instead of chatting with you. See below for details.

Tips

Prompt Examples

✅ tasks with clear goals or scopes:

  • "port upstream codex's /resume into this project, keep code aligned"

✅ persist results to review in later rounds:

  • "create a design doc for ... in DESIGN.md"

❌ interactive tasks with human feedback loops:

CodexPotter is not suitable for such tasks, use codex instead:

  • Front-end development with human UI feedback
  • Question-answering
  • Brainstorming sessions

Howto

Ask followup questions in codex

Just pass the project file to codex, like:

based on .codexpotter/projects/2026/03/18/1/MAIN.md,
please explain more about the root cause of the issue
Plan and execute

Simpliy queue two tasks in CodexPotter, one is plan, one is implement, CodexPotter will execute one by one, for example:

Task prompt 1 (CodexPotter):

Analyze the codebase, research and design a solution for introducing subscription system.
Output plan to docs/subscription_design.md.

Your solution should meet the following requirements: ...

Do not implement the plan, just design a good and simple solution.

↑ Your existing facility to write good plans will be utilized, including skills, plan doc principles in AGENTS.md, etc. Writing plan to a file is CRITICAL so that the plan can be iterated multiple rounds and task 2 can pick it up.

Task prompt 2 (CodexPotter):

Implement according to docs/subscription_design.md

Make sure all user journeys are properly covered by e2e tests and pass.

If you even don't know what you are designing for, just discuss with codex to carry out a basic plan first, then use CodexPotter to continously polish and implement it.

Configuration

Other Features

  • --xmodel (experimental): Use gpt-5.2 first, then use gpt-5.5 to cross review gpt-5.2's work in later rounds. In clear coding tasks this may produce better results than only using gpt-5.2 or gpt-5.5.

  • /yolo: Toggle whether YOLO (no sandbox) is enabled by default for all sessions.

  • /list or ctrl+l: View all projects (tasks) and their results.

Roadmap

  • Skill popup
  • Resume (history replay + continue iterating)
  • Better handling of stream disconnect / similar network issues
  • Agent-call friendly (non-interactive exec and resume)
  • Interoperability with codex CLI sessions (for follow-up prompts)
  • Better plan / user selection support
  • Better sandbox support

Development

# Formatting
cargo fmt

# Lints
cargo clippy

# Tests
cargo nextest run

# Build
cargo build

Community & License

  • This project is community-driven fork of openai/codex repository, licensed under the same Apache-2.0 License.

常见问题

What is CodexPotter?

CodexPotter is an open-source cli tools skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by breezewish. A better /goal. It has 627 GitHub stars.

Is CodexPotter safe to use?

Yes. CodexPotter passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install CodexPotter?

Clone the repository with "git clone https://github.com/breezewish/CodexPotter" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is CodexPotter written in?

CodexPotter is primarily written in JavaScript. It is open-source under breezewish on GitHub, so you can review or fork the full source.

Are there alternatives to CodexPotter?

Yes. SkillsLLM lists many other CLI Tools skills you can browse and compare side by side. Open the CLI Tools category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh CodexPotter against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ui-ux-pro-max-skill

by nextlevelbuilder

12

An AI skill that provides design intelligence for building professional UI/UX across multiple platforms.

119,92012,870Python
CLI 工具ai-skillsantigravity
查看详情

happy

by slopus

Mobile and Web client for Codex and Claude Code, with realtime voice, encryption and fully featured

23,4501,980TypeScript
CLI 工具
查看详情

claudecodeui

by siteboon

Use Claude Code, OpenCode, Cursor CLI, and Codex on mobile and web with CloudCLI (aka Claude Code UI). CloudCLI is a free open source webui/GUI that helps you manage your Claude Code session and projects remotely.

13,3941,866TypeScript
CLI 工具
查看详情

CRS-自建Claude Code镜像,一站式开源中转服务,让 Claude、OpenAI、Gemini、Droid 订阅统一接入,支持拼车共享,更高效分摊成本,原生工具无缝使用。

12,5471,869JavaScript
CLI 工具
查看详情

ccstatusline

by sirmalloc

🚀 Beautiful highly customizable statusline for Claude Code CLI with powerline support, themes, and more.

12,508545TypeScript
CLI 工具
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情
CodexPotter — Claude Code AI Skill | SkillTip