agentworkforce 0.4.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 +16 -0
- package/README.md +25 -0
- package/bin/agentworkforce.js +12 -0
- package/package.json +37 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `agentworkforce` will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.4.0] - 2026-04-29
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Initial release. This package installs the same CLI as `@agentworkforce/cli`
|
|
15
|
+
under the unscoped `agentworkforce` name, so `npm i -g agentworkforce`
|
|
16
|
+
provides the `agentworkforce` command on your PATH.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# agentworkforce
|
|
2
|
+
|
|
3
|
+
Top-level installer for the Agent Workforce CLI.
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm i -g agentworkforce
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Then:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
agentworkforce agent <persona>[@<tier>]
|
|
13
|
+
agentworkforce list [flags]
|
|
14
|
+
agentworkforce show <persona>
|
|
15
|
+
agentworkforce harness check
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
This package is a thin wrapper around [`@agentworkforce/cli`](https://www.npmjs.com/package/@agentworkforce/cli).
|
|
19
|
+
It exists so the global install command and the binary name match the
|
|
20
|
+
project name. Functionally identical to installing `@agentworkforce/cli`
|
|
21
|
+
and invoking `agent-workforce` — both bins call into the same code path.
|
|
22
|
+
|
|
23
|
+
See the [main README](https://github.com/AgentWorkforce/workforce#readme)
|
|
24
|
+
for the full feature tour, and [`packages/cli/README.md`](https://github.com/AgentWorkforce/workforce/blob/main/packages/cli/README.md)
|
|
25
|
+
for command reference.
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Top-level wrapper. Re-exports the @agentworkforce/cli entry point under the
|
|
3
|
+
// shorter `agentworkforce` bin name so users can `npm i -g agentworkforce` and
|
|
4
|
+
// run `agentworkforce agent <persona>`. The CLI derives its help-text bin name
|
|
5
|
+
// from process.argv[1], so this file's basename (sans extension) is what
|
|
6
|
+
// shows up in usage strings.
|
|
7
|
+
import { main } from '@agentworkforce/cli/dist/cli.js';
|
|
8
|
+
|
|
9
|
+
main().catch((err) => {
|
|
10
|
+
process.stderr.write(`${err?.stack ?? String(err)}\n`);
|
|
11
|
+
process.exit(1);
|
|
12
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentworkforce",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Top-level installer for the Agent Workforce CLI (installs the `agentworkforce` command). Wraps @agentworkforce/cli.",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"agentworkforce": "./bin/agentworkforce.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin",
|
|
12
|
+
"README.md",
|
|
13
|
+
"CHANGELOG.md",
|
|
14
|
+
"package.json"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=22"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@agentworkforce/cli": "0.4.0"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "https://github.com/AgentWorkforce/workforce",
|
|
25
|
+
"directory": "packages/agentworkforce"
|
|
26
|
+
},
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "chmod +x bin/agentworkforce.js",
|
|
32
|
+
"dev": "chmod +x bin/agentworkforce.js",
|
|
33
|
+
"typecheck": "node --check bin/agentworkforce.js",
|
|
34
|
+
"lint": "node --check bin/agentworkforce.js",
|
|
35
|
+
"test": "node --check bin/agentworkforce.js"
|
|
36
|
+
}
|
|
37
|
+
}
|