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

use-acpx使用 acpx

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

537

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/fradser/dotclaude --skill use-acpx

简介

该技能用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适用于需要围绕仓库状态、代码变更或协作事项进行整理的场景。
  • 可在 Codex、Claude、Cursor、Gemini CLI 等宿主环境中使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 使用前需确认权限范围、维护状态及是否触发联网或文件操作。

SKILL.md

acpx

CRITICAL: Background Execution Required

MUST use run_in_background: true for ALL acpx bash commands. Running acpx in the foreground will block Claude Code and make the session unusable.

When executing any acpx command:

{
  "command": "acpx codex 'your prompt here'",
  "run_in_background": true
}

Failure to run in background will cause Claude Code to block indefinitely while waiting for the agent to complete.

What acpx is

acpx is a headless, scriptable CLI client for the Agent Client Protocol (ACP). It is built for agent-to-agent communication over the command line and avoids PTY scraping.

WARNING: Never use Claude-related ACP agents with acpx. Using Claude to call Claude creates recursive loops and unpredictable behavior. Use alternative agents like codex, openclaw, gemini, etc.

Core capabilities:

  • Persistent multi-turn sessions per repo/cwd
  • One-shot execution mode (exec)
  • Named parallel sessions (-s/--session)
  • Queue-aware prompt submission with optional fire-and-forget (--no-wait)
  • Cooperative cancel command (cancel) for in-flight turns
  • Graceful cancellation via ACP session/cancel on interrupt
  • Session control methods (set-mode, set <key> <value>)
  • Agent reconnect/resume after dead subprocess detection
  • Prompt input via stdin or --file
  • Config files with global+project merge and config show|init
  • Session metadata/history inspection (sessions show, sessions history)
  • Local agent process checks via status
  • Stable ACP client methods for filesystem and terminal requests
  • Stable ACP authenticate handshake via env/config credentials
  • Structured streaming output (text, json, quiet)
  • Built-in agent registry plus raw --agent escape hatch

Install

npm i -g acpx

For normal session reuse, prefer a global install over npx.

Command model

prompt is the default verb. Commands follow this shape:

acpx [global_options] [<agent>] [verb] [prompt_options] [prompt_text...]

Verbs: prompt (default), exec, cancel, set-mode, set, status, sessions, config. When prompt text is omitted and stdin is piped, acpx reads from stdin. For the full grammar, see ./references/cli.md.

Built-in agent registry

IMPORTANT: Do NOT use Claude-related ACP agents (e.g., claude, @zed-industries/claude-agent-acp). These create recursive agent-calling-agent scenarios that can cause infinite loops or unexpected behavior.

Friendly agent names resolve to commands:

  • pi -> npx pi-acp
  • openclaw -> openclaw acp
  • codex -> npx @zed-industries/codex-acp
  • gemini -> gemini --acp
  • cursor -> cursor-agent acp
  • copilot -> copilot --acp --stdio
  • droid -> droid exec --output-format acp
  • kimi -> kimi acp
  • opencode -> npx -y opencode-ai acp
  • kiro -> kiro-cli acp
  • kilocode -> npx -y @kilocode/cli acp
  • qwen -> qwen --acp

Rules:

  • Default agent is codex for top-level prompt, exec, and sessions.
  • Unknown positional agent tokens are treated as raw agent commands.
  • --agent <command> explicitly sets a raw ACP adapter command.
  • Do not combine a positional agent and --agent in the same command.

Commands

Prompt (default, persistent session)

acpx codex 'fix flaky tests'             # implicit prompt
acpx codex prompt 'fix flaky tests'      # explicit
acpx prompt 'fix flaky tests'            # defaults to codex

Auto-resumes the saved session for scope (agentCommand, cwd, name?). Exits code 4 if no session exists — run sessions new first. Queue-aware: submits to running queue owner when a prompt is already in flight. On interrupt, sends ACP session/cancel before force-kill.

Prompt options: -s/--session <name>, --no-wait, -f/--file <path>.

Exec (one-shot)

acpx codex exec 'summarize this repo'

Runs a single prompt in a temporary session; does not reuse or persist session state.

Cancel / Mode / Set

acpx codex cancel
acpx codex set-mode auto
acpx codex set approval_policy conservative

cancel sends cooperative session/cancel via IPC. set-mode calls ACP session/set_mode (mode ids are adapter-defined). set calls ACP session/set_config_option. Both route through queue-owner IPC when active.

Sessions

acpx sessions list
acpx sessions new [--name <name>]
acpx sessions close [name]
acpx sessions show [name]
acpx sessions history [name] [--limit <count>]
acpx status

acpx codex sessions new --name backend
acpx codex sessions close backend
acpx codex sessions show backend
acpx codex sessions history backend --limit 20
acpx codex status

Key behaviors: sessions and sessions list are equivalent. new creates a fresh session for the current scope; if an open session already exists in that scope, it is soft-closed. show [name] prints metadata; history [name] prints turn previews (default 20).

For the complete subcommand list including ensure, all flags, global options, config keys, session scoping rules, queueing internals, output format details, permission modes, and exit codes, see ./references/cli.md.

Global options (summary)

  • --agent <command>: raw ACP command (escape hatch)
  • --cwd <dir>: working directory for session scope
  • --approve-all / --approve-reads (default) / --deny-all: permission mode (mutually exclusive)
  • --format <fmt>: text (default), json, quiet
  • --timeout <seconds> / --ttl <seconds>: timing controls (TTL default 300s)
  • --verbose: ACP/debug logs to stderr

Reference summary

Config files: merged in order — ~/.acpx/config.json (global), <cwd>/.acpxrc.json (project). Key settings: defaultAgent, defaultPermissions, ttl, timeout, format, agents map, auth map. Run acpx config show to inspect; acpx config init to create global template.

Session behavior: sessions scoped by agentCommand + absolute cwd + optional name. Records in ~/.acpx/sessions/*.json. Prompt mode auto-resumes by walking up to git root; exits code 4 if no session found (run sessions new). Dead PIDs are respawned. Use -s/--session <name> for parallel conversations.

Prompt queueing: the first acpx process for a session becomes the queue owner; others submit over local IPC. Default: wait for completion. --no-wait: return after enqueue. Ctrl+C sends ACP session/cancel before force-kill. Owner shuts down after TTL idle (default 300s).

Output formats: --format text (default) human-readable stream, --format json NDJSON for automation, --format quiet final text only, --json-strict suppresses non-JSON stderr.

Permission modes: choose one — --approve-all, --approve-reads (default), --deny-all. If all requests are denied/cancelled and none approved, acpx exits with permission-denied status.

For full details on all options, subcommands, exit codes, and IPC internals, see ./references/cli.md.

Practical workflows

Persistent repo assistant (multi-turn):

acpx codex 'inspect failing tests and propose a fix plan'
acpx codex 'apply the smallest safe fix and run tests'

Parallel named sessions + queued follow-up:

acpx codex -s backend 'fix API pagination bug'
acpx codex -s docs 'draft changelog entry for release'
acpx codex --no-wait 'after tests, summarize root causes and next steps'

One-shot and automation:

acpx --format quiet exec 'summarize repo purpose in 3 lines'
acpx --format json codex 'review current branch changes' > events.ndjson
acpx --cwd ~/repos/shop --approve-all codex -s pr-842 \
  'review PR #842 for regressions and propose minimal patch'

For more examples including stdin/file prompts, session management, and JSON automation pipelines, see ./references/cli.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.39%
按下载量换算29

Claude

32.88%
按下载量换算29

Cursor

18.34%
按下载量换算16

Gemini CLI

10.21%
按下载量换算9

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/fradser/dotclaude --skill use-acpx 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills