@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.
- package/README.md +11 -1
- package/bin/agentos.js +777 -9
- package/bundle/.next/BUILD_ID +1 -1
- package/bundle/.next/app-path-routes-manifest.json +7 -7
- package/bundle/.next/build-manifest.json +2 -2
- package/bundle/.next/server/app/_global-error.html +1 -1
- package/bundle/.next/server/app/_global-error.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.html +1 -1
- package/bundle/.next/server/app/_not-found.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/bundle/.next/server/app-paths-manifest.json +7 -7
- package/bundle/.next/server/middleware-build-manifest.js +1 -1
- package/bundle/.next/server/pages/404.html +1 -1
- package/bundle/.next/server/pages/500.html +1 -1
- package/bundle/public/readme/banner.jpeg +0 -0
- package/package.json +1 -1
- /package/bundle/.next/static/{PMHP584Iqd3KMZJH68hEV → E1q9ZtkD74uwvDRq3uoCz}/_buildManifest.js +0 -0
- /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
|
|
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
|
|