@timqi/pier 0.0.15 → 0.0.16

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.
@@ -33,8 +33,8 @@
33
33
  which style.css pays for with the safe-area inset. -->
34
34
  <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
35
35
  <title>Pier</title>
36
- <script type="module" crossorigin src="/assets/index-BWDlAMK2.js"></script>
37
- <link rel="stylesheet" crossorigin href="/assets/index-DHqZnZr7.css">
36
+ <script type="module" crossorigin src="/assets/index-DVUvzNK1.js"></script>
37
+ <link rel="stylesheet" crossorigin href="/assets/index-2E9_cwpg.css">
38
38
  </head>
39
39
  <!-- The document never scrolls: this is a fixed-viewport workbench, and every
40
40
  scrollable region is an inner pane. h-dvh, not h-screen, because 100vh can
package/docs/deploy.md CHANGED
@@ -177,9 +177,9 @@ journalctl --user -u pier --since -1h | grep 'tasks:' # one area
177
177
  ```
178
178
 
179
179
  Every line is `area: message` — `core`, `agent`, `tasks`, `slack`, `telegram`,
180
- `channels`, `slack.tool`, `auth`, `boards`, `client`, `db`, `drain`, `secrets`,
181
- `settings`, `credentials`, `update`, `web.providers`, `pier` — so an area is a
182
- grep
180
+ `lark`, `channels`, `slack.tool`, `auth`, `boards`, `client`, `db`, `drain`,
181
+ `secrets`, `settings`, `credentials`, `update`, `tools`, `terminal`, `push`,
182
+ `web`, `web.providers`, `pier` — so an area is a grep
183
183
  and a level is a `-p`. The level reaches journald as a syslog priority prefix, which Pier
184
184
  emits only when systemd says the output is a journal (`$JOURNAL_STREAM`); run
185
185
  in a terminal, the same lines carry a timestamp and a level word instead.
@@ -237,6 +237,7 @@ with the stored hash.
237
237
  ```sh
238
238
  pier restart # finish active work, then restart the service
239
239
  pier reload # apply channel config and recycle idle sessions in place
240
+ pier tools sync # install/update the managed CLI tools
240
241
  ```
241
242
 
242
243
  Both commands signal the installed systemd service; they are not foreground
@@ -246,6 +247,14 @@ next process. At the deadline it records every aborted IM turn first, and the
246
247
  next process posts that note after its adapter starts. Cleanup after the deadline
247
248
  has one shared 10-second bound regardless of how many sessions are stuck.
248
249
 
250
+ `pier tools sync` converges the command-line tools switched on in Console →
251
+ Settings — they install into `~/.pier/tools/bin`, which the service puts first
252
+ on the PATH every session, task and terminal inherits. Normally a switch runs
253
+ it for you as a task; typing it is for a machine that was offline when one was
254
+ flipped. One sync runs at a time per machine: an overlapping one waits for the
255
+ lock (and converges on the switches as they stand when its turn comes) instead
256
+ of racing the other's installs.
257
+
249
258
  `pier reload` does not stop active work. It reloads Slack and Telegram adapters
250
259
  and immediately evicts idle sessions nobody is watching, so their next message
251
260
  opens with current agent files and configuration. Streaming sessions and
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timqi/pier",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "description": "A self-hosted workspace for coding agents: web workbench and IM channels in front of Pi sessions",
5
5
  "license": "AGPL-3.0-only",
6
6
  "repository": "github:timqi/pier",