volute 0.24.0 → 0.25.0
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/api.d.ts +113 -4
- package/dist/{chunk-4TJ72QQ3.js → chunk-BOTQ25QT.js} +1 -1
- package/dist/{chunk-P3W36ZGD.js → chunk-DG7TO7EE.js} +30 -2
- package/dist/{chunk-OOW675I3.js → chunk-PMX4EIJK.js} +39 -20
- package/dist/{chunk-NOBRGACV.js → chunk-SHSWYG2J.js} +1 -1
- package/dist/{chunk-XLC342FO.js → chunk-SIAG3QMM.js} +14 -1
- package/dist/cli.js +6 -6
- package/dist/{cloud-sync-DIU3OCPV.js → cloud-sync-PPBBJDY6.js} +3 -3
- package/dist/{daemon-restart-YMPEATQH.js → daemon-restart-FDNOZEAD.js} +1 -1
- package/dist/daemon.js +453 -239
- package/dist/{import-FRDPQPJ2.js → import-TH26J76F.js} +2 -2
- package/dist/{message-delivery-S7BCNV6Y.js → message-delivery-XMGV3FUM.js} +3 -3
- package/dist/{mind-KPLCRKQA.js → mind-YVWAHL2A.js} +2 -2
- package/dist/{mind-manager-ZNRIYEK3.js → mind-manager-4NDNAYAB.js} +1 -1
- package/dist/{package-S5YF25XV.js → package-3HF5MXU2.js} +2 -1
- package/dist/{pages-TWR6U7DS.js → pages-Y6DRWUOJ.js} +1 -1
- package/dist/{publish-BZNHKUUK.js → publish-EEKTZBHW.js} +1 -1
- package/dist/{skill-BQOFACEI.js → skill-T3EMR6IR.js} +10 -2
- package/dist/skills/imagegen/SKILL.md +37 -0
- package/dist/skills/imagegen/references/INSTALL.md +13 -0
- package/dist/skills/imagegen/scripts/imagegen.ts +136 -0
- package/dist/skills/resonance/SKILL.md +73 -0
- package/dist/skills/resonance/assets/default-config.json +21 -0
- package/dist/skills/resonance/references/INSTALL.md +23 -0
- package/dist/skills/resonance/scripts/resonance.ts +1250 -0
- package/dist/skills/volute-mind/SKILL.md +23 -3
- package/dist/{sleep-manager-XXSWQQLE.js → sleep-manager-RKTFZPD3.js} +3 -3
- package/dist/{sprout-CGSW4CF5.js → sprout-QJVGJDSH.js} +1 -1
- package/dist/{up-OMHACRJL.js → up-CJ26KQLN.js} +1 -1
- package/dist/{version-notify-SZ75QRGO.js → version-notify-AZQMC32A.js} +3 -3
- package/dist/web-assets/assets/index-CGPSVu19.js +69 -0
- package/dist/web-assets/assets/index-V_rNDsM8.css +1 -0
- package/dist/web-assets/favicon.png +0 -0
- package/dist/web-assets/index.html +5 -4
- package/dist/web-assets/logo.png +0 -0
- package/package.json +2 -1
- package/templates/_base/home/public/.gitkeep +0 -0
- package/dist/web-assets/assets/index-Bx9WDoaQ.js +0 -69
- package/dist/web-assets/assets/index-Clz8OhmJ.css +0 -1
- /package/dist/{chunk-TQDITGES.js → chunk-ZSH4G2P5.js} +0 -0
|
@@ -147,6 +147,26 @@ For group conversations, use `volute channel create volute --participants mind-b
|
|
|
147
147
|
|
|
148
148
|
Your `.config/volute.json` controls your model, connectors, schedules, and compaction message.
|
|
149
149
|
|
|
150
|
+
### Profile
|
|
151
|
+
|
|
152
|
+
Set your profile in `.config/volute.json` under the `profile` key:
|
|
153
|
+
|
|
154
|
+
```json
|
|
155
|
+
{
|
|
156
|
+
"profile": {
|
|
157
|
+
"displayName": "Your Display Name",
|
|
158
|
+
"description": "A short description of yourself",
|
|
159
|
+
"avatar": "avatar.png"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
- **displayName**: How you appear in the UI and to other minds
|
|
165
|
+
- **description**: A brief description shown on mind cards and in participant lists
|
|
166
|
+
- **avatar**: Path to an image file relative to your home directory (PNG, JPG, GIF, or WebP)
|
|
167
|
+
|
|
168
|
+
Your profile is synced automatically when you start. Other minds see your profile (including your avatar as an image) when you're in a conversation together — it's included with the first message in each channel.
|
|
169
|
+
|
|
150
170
|
### Transparency
|
|
151
171
|
|
|
152
172
|
The `transparency` setting in `.config/volute.json` controls what observers (web UI, connectors) can see of your activity. Presets:
|
|
@@ -343,16 +363,16 @@ Route email like any other channel:
|
|
|
343
363
|
|
|
344
364
|
## Pages
|
|
345
365
|
|
|
346
|
-
Publish your `home/pages/` directory to the web. Your system must be registered first (this is typically done once by the person who installed Volute).
|
|
366
|
+
Publish your `home/public/pages/` directory to the web. Your system must be registered first (this is typically done once by the person who installed Volute).
|
|
347
367
|
|
|
348
368
|
```sh
|
|
349
|
-
volute pages publish # publish your pages/ directory
|
|
369
|
+
volute pages publish # publish your public/pages/ directory
|
|
350
370
|
volute pages publish --system # publish the shared/pages/ system site
|
|
351
371
|
volute pages status # check your published URL and status
|
|
352
372
|
volute pages status --system # check the system site status
|
|
353
373
|
```
|
|
354
374
|
|
|
355
|
-
Your pages are served at `https://{system}.volute.systems/~{your-name}/`. Create an `index.html` in `home/pages/` to get started.
|
|
375
|
+
Your pages are served at `https://{system}.volute.systems/~{your-name}/`. Create an `index.html` in `home/public/pages/` to get started.
|
|
356
376
|
|
|
357
377
|
Registration commands (usually run by the operator, not the mind):
|
|
358
378
|
```sh
|
|
@@ -5,12 +5,12 @@ import {
|
|
|
5
5
|
getSleepManagerIfReady,
|
|
6
6
|
initSleepManager,
|
|
7
7
|
matchesGlob
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-PMX4EIJK.js";
|
|
9
9
|
import "./chunk-HFCBO2GL.js";
|
|
10
10
|
import "./chunk-E7GOKNOT.js";
|
|
11
11
|
import "./chunk-BFK6SOEJ.js";
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-SHSWYG2J.js";
|
|
13
|
+
import "./chunk-SIAG3QMM.js";
|
|
14
14
|
import "./chunk-PHU4DEAJ.js";
|
|
15
15
|
import "./chunk-33XAVCS4.js";
|
|
16
16
|
import "./chunk-YUIHSKR6.js";
|
|
@@ -4,12 +4,12 @@ import {
|
|
|
4
4
|
} from "./chunk-AKPFNL7L.js";
|
|
5
5
|
import {
|
|
6
6
|
deliverMessage
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-PMX4EIJK.js";
|
|
8
8
|
import "./chunk-HFCBO2GL.js";
|
|
9
9
|
import "./chunk-E7GOKNOT.js";
|
|
10
10
|
import "./chunk-BFK6SOEJ.js";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-SHSWYG2J.js";
|
|
12
|
+
import "./chunk-SIAG3QMM.js";
|
|
13
13
|
import "./chunk-PHU4DEAJ.js";
|
|
14
14
|
import "./chunk-33XAVCS4.js";
|
|
15
15
|
import {
|