@controlflow-ai/daemon 0.1.3 → 0.1.4
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/daemon.js +6 -1
- package/package.json +1 -1
- package/src/daemon.ts +1 -1
package/bin/daemon.js
CHANGED
package/package.json
CHANGED
package/src/daemon.ts
CHANGED
|
@@ -1058,7 +1058,7 @@ async function reconcileManagedAgents(input: {
|
|
|
1058
1058
|
return activatedAgents;
|
|
1059
1059
|
}
|
|
1060
1060
|
|
|
1061
|
-
async function main(): Promise<void> {
|
|
1061
|
+
export async function main(): Promise<void> {
|
|
1062
1062
|
const rawArgs = parseArgs();
|
|
1063
1063
|
// When launched as `bun run src/daemon.ts --agent foo`, the first arg is a flag,
|
|
1064
1064
|
// not a subcommand. Shift it back into flags/values.
|