fluncle 0.104.0 → 0.105.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.105.0".trim() ? "0.105.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -974,6 +974,7 @@ function mapTrack(track) {
|
|
|
974
974
|
postedToTelegram: track.postedToTelegram,
|
|
975
975
|
previewUrl: track.previewUrl,
|
|
976
976
|
releaseDate: track.releaseDate,
|
|
977
|
+
sourceAudioKey: track.sourceAudioKey,
|
|
977
978
|
spotifyUrl: track.spotifyUrl,
|
|
978
979
|
title: track.title,
|
|
979
980
|
trackId: track.trackId,
|
|
@@ -1685,6 +1686,7 @@ function mapTrack2(track) {
|
|
|
1685
1686
|
postedToTelegram: track.postedToTelegram,
|
|
1686
1687
|
previewUrl: track.previewUrl,
|
|
1687
1688
|
releaseDate: track.releaseDate,
|
|
1689
|
+
sourceAudioKey: track.sourceAudioKey,
|
|
1688
1690
|
spotifyUrl: track.spotifyUrl,
|
|
1689
1691
|
title: track.title,
|
|
1690
1692
|
trackId: track.trackId,
|
|
@@ -2205,7 +2207,7 @@ function parseVersion2(version) {
|
|
|
2205
2207
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2206
2208
|
var init_version2 = __esm(() => {
|
|
2207
2209
|
init_output();
|
|
2208
|
-
currentVersion2 = "0.
|
|
2210
|
+
currentVersion2 = "0.105.0".trim() ? "0.105.0".trim() : "0.1.0";
|
|
2209
2211
|
});
|
|
2210
2212
|
|
|
2211
2213
|
// ../../packages/registry/src/index.ts
|
|
@@ -2884,6 +2886,16 @@ var init_src = __esm(() => {
|
|
|
2884
2886
|
probeConfig: { cadenceMs: 10 * MINUTE_MS, cronName: "fluncle-social-capture", kind: "cron" },
|
|
2885
2887
|
weights: { status: "hidden" }
|
|
2886
2888
|
},
|
|
2889
|
+
{
|
|
2890
|
+
exposedContent: [
|
|
2891
|
+
"cut each pending operator-framed 9:16 clip out of its set video → ship to R2 (--no-agent, ffmpeg)"
|
|
2892
|
+
],
|
|
2893
|
+
kind: "cron",
|
|
2894
|
+
name: "cron.studio-clip",
|
|
2895
|
+
operatorNotes: "every 15m. Pure-trigger, zero LLM tokens: a deterministic ffmpeg cut driven by the fluncle CLI (`admin clips list` → `admin clips cut`), agent-scoped (list_clips + the agent-tier presign_clip_upload / finalize_clip_cut). Cuts the operator-framed 9:16 clips from the /admin/studio editor (keyed by Log ID) out of the set video → ships `<clipId>/footage.mp4` to R2 for the /admin/clips library + the clip drip-feed. The box runs the standalone bun BINARY (the npm thin client can't spawn ffmpeg). Source: docs/agents/hermes/scripts/clip-sweep.sh. Probed on /status as cron.studio-clip.",
|
|
2896
|
+
probeConfig: { cadenceMs: 15 * MINUTE_MS, cronName: "fluncle-studio-clip", kind: "cron" },
|
|
2897
|
+
weights: { status: "hidden" }
|
|
2898
|
+
},
|
|
2887
2899
|
{
|
|
2888
2900
|
command: "fluncle admin clips drip-pause",
|
|
2889
2901
|
exposedContent: [
|
package/package.json
CHANGED