volute 0.15.0 → 0.16.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/README.md +30 -0
- package/dist/chunk-37X7ECMF.js +50 -0
- package/dist/{chunk-PDLAZJGC.js → chunk-3FD4ZZUL.js} +1 -0
- package/dist/chunk-RVKR2R7F.js +37 -0
- package/dist/chunk-RWKVSSLY.js +26 -0
- package/dist/cli.js +26 -7
- package/dist/{connector-JFAHYFQX.js → connector-3ELFMI2R.js} +5 -32
- package/dist/{daemon-restart-IZGEF4NA.js → daemon-restart-MS5FI44G.js} +1 -1
- package/dist/daemon.js +190 -16
- package/dist/{env-6LXDUZDA.js → env-6IDWGBUH.js} +4 -31
- package/dist/login-ORQDXLBM.js +56 -0
- package/dist/logout-XC5AUO5I.js +18 -0
- package/dist/{package-TDCEK6C2.js → package-3QGV3KX6.js} +1 -1
- package/dist/pages-6IV4VQTU.js +36 -0
- package/dist/publish-Q4RPSJLL.js +80 -0
- package/dist/register-LDE6LRXY.js +65 -0
- package/dist/{send-SV4K2TDE.js → send-KBBZNYG6.js} +1 -1
- package/dist/status-OKNA6AR3.js +47 -0
- package/dist/{up-C4MV6EXV.js → up-GZLWZAQE.js} +1 -1
- package/dist/web-assets/assets/{index-CeFLp8DZ.js → index-B1XIIGCh.js} +8 -8
- package/dist/web-assets/index.html +1 -1
- package/package.json +1 -1
- package/templates/_base/_skills/volute-mind/SKILL.md +28 -1
- /package/dist/{chunk-BEFIBW5B.js → chunk-LLBBVTEY.js} +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
8
8
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
9
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap" rel="stylesheet" />
|
|
10
|
-
<script type="module" crossorigin src="/assets/index-
|
|
10
|
+
<script type="module" crossorigin src="/assets/index-B1XIIGCh.js"></script>
|
|
11
11
|
</head>
|
|
12
12
|
<body>
|
|
13
13
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -200,7 +200,34 @@ volute channel users <platform> # List users/c
|
|
|
200
200
|
volute channel create <platform> --participants u1,u2 [--name ""] # Create a conversation
|
|
201
201
|
```
|
|
202
202
|
|
|
203
|
-
Channel URIs use `platform:id` format (e.g. `discord:123456`, `volute:conv-abc`, `slack:C01234`). Supported platforms: `volute`, `discord`, `slack`, `telegram`.
|
|
203
|
+
Channel URIs use `platform:id` format (e.g. `discord:123456`, `volute:conv-abc`, `slack:C01234`). Supported platforms: `volute`, `discord`, `slack`, `telegram`, `mail`.
|
|
204
|
+
|
|
205
|
+
## Email
|
|
206
|
+
|
|
207
|
+
When a volute.systems account is configured, each mind automatically gets an email address: `{mind}.{system}@volute.systems`. Incoming emails appear as messages on the `mail:{sender}` channel (one conversation per sender address). Email polling is handled by the daemon — no per-mind setup needed.
|
|
208
|
+
|
|
209
|
+
Route email like any other channel:
|
|
210
|
+
```json
|
|
211
|
+
{ "channel": "mail:*", "session": "email" }
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
## Pages
|
|
215
|
+
|
|
216
|
+
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).
|
|
217
|
+
|
|
218
|
+
```sh
|
|
219
|
+
volute pages publish # publish your pages/ directory
|
|
220
|
+
volute pages status # check your published URL and status
|
|
221
|
+
```
|
|
222
|
+
|
|
223
|
+
Your pages are served at `https://{system}.volute.systems/~{your-name}/`. Create an `index.html` in `home/pages/` to get started.
|
|
224
|
+
|
|
225
|
+
Registration commands (usually run by the operator, not the mind):
|
|
226
|
+
```sh
|
|
227
|
+
volute register --name <system-name>
|
|
228
|
+
volute login --key <api-key>
|
|
229
|
+
volute logout
|
|
230
|
+
```
|
|
204
231
|
|
|
205
232
|
## Git Introspection
|
|
206
233
|
|
|
File without changes
|