fluncle 0.190.0 → 0.192.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.
Files changed (2) hide show
  1. package/bin/fluncle.mjs +13 -5
  2. 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.190.0".trim() ? "0.190.0".trim() : "0.1.0";
564
+ currentVersion = "0.192.0".trim() ? "0.192.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.190.0".trim() ? "0.190.0".trim() : "0.1.0";
2446
+ currentVersion2 = "0.192.0".trim() ? "0.192.0".trim() : "0.1.0";
2447
2447
  });
2448
2448
 
2449
2449
  // ../../packages/registry/src/index.ts
@@ -3677,7 +3677,7 @@ var init_src = __esm(() => {
3677
3677
  ],
3678
3678
  kind: "cron",
3679
3679
  name: "cron.social-capture",
3680
- operatorNotes: "every 10m. Pure HTTP trigger, zero LLM tokens. Agent tier (fills the public URL only — publishes nothing). The box's baked CLI predates the `--capture` verb, so the cron curls POST /api/admin/social/posts/capture directly; the Worker polls Postiz and writes back. Source: docs/agents/hermes/scripts/social-capture-sweep.sh. Probed on /status as cron.social-capture.",
3680
+ operatorNotes: "every 10m. Pure HTTP trigger, zero LLM tokens. Agent tier (fills the public URL only — publishes nothing). The box's baked CLI predates the `--capture` verb, so the cron curls POST /api/v1/admin/social/posts/capture directly; the Worker polls Postiz and writes back. Source: docs/agents/hermes/scripts/social-capture-sweep.sh. Probed on /status as cron.social-capture.",
3681
3681
  probeConfig: { cadenceMs: 10 * MINUTE_MS, cronName: "fluncle-social-capture", kind: "cron" },
3682
3682
  statusDescription: "the live YouTube and TikTok URLs for each posted video",
3683
3683
  title: "Social links",
@@ -4154,6 +4154,9 @@ async function trackUpdateCommand(trackId, options) {
4154
4154
  if (options.galaxyId !== undefined) {
4155
4155
  body.galaxyId = options.galaxyId;
4156
4156
  }
4157
+ if (options.isrc !== undefined) {
4158
+ body.isrc = options.isrc;
4159
+ }
4157
4160
  if (options.note !== undefined) {
4158
4161
  body.note = options.note;
4159
4162
  }
@@ -4364,6 +4367,9 @@ async function trackUpdateCommand2(trackId, options) {
4364
4367
  if (options.galaxyId !== undefined) {
4365
4368
  body.galaxyId = options.galaxyId;
4366
4369
  }
4370
+ if (options.isrc !== undefined) {
4371
+ body.isrc = options.isrc;
4372
+ }
4367
4373
  if (options.note !== undefined) {
4368
4374
  body.note = options.note;
4369
4375
  }
@@ -6963,7 +6969,7 @@ async function paginateWithKeyboard(options) {
6963
6969
  const start = before + 1;
6964
6970
  const end = before + page.lines.length;
6965
6971
  const loading = busy ? " · loading…" : "";
6966
- const footer = `${start}–${end} of ${page.total} ←/→ page · q quit${loading}`;
6972
+ const footer = `${start}–${end} of ${pages[0]?.total ?? page.total} ←/→ page · q quit${loading}`;
6967
6973
  const lines = [...page.lines, "", footer].map((line) => truncateTerminalLine2(line, columns));
6968
6974
  renderedLines = lines.length;
6969
6975
  stdout.write(`${lines.join(`
@@ -9459,7 +9465,7 @@ function addAdminCommands(program2) {
9459
9465
  const { mixableOrderCommand: mixableOrderCommand2 } = await Promise.resolve().then(() => (init_admin_tracks(), exports_admin_tracks));
9460
9466
  await runMixableOrder(logIds, options, mixableOrderCommand2);
9461
9467
  });
9462
- adminTrack.command("update").description("Certify a track into the archive").argument("[trackId]").option("--analyzed-at <iso>", "Analysis-write ISO timestamp (BPM/key provenance)").option("--analyzed-from <class>", "Audio class BPM/key were analyzed from: full or preview").option("--bpm <number>", "Track BPM").option("--bpm-confidence <number>", "Analyzer confidence in the BPM (0..1)").option("--bpm-source <source>", "Where the BPM came from (analyzer bpmSource)").option("--embedding <json>", "MuQ audio embedding as a JSON array of 1024 floats").option("--embedding-file <file>", "Read the MuQ embedding JSON array from a file").option("--features <json>", "Audio feature JSON").option("--galaxy-id <id>", "Sonic galaxy assignment (empty string clears it)").option("--json", "Print JSON", false).option("--key <key>", "Musical key").option("--key-confidence <number>", "Analyzer confidence in the key (0..1)").option("--key-source <source>", "Where the key came from (analyzer keySource)").option("--note <text>", "Operator note").option("--status <status>", "Enrichment status").option("--video-url <url>", "Rendered video URL").allowExcessArguments().action(async (trackId, options) => {
9468
+ adminTrack.command("update").description("Certify a track into the archive").argument("[trackId]").option("--analyzed-at <iso>", "Analysis-write ISO timestamp (BPM/key provenance)").option("--analyzed-from <class>", "Audio class BPM/key were analyzed from: full or preview").option("--bpm <number>", "Track BPM").option("--bpm-confidence <number>", "Analyzer confidence in the BPM (0..1)").option("--bpm-source <source>", "Where the BPM came from (analyzer bpmSource)").option("--embedding <json>", "MuQ audio embedding as a JSON array of 1024 floats").option("--embedding-file <file>", "Read the MuQ embedding JSON array from a file").option("--features <json>", "Audio feature JSON").option("--galaxy-id <id>", "Sonic galaxy assignment (empty string clears it)").option("--isrc <isrc>", "The recording's ISRC (operator identity correction)").option("--json", "Print JSON", false).option("--key <key>", "Musical key").option("--key-confidence <number>", "Analyzer confidence in the key (0..1)").option("--key-source <source>", "Where the key came from (analyzer keySource)").option("--note <text>", "Operator note").option("--status <status>", "Enrichment status").option("--video-url <url>", "Rendered video URL").allowExcessArguments().action(async (trackId, options) => {
9463
9469
  const { trackUpdateCommand: trackUpdateCommand3 } = await Promise.resolve().then(() => (init_track(), exports_track));
9464
9470
  await runTrackUpdate(trackId, options, trackUpdateCommand3);
9465
9471
  });
@@ -11426,6 +11432,7 @@ async function runTrackUpdate(trackId, options, trackUpdateCommand3) {
11426
11432
  embedding,
11427
11433
  features: options.features,
11428
11434
  galaxyId: options.galaxyId,
11435
+ isrc: options.isrc,
11429
11436
  key: options.key,
11430
11437
  keyConfidence,
11431
11438
  keySource: options.keySource,
@@ -12740,6 +12747,7 @@ var stringOptions = new Set([
12740
12747
  "--gb",
12741
12748
  "--has-key",
12742
12749
  "--intent",
12750
+ "--isrc",
12743
12751
  "--key",
12744
12752
  "--key-confidence",
12745
12753
  "--key-source",
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  "url": "git+https://github.com/mauricekleine/fluncle.git"
32
32
  },
33
33
  "type": "module",
34
- "version": "0.190.0"
34
+ "version": "0.192.0"
35
35
  }