agentworkforce 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.6.0] - 2026-05-06
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Support installable persona sources**
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
- Publish only agentworkforce bin
|
|
19
|
+
- Sync package versions to 0.5.3
|
|
20
|
+
|
|
10
21
|
## [0.4.0] - 2026-04-29
|
|
11
22
|
|
|
12
23
|
### Added
|
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@ Then:
|
|
|
12
12
|
agentworkforce agent <persona>[@<tier>]
|
|
13
13
|
agentworkforce list [flags]
|
|
14
14
|
agentworkforce show <persona>
|
|
15
|
+
agentworkforce sources <list|add|remove>
|
|
15
16
|
agentworkforce harness check
|
|
16
17
|
```
|
|
17
18
|
|
|
18
19
|
This package is a thin wrapper around [`@agentworkforce/cli`](https://www.npmjs.com/package/@agentworkforce/cli).
|
|
19
20
|
It exists so the global install command and the binary name match the
|
|
20
|
-
project name.
|
|
21
|
-
and invoking `agent-workforce` — both bins call into the same code path.
|
|
21
|
+
project name.
|
|
22
22
|
|
|
23
23
|
See the [main README](https://github.com/AgentWorkforce/workforce#readme)
|
|
24
24
|
for the full feature tour, and [`packages/cli/README.md`](https://github.com/AgentWorkforce/workforce/blob/main/packages/cli/README.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentworkforce",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Top-level installer for the Agent Workforce CLI (installs the `agentworkforce` command). Wraps @agentworkforce/cli.",
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"node": ">=22"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@agentworkforce/cli": "0.
|
|
20
|
+
"@agentworkforce/cli": "0.6.0"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|