@telepath-computer/television 0.1.104 → 0.1.106
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/cli.cjs +1146 -149
- package/dist/skills/television/SKILL.md +10 -0
- package/dist/views/markdown/index.html +7 -7
- package/dist/web/assets/index-dt9xJolN.js +559 -0
- package/dist/web/index.html +1 -1
- package/package.json +4 -4
- package/dist/web/assets/index-BBB99HrI.js +0 -559
|
@@ -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. ACP chat is optional: with no `TELEVISION_ACP_AGENT`, the server starts without ACP wiring, `/acp` is unavailable, and the web UI hides chat. Set `TELEVISION_ACP_AGENT=openclaw` or `TELEVISION_ACP_AGENT=hermes` to enable chat; in that case `tv serve` 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 always captures the exact `PATH`. When an ACP agent is configured, it also captures canonical `TELEVISION_ACP_AGENT` and matching `OPENCLAW_*` or `HERMES_*` variables, and validates the ACP command against that captured PATH before changing the installed service. When no agent is configured, ACP env capture and preflight are skipped and the service runs with chat disabled. 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.
|