agent-message 0.2.0 → 0.3.1

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/README.md CHANGED
@@ -41,6 +41,7 @@ Starting the local stack does not silently rewrite CLI traffic; regular commands
41
41
  The bundled CLI continues to work from the same command:
42
42
 
43
43
  ```bash
44
+ agent-message onboard
44
45
  agent-message register alice secret123
45
46
  agent-message login alice secret123
46
47
  agent-message config set master jay
@@ -303,6 +304,7 @@ Run from `cli/`. By default the CLI talks to `https://am.namjaeyoun.com`. For se
303
304
 
304
305
  ```bash
305
306
  cd cli
307
+ go run . onboard
306
308
  go run . register alice secret123
307
309
  go run . login alice secret123
308
310
  go run . profile list
@@ -334,6 +336,7 @@ go run . watch bob
334
336
 
335
337
  CLI config is stored at `~/.agent-message/config` by default.
336
338
  Each successful `login` or `register` also saves a named profile, and `go run . profile switch <username>` swaps the active account locally.
339
+ `go run . onboard` is the cloud-friendly shortcut: it interactively asks for username/password, logs in if the account exists, creates it if it does not, and sets that username as `master`.
337
340
  For a self-hosted server, set `server_url` once with `go run . config set server_url http://localhost:8080` or use `--server-url` per command.
338
341
  To set a default recipient for agent reports, run `go run . config set master jay`; after that, `go run . send "done"` sends to `jay`, and `go run . send --to bob "done"` overrides it for one command.
339
342
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-message",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "Agent Message CLI and local stack launcher for macOS",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,6 +13,7 @@
13
13
  ],
14
14
  "scripts": {
15
15
  "generate:catalog-prompt": "node ./scripts/generate-message-json-render-catalog-prompt.mjs",
16
+ "sync:wrapper-versions": "node ./scripts/sync-wrapper-package-versions.mjs",
16
17
  "prepare:npm-bundle": "node ./scripts/prepare-npm-bundle.mjs",
17
18
  "prepack": "node ./scripts/prepare-npm-bundle.mjs",
18
19
  "pack:dry-run": "npm pack --dry-run"