@telepath-computer/television 0.1.103 → 0.1.105
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/dist/canonical/v1/styles.css +15 -1
- package/dist/cli.cjs +1122 -134
- package/dist/skills/television/SKILL.md +10 -0
- package/dist/views/markdown/index.html +8 -8
- package/dist/web/assets/{index-c7jcA0yZ.css → index-BbSTSxZQ.css} +1 -1
- package/dist/web/assets/index-BsrZ1FgH.js +559 -0
- package/dist/web/index.html +2 -2
- package/package.json +4 -4
- package/dist/web/assets/index-l_Cxuh1M.js +0 -503
|
@@ -127,6 +127,16 @@ Commands group into four intents:
|
|
|
127
127
|
|
|
128
128
|
When the CLI rejects a command, follow the directive it prints rather than guessing flags.
|
|
129
129
|
|
|
130
|
+
### Server operation notes
|
|
131
|
+
|
|
132
|
+
`tv serve` starts the local server and requires `TELEVISION_ACP_AGENT=openclaw` or `TELEVISION_ACP_AGENT=hermes`. It preflights the selected ACP command on `PATH` and fails before listening if the binary is missing.
|
|
133
|
+
|
|
134
|
+
`tv serve --persist` installs or refreshes the user system service. It captures the ACP-relevant shell environment into the service definition: exact `PATH`, canonical `TELEVISION_ACP_AGENT`, and matching `OPENCLAW_*` or `HERMES_*` variables. It validates the ACP command against that captured PATH before changing the installed service; rerun it after changing PATH, ACP agent env vars, the ACP agent install, or the Node/TV install. The refresh is non-atomic: if uninstall succeeds but install fails, fix the env and rerun `tv serve --persist`.
|
|
135
|
+
|
|
136
|
+
`tv serve --persist-uninstall` removes the service and is equivalent to `tv stop`. Both are idempotent and print `{ "status": "stopped" }` whether or not a service was installed.
|
|
137
|
+
|
|
138
|
+
`tv status` reports server health and, when supported, system service status.
|
|
139
|
+
|
|
130
140
|
## Read vs mutate
|
|
131
141
|
|
|
132
142
|
Read commands print JSON. Workflow commands print plain text. Most mutation commands also print plain text, but `tv set-theme` is intentionally silent on success.
|