Skip to content
Open
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
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,17 @@ jobs:
# compose (leaf — TeamSpec parsing and preview planning)
# delivery (→ runtime; consumed by external agents)
# workload-router (→ persona-kit; consumed by cli)
# persona-registry (→ persona-kit + workload-router; consumed by local-surface + cli)
# deploy (→ persona-kit + runtime; consumed by cli)
# review-kit (→ persona-kit + runtime; authoring infrastructure)
# turn-kit (→ persona-kit + runtime; multi-turn agent infrastructure)
# mcp-workforce (→ persona-kit + runtime)
# daytona-runner (no workspace deps)
# local-surface (→ deploy + persona-kit + runtime; consumed by cli)
# cli (→ persona-kit + workload-router + deploy + local-surface)
# local-surface (→ deploy + persona-kit + persona-registry + runtime; consumed by cli)
# cli (→ persona-kit + persona-registry + workload-router + deploy + local-surface)
# agentworkforce (→ cli — umbrella wrapper, must publish last)
# personas-core publishes via the separate publish-personas.yml workflow.
echo "packages=events persona-kit runtime compose delivery workload-router deploy review-kit turn-kit mcp-workforce daytona-runner local-surface cli agentworkforce" >> "$GITHUB_OUTPUT"
echo "packages=events persona-kit runtime compose delivery workload-router persona-registry deploy review-kit turn-kit mcp-workforce daytona-runner local-surface cli agentworkforce" >> "$GITHUB_OUTPUT"

# Lockstep baseline heal. The workspace publishes every package at the
# same version, so if any package's local version lags either its own
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/verify-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ on:
- '@agentworkforce/compose'
- '@agentworkforce/delivery'
- '@agentworkforce/workload-router'
- '@agentworkforce/persona-registry'
- '@agentworkforce/deploy'
- '@agentworkforce/review-kit'
- '@agentworkforce/turn-kit'
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- `@agentworkforce/persona-registry` exposes the CLI's built-in, project,
personal, configured-directory, and exact JSON-path persona resolution as an
in-process SDK.
- `@agentworkforce/local-surface` adds a deduplicated `spawn:persona` Fleet
capability. It prepares interactive personas through `persona-kit`, layers a
concrete task over standing instructions, auto-syncs isolated-mount changes,
and requests verified Relay registration and readiness without invoking the
`agentworkforce` binary. It requires `@agent-relay/fleet` 11.5 or newer.

Comment thread
coderabbitai[bot] marked this conversation as resolved.
## [4.1.15] - 2026-07-13

### Added
Expand All @@ -34,4 +45,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `@agentworkforce/cli`: requires `@relayfile/local-mount` ^0.10.23
(git-list population, `attachMount`, exported autosync state, and the
external-teardown safety guard).

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,11 @@ grammar, skill staging, and sandbox mount behavior live in
triggers.
- `packages/workload-router` — TypeScript SDK for typed persona and routing
profile resolution.
- `packages/persona-registry` — in-process resolution of persona ids and exact
JSON paths through the CLI's project, personal, configured, and built-in
source cascade.
- `packages/local-surface` — Agent Relay fleet-node adapters for proactive
personas and verified interactive `spawn:persona` launches.
- `packages/cli` — command-line implementation used by the `agentworkforce`
wrapper.
- `packages/runtime` — deploy runtime facade and per-integration clients.
Expand Down
1 change: 1 addition & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@agentworkforce/events": "workspace:*",
"@agentworkforce/local-surface": "workspace:*",
"@agentworkforce/persona-kit": "workspace:*",
"@agentworkforce/persona-registry": "workspace:*",
"@agentworkforce/runtime": "workspace:*",
"@agentworkforce/workload-router": "workspace:*",
"@relayburn/sdk": "^2.5.2",
Expand Down
Loading
Loading