fluncle 0.115.0 → 0.116.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 +46 -3
  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.115.0".trim() ? "0.115.0".trim() : "0.1.0";
560
+ currentVersion = "0.116.0".trim() ? "0.116.0".trim() : "0.1.0";
561
561
  });
562
562
 
563
563
  // src/update-notifier.ts
@@ -2251,7 +2251,7 @@ function parseVersion2(version) {
2251
2251
  var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
2252
2252
  var init_version2 = __esm(() => {
2253
2253
  init_output();
2254
- currentVersion2 = "0.115.0".trim() ? "0.115.0".trim() : "0.1.0";
2254
+ currentVersion2 = "0.116.0".trim() ? "0.116.0".trim() : "0.1.0";
2255
2255
  });
2256
2256
 
2257
2257
  // ../../packages/registry/src/index.ts
@@ -2917,6 +2917,17 @@ var init_src = __esm(() => {
2917
2917
  probeConfig: { cadenceMs: 10 * MINUTE_MS, cronName: "fluncle-note", kind: "cron" },
2918
2918
  weights: { status: "hidden" }
2919
2919
  },
2920
+ {
2921
+ command: "fluncle admin submissions triage",
2922
+ exposedContent: [
2923
+ "pre-chew a pending crew submission → an advisory queue verdict, fill-first (hybrid: one claude -p call)"
2924
+ ],
2925
+ kind: "cron",
2926
+ name: "cron.triage",
2927
+ operatorNotes: "every 15m. Hybrid --no-agent; a deterministic archive dedupe + DnB-plausibility heuristic feeds one claude -p phrasing, length-gated. Writes the verdict onto a PENDING submission so it lands in the /admin attention queue already assessed; approve/reject stays operator tier. Source: docs/agents/hermes/scripts/triage-sweep.{sh,ts}.",
2928
+ probeConfig: { cadenceMs: 15 * MINUTE_MS, cronName: "fluncle-triage", kind: "cron" },
2929
+ weights: { status: "hidden" }
2930
+ },
2920
2931
  {
2921
2932
  command: "fluncle admin logbook gaps",
2922
2933
  exposedContent: [
@@ -9783,13 +9794,24 @@ function normalizeCommanderError(error) {
9783
9794
  var stringOptions = new Set([
9784
9795
  "--analyzed-at",
9785
9796
  "--analyzed-from",
9797
+ "--at",
9798
+ "--audio",
9799
+ "--body",
9800
+ "--body-file",
9786
9801
  "--bpm",
9787
9802
  "--bpm-confidence",
9788
9803
  "--bpm-source",
9789
9804
  "--composition",
9805
+ "--content-file",
9806
+ "--context-note",
9790
9807
  "--cover",
9808
+ "--cues-file",
9809
+ "--cursor",
9791
9810
  "--dir",
9792
9811
  "--duration-ms",
9812
+ "--duration-target-sec",
9813
+ "--embedding",
9814
+ "--embedding-file",
9793
9815
  "--features",
9794
9816
  "--file",
9795
9817
  "--footage",
@@ -9798,29 +9820,50 @@ var stringOptions = new Set([
9798
9820
  "--footage-notext",
9799
9821
  "--footage-social",
9800
9822
  "--from",
9823
+ "--galaxy-id",
9824
+ "--has-key",
9801
9825
  "--intent",
9802
9826
  "--key",
9803
9827
  "--key-confidence",
9804
9828
  "--key-source",
9829
+ "--kind",
9805
9830
  "--limit",
9806
9831
  "--metrics",
9807
9832
  "--mime",
9833
+ "--model",
9808
9834
  "--note",
9835
+ "--order",
9836
+ "--parent-id",
9809
9837
  "--plate",
9810
9838
  "--plate-background",
9811
9839
  "--platform",
9812
9840
  "--poster",
9813
9841
  "--props",
9814
9842
  "--query",
9843
+ "--reasoning",
9815
9844
  "--recorded-at",
9845
+ "--recording",
9816
9846
  "--render",
9817
9847
  "--scene",
9818
9848
  "--scheduled-for",
9849
+ "--script",
9850
+ "--script-file",
9851
+ "--seed",
9819
9852
  "--soundcloud-url",
9820
9853
  "--source",
9821
9854
  "--status",
9855
+ "--subject",
9856
+ "--title",
9857
+ "--token",
9858
+ "--tracklist-file",
9822
9859
  "--url",
9823
- "--video-url"
9860
+ "--verdict",
9861
+ "--verdict-file",
9862
+ "--video",
9863
+ "--video-url",
9864
+ "--voice-id",
9865
+ "--window-since",
9866
+ "--window-until"
9824
9867
  ]);
9825
9868
  var rootHelpSections = `
9826
9869
 
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.115.0"
34
+ "version": "0.116.0"
35
35
  }