@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.
- package/README.md +7 -1
- package/dist/agent/pi.js +13 -3
- package/dist/extensions/web/content.js +5 -0
- package/dist/extensions/web/language.js +5 -0
- package/dist/extensions/web/tools.js +5 -0
- package/dist/tasks/agent.js +5 -0
- package/dist/tasks/command.js +15 -0
- package/dist/tasks/definitions.js +4 -0
- package/dist/tasks/execution.js +4 -0
- package/dist/tasks/groups.js +4 -0
- package/dist/tasks/messages.js +6 -0
- package/dist/tasks/routes.js +4 -0
- package/dist/tasks/runs.js +5 -0
- package/dist/tasks/service.js +6 -0
- package/dist/tasks/store.js +4 -0
- package/dist/tasks/types.js +4 -0
- package/dist/web/public/assets/{ghostty-web-xcUrfRRs.js → ghostty-web-C4ivXTBE.js} +1 -1
- package/dist/web/public/assets/index-2E9_cwpg.css +2 -0
- package/dist/web/public/assets/index-DVUvzNK1.js +93 -0
- package/dist/web/public/index.html +2 -2
- package/docs/deploy.md +12 -3
- package/package.json +1 -1
- package/dist/web/public/assets/index-BWDlAMK2.js +0 -93
- package/dist/web/public/assets/index-DHqZnZr7.css +0 -2
|
@@ -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-
|
|
37
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
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`,
|
|
181
|
-
`settings`, `credentials`, `update`, `
|
|
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