openclaw - 💡(How to fix) Fix [Bug]: acpx flow missing subcommands: list, status, cancel, inspect, logs [2 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openclaw/openclaw#77695Fetched 2026-05-06 06:22:56
View on GitHub
Comments
2
Participants
2
Timeline
3
Reactions
2
Timeline (top)
commented ×2closed ×1

Code Example

acpx --version
# 0.6.1

acpx flow --help
# Usage: acpx flow [options] [command]
# Commands:
#   run [options] <file>  Run a flow file
#   help [command]        display help for command

for cmd in list status cancel inspect logs; do
  acpx flow $cmd --help
done
# All return: Usage: acpx flow [options] [command] (same as --help, no subcommand recognized)

---

acpx flow list     → unrecognized (shows generic flow help)
acpx flow status   → unrecognized
acpx flow cancel   → unrecognized
acpx flow inspect  → unrecognized
acpx flow logs     → unrecognized

---

acpx: 0.6.1
OpenClaw: 2026.5.3-1 (2eae30e)
OS: Linux 6.8.0-110-generic (x64, Ubuntu)
Install: npm global
RAW_BUFFERClick to expand / collapse

Describe the bug

acpx flow in 0.6.1 only has two subcommands: run and help. The following flow management subcommands appear to be referenced in the documentation at https://docs.openclaw.ai/cli/acp and https://docs.openclaw.ai/tools/acp-agents but do not exist:

  • acpx flow list
  • acpx flow status
  • acpx flow cancel
  • acpx flow inspect
  • acpx flow logs

To Reproduce

acpx --version
# 0.6.1

acpx flow --help
# Usage: acpx flow [options] [command]
# Commands:
#   run [options] <file>  Run a flow file
#   help [command]        display help for command

for cmd in list status cancel inspect logs; do
  acpx flow $cmd --help
done
# All return: Usage: acpx flow [options] [command] (same as --help, no subcommand recognized)

Expected behavior

Flow management subcommands (list, status, cancel, inspect, logs) should exist as implied by https://docs.openclaw.ai/cli/acp, or the documentation should clarify they are not yet implemented.

Actual behavior

acpx flow list     → unrecognized (shows generic flow help)
acpx flow status   → unrecognized
acpx flow cancel   → unrecognized
acpx flow inspect  → unrecognized
acpx flow logs     → unrecognized

Only acpx flow run <file> and acpx flow help work.

System Information

acpx: 0.6.1
OpenClaw: 2026.5.3-1 (2eae30e)
OS: Linux 6.8.0-110-generic (x64, Ubuntu)
Install: npm global

extent analysis

TL;DR

The missing subcommands in acpx flow suggest a potential documentation mismatch or an incomplete implementation in version 0.6.1.

Guidance

  • Review the documentation at https://docs.openclaw.ai/cli/acp and https://docs.openclaw.ai/tools/acp-agents to confirm if the missing subcommands are indeed part of the intended functionality.
  • Check for any release notes or changelogs for acpx version 0.6.1 to see if the subcommands were intentionally removed or are planned for a future release.
  • Consider reaching out to the developers or community support for acpx to inquire about the status of the missing subcommands.
  • If the subcommands are crucial for your workflow, explore alternative versions of acpx or tools that offer similar functionality.

Example

No specific code example is applicable in this case, as the issue revolves around missing subcommands rather than code implementation.

Notes

The solution to this issue may involve updating documentation, waiting for a future release that includes the missing subcommands, or finding alternative tools that support the needed functionality.

Recommendation

Apply workaround: Given the information, it seems that waiting for an update or using an alternative might be necessary since the subcommands are not available in the current version.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

Flow management subcommands (list, status, cancel, inspect, logs) should exist as implied by https://docs.openclaw.ai/cli/acp, or the documentation should clarify they are not yet implemented.

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

openclaw - 💡(How to fix) Fix [Bug]: acpx flow missing subcommands: list, status, cancel, inspect, logs [2 comments, 2 participants]