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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [core@0.9.0+platform@0.5.0] - 2026-04-15

### New Features
- Add sequence, parallel, and map combinators for composing agent operations
- Add PAT_TOKEN fallback configuration for automated release merging

## [core@0.8.0+platform@0.4.0] - 2026-04-15

### New Features
Expand Down
7 changes: 2 additions & 5 deletions changelog-content.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
### New Features
- Add `ctx.run()` primitive for executing agent operations
- Add `AgentRegistry` for managing agent instances
- Add `defineAgent()` Zod helper for improved agent definition
- Add `manifest.outputSchema` support for structured agent outputs
- Add comprehensive testing fixtures for agent development
- Add sequence, parallel, and map combinators for composing agent operations
- Add PAT_TOKEN fallback configuration for automated release merging
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentage/core",
"version": "0.8.0",
"version": "0.9.0",
"description": "Agent interface and run model for the Agentage platform",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/platform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agentage/platform",
"version": "0.4.0",
"version": "0.5.0",
"description": "Daemon/hub protocol types for the Agentage platform",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading