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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ This project follows [Semantic Versioning](https://semver.org/). During alpha (`

---

## [v0.2.13] — 2026-04-03

### Added
- **`axme intents cleanup --status`** — filter which statuses to target during bulk cleanup (default: DELIVERED, WAITING, IN_PROGRESS, SUBMITTED, ACKNOWLEDGED). (#83)

### Changed
- **Bulk cleanup timeout increased** — HTTP timeout for `axme intents cleanup` raised from 60s to 300s to handle large batches without hanging. (#83)

---

## [v0.2.12] — 2026-03-31

### Added
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,13 @@ axme intents watch <intent_id> # stream live state events
axme intents cancel <intent_id>
axme intents retry <intent_id>
axme intents resume <intent_id>

# Bulk cleanup stale/zombie intents
axme intents cleanup --dry-run # preview what would be canceled
axme intents cleanup --dry-run=false # execute cancellation
axme intents cleanup --status IN_PROGRESS,WAITING # target specific statuses
axme intents cleanup --older-than 12 # inactive for >12 hours
axme intents cleanup --limit 100 --reason "cleanup" # with limit and audit reason
```

### Human Tasks
Expand Down
Loading