Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,36 @@ jobs:

docs_changed=false
docs_only=true
changelog_present=false
changelog_scope_only=true

if [ "${#changed_files[@]}" -eq 0 ]; then
docs_only=false
fi

for file in "${changed_files[@]}"; do
case "$file" in
docs/**|README.md|CONTRIBUTING.md)
docs/**|README.md|CONTRIBUTING.md|CHANGELOG.md)
docs_changed=true
if [ "$file" = "CHANGELOG.md" ]; then
changelog_present=true
else
changelog_scope_only=false
fi
;;
.github/workflows/ci.yml)
;;
*)
docs_only=false
changelog_scope_only=false
;;
esac
done

if [ "$docs_only" != "true" ] && [ "$changelog_present" = "true" ] && [ "$changelog_scope_only" = "true" ]; then
docs_only=true
fi

echo "docs_only=${docs_only}" >> "$GITHUB_OUTPUT"
echo "docs_changed=${docs_changed}" >> "$GITHUB_OUTPUT"

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Repo: https://github.com/openclaw/acpx
- Sync the agent-registry documentation with the live built-in registry, including the current `claude`, `gemini`, and `opencode` commands plus the newer `copilot`, `kiro`, `kilocode`, and `qwen` entries. Thanks @gandli.
- Upgrade `@agentclientprotocol/sdk` to v0.15.0 and align the CLI with the latest ACP client surface.
- Add built-in agent support for Copilot, Kiro CLI, and kilocode.
- Reuse warm queue-owner ACP clients across prompt turns to avoid repeated adapter startup and session reload overhead.
- Lazy-load CLI startup modules and fast-path `--version` to reduce one-shot command startup cost.
- Improve runtime performance and queue coordination.
- Expand direct ACP client, prompt runner, permission, session runtime, and adapter coverage, and enforce coverage in CI.
- Add Dependabot configuration.
Expand Down