Token导航 LogoToken导航TokenDH.com
开发权限需确认github未标认证来源可访问许可证需确认审计提醒

codeyecodeye 命令行

Agent Skill

codeye 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

238

周安装

10

GitHub Stars

2

下载量

83
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:codeye(codeye 命令行)
来源仓库:https://github.com/one710/codeye
仓库路径:skills/codeye
安装命令:
npx skills add https://github.com/one710/codeye --skill codeye
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/one710/codeye --skill codeye

简介

codeye 运行 ACP 兼容的编码代理,支持持久化会话管理。

  • 可创建 Cursor 会话或通过 CLI 发送 prompt 指令。
  • 需先安装 Go 语言环境并编译二进制文件至 PATH。
  • 每个会话生成唯一 ID,便于后续状态查询与控制。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • codeye 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

codeye Skill

Use codeye to run ACP-compatible coding agents (Cursor or custom adapters) from CLI with persistent sessions.

Install

go install github.com/one710/codeye/cmd/codeye@latest

Or from local source:

go build -o /usr/local/bin/codeye ./cmd/codeye

Quick start

codeye cursor sessions new                    # Creates session, prints session ID
codeye cursor prompt <session-id> "review this repository and suggest fixes"
codeye cursor status <session-id>

CLI shape

codeye supports:

codeye [global-options] [agent] <command> [command-args]
  • agent is optional and defaults to configured defaultAgent (usually cursor).
  • Built-in agent: cursor.
  • Any custom ACP command can be used with --agent.

Commands

  • prompt <session-id> <text...>: send prompt to an existing session.
  • exec <text...>: one-shot prompt (creates ephemeral session, runs, exits; no persistence).
  • cancel <session-id>: cooperative cancel for in-flight prompt.
  • set-mode <session-id> <mode>: set session mode (capability-gated by agent).
  • set <session-id> <key> <value>: set session config option (capability-gated by agent).
  • status <session-id>: session status (session, closed, or not-found).
  • config: show resolved config.
  • sessions:

- sessions or sessions list - sessions new - sessions show <session-id> - sessions close <session-id>

Global options

  • --cwd <path>: run in specific working directory.
  • --agent "<command...>": custom ACP-compatible adapter command.
  • --format <text|json|json-strict|quiet>: output format.
  • --json-strict: alias for strict JSON output mode.
  • --audio <path>: add audio file to prompt/exec (repeatable;.wav,.mp3,.ogg,.flac,.m4a).
  • --image <path>: add image file to prompt/exec (repeatable;.png,.jpg,.gif,.webp).
  • --approve-all: allow all ACP tool requests.
  • --approve-reads: allow read-only tool requests, deny writes.
  • --deny-all: deny all ACP tool requests.
  • --version, -V: print codeye version.

Agent selection

  • codeye cursor... uses Cursor ACP adapter command from config.
  • codeye --agent "<custom-acp-command>"... uses any ACP-compatible command.

Permissions and output modes

  • --approve-all allow all ACP tool requests.
  • --approve-reads allow read-only tool requests and deny writes.
  • --deny-all deny all tool requests.
  • --format json machine-readable output events.
  • --format json-strict JSON-only output (safe for orchestrators).

Session workflow

SID=$(codeye cursor sessions new | jq -r .sessionId)   # or parse from output
codeye cursor prompt $SID "implement a failing test fix"
codeye cursor set-mode $SID plan
codeye cursor set $SID reasoning_effort high
codeye cursor cancel $SID
codeye cursor sessions close $SID

Session management examples

# list local session ids and remote sessions (if agent supports session/list)
codeye cursor sessions list --format json

# show session metadata
codeye cursor sessions show <session-id>

# close session
codeye cursor sessions close <session-id>

One-shot workflow (exec)

codeye cursor exec "summarize this repository"
codeye --agent "my-acp-adapter --stdio" exec "run a quick code review"

Image and audio in prompt/exec

Place --image and --audio before the command. You can pass one or many files; they are sent as content blocks with the text prompt.

One image with text (exec):

codeye --image screenshot.png exec "what is shown in this screenshot? list the main UI elements"

One image with text (prompt):

SID=$(codeye cursor sessions new | jq -r .sessionId)
codeye --image diagram.png cursor prompt $SID "explain this diagram and suggest improvements"

Multiple images with text:

codeye --image before.png --image after.png exec "compare these two screenshots and describe what changed"
codeye --image fig1.png --image fig2.png cursor prompt $SID "summarize the flow in these two figures"

Audio with text (e.g. transcription or analysis):

codeye --audio meeting.wav exec "transcribe this and list action items"
codeye --audio intro.mp3 --audio outro.mp3 cursor prompt $SID "do these two clips sound consistent in tone?"

Image and audio together:

codeye --image slide.png --audio narration.wav exec "align this slide with the narration and suggest edits"

Supported image extensions: .png, .jpg, .jpeg, .gif, .webp. Audio: .wav, .mp3, .ogg, .flac, .m4a. The agent must advertise the corresponding prompt capabilities (image/audio) in initialization.

Config file

Global config path: ~/.codeye/config.json

{
  "defaultAgent": "cursor",
  "format": "text",
  "permissionMode": "approve-reads",
  "nonInteractivePermissions": "deny",
  "queueTTLSeconds": 60,
  "queueMaxDepth": 32,
  "authPolicy": "skip",
  "auth": {},
  "agents": {
    "cursor": { "command": "agent", "args": ["acp"] }
  }
}

Each agent can optionally set initializeTimeout and newSessionTimeout (seconds). Project-local override file: .codeye.json in repo root or current working directory.

Non-interactive automation pattern

SID=$(codeye --format json cursor sessions new | jq -r .sessionId)
codeye --format json-strict --approve-all cursor prompt $SID "apply the patch and run tests"
codeye cursor sessions close $SID

Output and error behavior

  • --format json and --format json-strict emit machine-readable JSON events.
  • Errors in JSON modes are emitted as JSON-RPC style error objects.
  • json-strict suppresses non-JSON human help output and is best for orchestration.

ACP session flow

  • sessions new creates a new session and prints its session ID. All session-scoped commands (prompt, cancel, set-mode, set, status, sessions show, sessions close) require that session ID.
  • exec is one-shot: creates ephemeral session, runs prompt, exits. No persistence, no session ID needed.
  • Session-based flow is exec broken down: sessions newprompt → … → sessions close.

Notes for coding agents

  • Use sessions new to create a session, then pass the session ID to prompt, cancel, set-mode, set, status, sessions show, sessions close.
  • Prefer exec for stateless single-turn tasks (no session management).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.88%
按下载量换算30

Claude

31.85%
按下载量换算26

Cursor

19.66%
按下载量换算16

Gemini CLI

9.34%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills