@sapienx/agentos 0.3.11 → 0.3.13

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.
Files changed (29) hide show
  1. package/README.md +11 -1
  2. package/bin/agentos.js +777 -9
  3. package/bundle/.next/BUILD_ID +1 -1
  4. package/bundle/.next/app-path-routes-manifest.json +7 -7
  5. package/bundle/.next/build-manifest.json +2 -2
  6. package/bundle/.next/server/app/_global-error.html +1 -1
  7. package/bundle/.next/server/app/_global-error.rsc +1 -1
  8. package/bundle/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
  9. package/bundle/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
  10. package/bundle/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
  11. package/bundle/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
  12. package/bundle/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
  13. package/bundle/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
  14. package/bundle/.next/server/app/_not-found.html +1 -1
  15. package/bundle/.next/server/app/_not-found.rsc +1 -1
  16. package/bundle/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
  17. package/bundle/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
  18. package/bundle/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
  19. package/bundle/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
  20. package/bundle/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
  21. package/bundle/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
  22. package/bundle/.next/server/app-paths-manifest.json +7 -7
  23. package/bundle/.next/server/middleware-build-manifest.js +1 -1
  24. package/bundle/.next/server/pages/404.html +1 -1
  25. package/bundle/.next/server/pages/500.html +1 -1
  26. package/bundle/public/readme/banner.jpeg +0 -0
  27. package/package.json +1 -1
  28. /package/bundle/.next/static/{PMHP584Iqd3KMZJH68hEV → E1q9ZtkD74uwvDRq3uoCz}/_buildManifest.js +0 -0
  29. /package/bundle/.next/static/{PMHP584Iqd3KMZJH68hEV → E1q9ZtkD74uwvDRq3uoCz}/_ssgManifest.js +0 -0
package/README.md CHANGED
@@ -14,11 +14,17 @@ agentos
14
14
 
15
15
  The `agentos` command starts the local AgentOS Mission Control server and prints the local URL.
16
16
 
17
+ If you pass `--open` and AgentOS is already listening on the selected port, the CLI opens the existing instance instead of failing.
18
+
19
+ Press `Ctrl+C` to stop a foreground AgentOS process. If shutdown hangs, press `Ctrl+C` again to force quit.
20
+
17
21
  Optional flags:
18
22
 
19
23
  ```bash
20
24
  agentos start --port 3000 --host 127.0.0.1
21
25
  agentos start --port 3000 --host 127.0.0.1 --open
26
+ agentos update
27
+ agentos update --check
22
28
  agentos stop
23
29
  agentos stop --port 3000 --force
24
30
  agentos doctor
@@ -35,7 +41,11 @@ AGENTOS_OPEN=1
35
41
 
36
42
  `agentos doctor` prints the effective URL, bundle status, Node.js compatibility, OpenClaw detection, and browser auto-open support.
37
43
 
38
- `agentos stop` sends `SIGTERM` to the tracked AgentOS server on the selected port. Use `--force` only if the process refuses to stop cleanly.
44
+ `agentos stop` sends `SIGTERM` to the AgentOS server listening on the selected port. If the runtime state is stale and no process is listening there, the CLI clears that stale state automatically.
45
+
46
+ `agentos update` refreshes a release installation in place. `agentos update --check` only checks whether a newer version exists.
47
+
48
+ If AgentOS was installed with `pnpm` or `npm`, update commands only print the matching package manager command instead of changing files in place.
39
49
 
40
50
  `agentos uninstall` removes a release-installer copy. If the package was installed with `pnpm` or `npm`, remove it with your package manager instead.
41
51