fluncle 0.196.0 → 0.197.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 +6 -5
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -561,7 +561,7 @@ function parseVersion(version) {
|
|
|
561
561
|
var currentVersion;
|
|
562
562
|
var init_version = __esm(() => {
|
|
563
563
|
init_output();
|
|
564
|
-
currentVersion = "0.
|
|
564
|
+
currentVersion = "0.197.0".trim() ? "0.197.0".trim() : "0.1.0";
|
|
565
565
|
});
|
|
566
566
|
|
|
567
567
|
// src/update-notifier.ts
|
|
@@ -2443,7 +2443,7 @@ function parseVersion2(version) {
|
|
|
2443
2443
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2444
2444
|
var init_version2 = __esm(() => {
|
|
2445
2445
|
init_output();
|
|
2446
|
-
currentVersion2 = "0.
|
|
2446
|
+
currentVersion2 = "0.197.0".trim() ? "0.197.0".trim() : "0.1.0";
|
|
2447
2447
|
});
|
|
2448
2448
|
|
|
2449
2449
|
// ../../packages/registry/src/index.ts
|
|
@@ -3160,7 +3160,7 @@ var init_src = __esm(() => {
|
|
|
3160
3160
|
apiFormat: "application/json",
|
|
3161
3161
|
discoveryUrl: `${SITE}/.well-known/mcp/server-card.json`,
|
|
3162
3162
|
exposedContent: [
|
|
3163
|
-
"the archive as MCP tools (Streamable HTTP, no auth): list_findings, list_tracks, list_fresh, get_track, get_random_track, get_status, search_archive, get_artist, get_label, build_set, list_similar_artists, list_album_catalogue, list_artist_catalogue, list_label_catalogue,
|
|
3163
|
+
"the archive as MCP tools (Streamable HTTP, no auth): list_findings, list_tracks, list_fresh, get_track, get_random_track, get_status, search_archive, get_artist, get_label, build_set, list_similar_artists, list_album_catalogue, list_artist_catalogue, list_label_catalogue, list_artists, list_albums, list_labels, submit_track, subscribe_newsletter, plus the MCP-only search_tracks (Spotify candidate search, not an archive read)",
|
|
3164
3164
|
"the archive as MCP resources: each finding/mixtape at fluncle://finding/<logId> or fluncle://mixtape/<logId> (its public record)",
|
|
3165
3165
|
"Fluncle-voiced MCP prompts: recommend_finding, walk_recent_night, decode_coordinate"
|
|
3166
3166
|
],
|
|
@@ -3307,7 +3307,7 @@ var init_src = __esm(() => {
|
|
|
3307
3307
|
{
|
|
3308
3308
|
command: "fluncle admin",
|
|
3309
3309
|
exposedContent: [
|
|
3310
|
-
"the operator/agent command group (hidden): tracks publish|update|enrich|video|draft|social|preview|observe|context|note, recordings
|
|
3310
|
+
"the operator/agent command group (hidden): a bare `queue` read plus ~22 plural groups — tracks (publish|update|enrich|embed|capture|video|draft|social|preview|observe|context|note|work|get|list|queue|mixable-order|requeue-analysis|vehicles), catalogue (the crawler + The Ear), frontier, labels, artists, albums, galaxies, notes, observations, clips, recordings, publish, capture, mixtapes, newsletter, logbook, prompts, submissions, reach, backfills, migrations, auth"
|
|
3311
3311
|
],
|
|
3312
3312
|
kind: "cli",
|
|
3313
3313
|
name: "cli.admin",
|
|
@@ -3839,7 +3839,7 @@ var init_src = __esm(() => {
|
|
|
3839
3839
|
],
|
|
3840
3840
|
kind: "cron",
|
|
3841
3841
|
name: "cron.funnel-snapshot",
|
|
3842
|
-
operatorNotes: "23:45 UTC daily (end of the UTC day the snapshot is keyed on). A bare trigger (the reach/anchor shape): fires the AGENT-tier record_catalogue_snapshot op once — the Worker computes every stage total + queue depth + frontier count through the SAME predicates the sweeps run (lib/server/funnel.ts) and UPSERTS one idempotent row per UTC day (a same-day re-run overwrites, never doubles a bar). Zero LLM tokens; the box's agent token drives it and calls the oRPC HTTP endpoint directly (no new CLI command the pinned box CLI would lack), so no new secret. Source: docs/agents/hermes/scripts/funnel-snapshot-sweep.*. See docs/
|
|
3842
|
+
operatorNotes: "23:45 UTC daily (end of the UTC day the snapshot is keyed on). A bare trigger (the reach/anchor shape): fires the AGENT-tier record_catalogue_snapshot op once — the Worker computes every stage total + queue depth + frontier count through the SAME predicates the sweeps run (lib/server/funnel.ts) and UPSERTS one idempotent row per UTC day (a same-day re-run overwrites, never doubles a bar). Zero LLM tokens; the box's agent token drives it and calls the oRPC HTTP endpoint directly (no new CLI command the pinned box CLI would lack), so no new secret. Source: docs/agents/hermes/scripts/funnel-snapshot-sweep.*. See docs/admin-shell.md.",
|
|
3843
3843
|
probeConfig: {
|
|
3844
3844
|
cadenceMs: 24 * 60 * MINUTE_MS,
|
|
3845
3845
|
cronName: "fluncle-funnel-snapshot",
|
|
@@ -4317,6 +4317,7 @@ var SOURCE_LABELS;
|
|
|
4317
4317
|
var init_admin_attention = __esm(() => {
|
|
4318
4318
|
init_api();
|
|
4319
4319
|
SOURCE_LABELS = {
|
|
4320
|
+
"anchor-review": "version check",
|
|
4320
4321
|
"artist-review": "artist links",
|
|
4321
4322
|
"attach-cues": "cues",
|
|
4322
4323
|
"capture-suspect": "capture check",
|
package/package.json
CHANGED