fluncle 0.119.0 → 0.121.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/bin/fluncle.mjs +14 -2
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -557,7 +557,7 @@ function parseVersion(version) {
|
|
|
557
557
|
var currentVersion;
|
|
558
558
|
var init_version = __esm(() => {
|
|
559
559
|
init_output();
|
|
560
|
-
currentVersion = "0.
|
|
560
|
+
currentVersion = "0.121.0".trim() ? "0.121.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -2255,7 +2255,7 @@ function parseVersion2(version) {
|
|
|
2255
2255
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2256
2256
|
var init_version2 = __esm(() => {
|
|
2257
2257
|
init_output();
|
|
2258
|
-
currentVersion2 = "0.
|
|
2258
|
+
currentVersion2 = "0.121.0".trim() ? "0.121.0".trim() : "0.1.0";
|
|
2259
2259
|
});
|
|
2260
2260
|
|
|
2261
2261
|
// ../../packages/registry/src/index.ts
|
|
@@ -2888,6 +2888,17 @@ var init_src = __esm(() => {
|
|
|
2888
2888
|
probeConfig: { cadenceMs: 5 * MINUTE_MS, cronName: "fluncle-embed", kind: "cron" },
|
|
2889
2889
|
weights: { status: "hidden" }
|
|
2890
2890
|
},
|
|
2891
|
+
{
|
|
2892
|
+
command: "fluncle admin galaxies map",
|
|
2893
|
+
exposedContent: [
|
|
2894
|
+
"nightly assignment of each finding to its nearest sonic galaxy (k-means over the MuQ space)"
|
|
2895
|
+
],
|
|
2896
|
+
kind: "cron",
|
|
2897
|
+
name: "cron.cluster",
|
|
2898
|
+
operatorNotes: "nightly (02:20 Amsterdam), run by a rave-02 HOST systemd timer (docs/agents/hermes/cluster-timer/). Assignment-ONLY + idempotent (a no-op on an unchanged corpus): assign each finding to its nearest stored centroid, recompute centroids as members' means, retire an emptied galaxy, consume an operator split_requested_at (a k=2 fit). Zero LLM tokens; sub-second CPU. A full k=9 fit is an OPERATOR act (--cold-start / --remint), never scheduled. Source: docs/agents/hermes/scripts/cluster-sweep.* + cluster.py. See docs/agents/cluster-engine.md.",
|
|
2899
|
+
probeConfig: { cadenceMs: 24 * 60 * MINUTE_MS, cronName: "fluncle-cluster", kind: "cron" },
|
|
2900
|
+
weights: { status: "hidden" }
|
|
2901
|
+
},
|
|
2891
2902
|
{
|
|
2892
2903
|
command: "fluncle admin tracks capture-audio --queue",
|
|
2893
2904
|
exposedContent: [
|
|
@@ -3468,6 +3479,7 @@ var init_admin_attention = __esm(() => {
|
|
|
3468
3479
|
"attach-cues": "cues",
|
|
3469
3480
|
distribute: "distribute",
|
|
3470
3481
|
"drip-empty": "clip drip",
|
|
3482
|
+
newsletter: "newsletter",
|
|
3471
3483
|
"post-tiktok": "tiktok",
|
|
3472
3484
|
"post-youtube": "youtube",
|
|
3473
3485
|
submission: "submission",
|
package/package.json
CHANGED