agentworkforce 0.10.0 → 0.12.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 CHANGED
@@ -9,10 +9,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
 
10
10
  ### Added
11
11
 
12
+ - `agentworkforce agent` now records launch metadata through the CLI package;
13
+ opt out with `--no-launch-metadata` or
14
+ `AGENTWORKFORCE_LAUNCH_METADATA=0`.
12
15
  - `agentworkforce create` now opens `persona-maker@best`, supports target
13
16
  selection, and passes `TARGET_DIR` / `CREATE_MODE` persona inputs.
14
17
  - `agentworkforce --version` now prints the installed package version.
15
18
 
19
+ ## [0.11.0] - 2026-05-08
20
+
21
+ ### Released
22
+
23
+ - v0.11.0
24
+
16
25
  ## [0.8.0] - 2026-05-07
17
26
 
18
27
  ### Added
package/README.md CHANGED
@@ -9,8 +9,8 @@ npm i -g agentworkforce
9
9
  Then:
10
10
 
11
11
  ```sh
12
- agentworkforce create [--to <target>] [--save-default]
13
- agentworkforce agent <persona>[@<tier>]
12
+ agentworkforce create [--to <target>] [--save-default] [--install-in-repo] [--no-launch-metadata]
13
+ agentworkforce agent [--install-in-repo] [--no-launch-metadata] <persona>[@<tier>]
14
14
  agentworkforce list [flags]
15
15
  agentworkforce show <persona>
16
16
  agentworkforce sources <list|add|remove>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentworkforce",
3
- "version": "0.10.0",
3
+ "version": "0.12.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.10.0"
20
+ "@agentworkforce/cli": "0.12.0"
21
21
  },
22
22
  "repository": {
23
23
  "type": "git",