Skip to content

Commit a91adfc

Browse files
committed
Release v0.4.1
1 parent 623cd45 commit a91adfc

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.1] - 2026-02-06
11+
12+
### Added
13+
- Discord gateway (`agnx-gateway-discord`)
14+
- Supports both built-in (feature flag) and subprocess modes
15+
- Serenity 0.12 for Discord API (websocket gateway + HTTP)
16+
- Button components for approval flow (inline keyboard)
17+
- Message chunking at 2000 char limit
18+
- Reply support via message references
19+
- Capabilities: edit, delete, typing, reply, inline keyboard
20+
- Typing indicator during message processing (all gateways)
21+
22+
### Fixed
23+
- Memory tools (`remember`, `reflect`) now handle non-standard LLM argument formats gracefully
24+
- Schedule tool descriptions reworded to steer models toward `at` for one-shot reminders
25+
- Debug logging added to tool executor for diagnosing argument format issues
26+
1027
## [0.4.0] - 2026-02-06
1128

1229
### Added
@@ -135,7 +152,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
135152
- Project documentation (architecture, API reference, deployment guide)
136153
- Agnx Agent Format (AAF) specification
137154

138-
[Unreleased]: https://github.com/AgnxAI/agnx/compare/v0.4.0...HEAD
155+
[Unreleased]: https://github.com/AgnxAI/agnx/compare/v0.4.1...HEAD
156+
[0.4.1]: https://github.com/AgnxAI/agnx/compare/v0.4.0...v0.4.1
139157
[0.4.0]: https://github.com/AgnxAI/agnx/compare/v0.3.0...v0.4.0
140158
[0.3.0]: https://github.com/AgnxAI/agnx/compare/v0.2.0...v0.3.0
141159
[0.2.0]: https://github.com/AgnxAI/agnx/compare/v0.1.0...v0.2.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88
]
99

1010
[workspace.package]
11-
version = "0.4.0"
11+
version = "0.4.1"
1212
edition = "2024"
1313
license = "MIT"
1414
repository = "https://github.com/AgnxAI/agnx"

docs/PROJECT_STATUS.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,10 @@ Key specs and design docs:
8383
- [x] Directives system (workspace + agent scoped, file-based)
8484
- [x] Checkpoint-based snapshots for session persistence
8585

86-
### v0.4.1 — Discord Gateway
87-
- [ ] First-party plugin: agnx-gateway-discord
86+
### v0.4.1 — Discord Gateway ✓
87+
- [x] First-party plugin: agnx-gateway-discord
88+
- [x] Typing indicator during message processing
89+
- [x] Memory tool robustness improvements
8890

8991
### v0.5.0 — Context & Observability
9092
- [ ] Context window management
@@ -137,6 +139,12 @@ Key specs and design docs:
137139

138140
## Recent Accomplishments
139141

142+
- **Discord gateway** — Second platform gateway, mirroring Telegram patterns
143+
- Built-in (feature flag) and subprocess modes
144+
- Button components for approval flow
145+
- 2000 char message chunking, reply support
146+
- Typing indicator while processing (applied to all gateways)
147+
140148
- **Memory system** — File-based agent memory with four tools
141149
- `recall`: Retrieve relevant memories from agent's memory store
142150
- `remember`: Store new memories (daily experiences, curated MEMORY.md)

0 commit comments

Comments
 (0)