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

acpx-agent-playbookacpx Agent 手册

Agent Skill

acpx-agent-playbook 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,413

周安装

297

GitHub Stars

公开资料未说明

下载量

2,781
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install acpx-agent-playbook

简介

acpx-agent-playbook 用于补充开发相关能力。

  • 适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。
  • 通过 clawhub 安装,结合来源仓库 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
acpx-agent-playbook
description
Practical playbook for running agents through acpx in persistent sessions, especially when Claude, Codex, Pi, Gemini, OpenCode, or other ACP-compatible agents need reliable file creation, local installs, shell-based writes, or structured deliverables such as PPTX, reports, generated assets, and multi-step coding work. Use when work should be done via acpx rather than direct edits, or when prior acpx attempts failed because of quoting, session mode, permission policy, fs/write_text_file issues, sandbox boundaries, agent-specific CLI differences, or confusion about full-access vs true system privilege.

acpx-agent-playbook

Use acpx as a structured control plane for delivery-oriented agent work. Prefer persistent sessions, prompt files, explicit validation, and shell/Python fallback writes over fragile one-shot prompts and optimistic tool assumptions.

Quick start

Run this default flow for any non-trivial task:

acpx <agent> sessions new --name task
acpx <agent> set-mode -s task full-access
acpx <agent> -s task -f prompt.txt

Replace <agent> with codex, claude, pi, gemini, opencode, or another supported agent.

Prefer this over acpx <agent> exec ... when the task needs iteration, file output, validation, or retries.

Workflow

1. Choose agent deliberately

Pick the agent based on workflow risk, not branding preference alone.

Default heuristics in this workspace:

  • Codex: safest default for deadline-sensitive artifact delivery and multi-step coding work
  • Claude: acceptable when freshly re-verified for text + file writes + target artifact flow
  • Other agents: treat as unverified until they pass the same smoke tests

If reliability matters more than style, prefer the agent with the freshest passing artifact-generation proof in the current environment.

2. Choose session type

Use exec only for small one-shot tasks.

Use a persistent session when the task involves any of the following:

  • generating files
  • multiple retries
  • long prompts
  • validation steps
  • local installs or virtual environments
  • deliverables such as .pptx, .docx, reports, videos, or scripts

3. Set mode explicitly

For practical work, set mode before prompting:

acpx <agent> set-mode -s task full-access

Interpretation:

  • read-only: inspect only
  • auto: moderate default behavior
  • full-access: broader session capability, including easier file edits and broader path/network freedom

Do not assume full-access means sudo or root. It relaxes the ACP session; it does not guarantee system-level privilege escalation.

4. Use prompt files, not huge shell strings

For long or delicate instructions, always write a prompt file and pass -f:

cat > prompt.txt <<'TXT'
Task: ...
Constraints: ...
Outputs: ...
Validation: ...
TXT

acpx <agent> -s task -f prompt.txt

This avoids shell quoting failures and makes retries reproducible.

5. Check permission policy before blaming the agent

If the agent can answer text but cannot write files, inspect acpx permission configuration first.

In this workspace, a blocking configuration was:

{
  "defaultPermissions": "approve-reads",
  "nonInteractivePermissions": "fail"
}

A working baseline for non-interactive delivery flows was:

{
  "defaultPermissions": "approve-all",
  "nonInteractivePermissions": "deny"
}

Do not assume the failure is prompt quality or provider incompatibility until this is checked.

6. Respect agent-specific CLI differences

Do not assume all agents accept the same flags on the same subcommand.

Example from this environment:

  • top-level acpx supports --cwd
  • acpx claude may reject --cwd on the agent subcommand

If a command fails before the model meaningfully starts, verify CLI shape before diagnosing provider or model problems.

7. Prefer shell/Python file writes over ACP fs writes when needed

If the task must create or rewrite files, instruct the agent to prefer:

  • shell heredocs
  • python - <<'PY' ... PY
  • direct command-line generation

Prefer these over tool-native fs/write_text_file style edits when prior attempts showed permission failures.

Recommended instruction snippet:

If built-in file-editing tools fail, write files via shell heredoc or Python scripts instead of ACP fs write calls.

8. Use writable output paths first

For fragile generation tasks, write outputs under /tmp first, validate them, then move/copy them into the target workspace.

Recommended pattern:

  • generate under /tmp/...
  • validate structure and existence
  • copy to final destination only after success

This is especially useful for generated binaries like .pptx.

9. Validate before declaring success

Always ask the agent to verify outputs.

Examples:

  • file exists
  • zip/XML structure parses for .pptx
  • image dimensions or PDF page count
  • report file with output path, validation result, and model if visible

Practical patterns

Pattern: generated deliverables

For PPT/report/document generation, require all of the following in the prompt:

  • exact output path
  • exact report path if needed
  • validation steps
  • final short summary with model/path if possible

See references/ppt-playbook.md for a concrete template.

Pattern: local dependency installs

If non-stdlib packages are needed, prefer project-local installs:

python3 -m venv .venv
. .venv/bin/activate
pip install <package>

Avoid assuming global install rights. Use system-level installs only when explicitly intended and actually permitted by the host.

Pattern: re-verification ladder for a new agent/provider

Before trusting a new agent or relay for delivery work, run this sequence:

  1. fixed-text response
  2. minimal file-write task
  3. one real artifact task

If any stage fails, do not market the path as production-ready.

Decision rules

  • If the task is small and read-heavy: exec is acceptable.
  • If the task must create deliverables: use a persistent session.
  • If the prompt is long: use -f prompt.txt.
  • If file editing fails once: inspect permissions, then switch to shell/Python write strategy.
  • If dependencies are missing: try local .venv install before changing system state.
  • If a binary artifact is required: generate in /tmp, validate, then move.
  • If one agent is flaky and the user still needs a real artifact fast, route the deliverable to the currently verified agent instead of burning retries.

Anti-patterns

Avoid these common failure modes:

  • stuffing long multilingual prompts directly into one shell string
  • assuming full-access equals sudo/root
  • relying only on ACP fs writes for large generated files
  • declaring success before validating output structure
  • writing the final artifact directly into a path that may be sandbox-restricted
  • assuming one agent's CLI flags or permission behavior apply to all other agents

References

  • Read references/ppt-playbook.md when the task is to generate a PPT or similar structured binary deliverable via acpx.
  • Read references/troubleshooting.md when acpx sessions start but file creation, mode behavior, permissions, or sandbox boundaries are unclear.
  • Read references/provider-compat.md when comparing agents for provider compatibility, relay flakiness, file-write reliability, or ACPX permission confusion.
  • Read references/agent-matrix.md when you need a quick choice among Codex, Claude, and other agents for delivery work in this workspace.
  • Read references/migration.md when older prompts, habits, or automations still mention acpx-codex-playbook and you need to preserve compatibility while using the new canonical skill.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

84.06%
按下载量换算2,338

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install acpx-agent-playbook 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills