mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-04-25 16:36:22 +02:00
* add workspace access guidelines to instructions * updated example * removed incorrect example * add --example to add the examples from rowboat * changed --example to --sync-example * rename sync-examples option to sync-example in CLI * fix: sync-example implementation * refactor example import * fix yargs * fix: - remove changes to package-lock - remove output messages from app.js and moved them into importExample * fix: restore package-lock.json to match main (remove diff) * fix: naming of the commands * update: made import-example into import and it can import example workflows or user made workflows * update: added export capability * delete: remove misplaced podcast.json file * removed incomplete gemini3-test example json * remove: eliminate gemini3-test example from exports * Fix: better prompting around MCP config Add: copilot tool to add MCP servers * clean up prompt --------- Co-authored-by: Ramnique Singh <30795890+ramnique@users.noreply.github.com>
135 lines
4.1 KiB
JavaScript
Executable file
135 lines
4.1 KiB
JavaScript
Executable file
#!/usr/bin/env node
|
|
import yargs from 'yargs';
|
|
import { hideBin } from 'yargs/helpers';
|
|
import { app, modelConfig, updateState, importExample, listExamples, exportWorkflow } from '../dist/app.js';
|
|
|
|
yargs(hideBin(process.argv))
|
|
|
|
.command(
|
|
"$0",
|
|
"Run rowboatx",
|
|
(y) => y
|
|
.option("agent", {
|
|
type: "string",
|
|
description: "The agent to run",
|
|
default: "copilot",
|
|
})
|
|
.option("run_id", {
|
|
type: "string",
|
|
description: "Continue an existing run",
|
|
})
|
|
.option("input", {
|
|
type: "string",
|
|
description: "The input to the agent",
|
|
})
|
|
.option("no-interactive", {
|
|
type: "boolean",
|
|
description: "Do not interact with the user",
|
|
default: false,
|
|
}),
|
|
(argv) => {
|
|
app({
|
|
agent: argv.agent,
|
|
runId: argv.run_id,
|
|
input: argv.input,
|
|
noInteractive: argv.noInteractive,
|
|
});
|
|
}
|
|
)
|
|
.command(
|
|
"import",
|
|
"Import an example workflow (--example) or custom workflow from file (--file)",
|
|
(y) => y
|
|
.option("example", {
|
|
type: "string",
|
|
description: "Name of built-in example to import",
|
|
})
|
|
.option("file", {
|
|
type: "string",
|
|
description: "Path to custom workflow JSON file",
|
|
})
|
|
.check((argv) => {
|
|
if (!argv.example && !argv.file) {
|
|
throw new Error("Either --example or --file must be provided");
|
|
}
|
|
if (argv.example && argv.file) {
|
|
throw new Error("Cannot use both --example and --file at the same time");
|
|
}
|
|
return true;
|
|
}),
|
|
async (argv) => {
|
|
try {
|
|
if (argv.example) {
|
|
await importExample(String(argv.example).trim());
|
|
} else if (argv.file) {
|
|
await importExample(undefined, String(argv.file).trim());
|
|
}
|
|
} catch (error) {
|
|
console.error("Error:", error?.message ?? error);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
)
|
|
.command(
|
|
"list-examples",
|
|
"List all available example workflows",
|
|
(y) => y,
|
|
async () => {
|
|
try {
|
|
const examples = await listExamples();
|
|
if (examples.length === 0) {
|
|
console.error("No packaged examples are available to list.");
|
|
return;
|
|
}
|
|
for (const example of examples) {
|
|
console.log(example);
|
|
}
|
|
} catch (error) {
|
|
console.error(error?.message ?? error);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
)
|
|
.command(
|
|
"export",
|
|
"Export a workflow with all dependencies (outputs to stdout)",
|
|
(y) => y
|
|
.option("agent", {
|
|
type: "string",
|
|
description: "Entry agent name to export",
|
|
demandOption: true,
|
|
}),
|
|
async (argv) => {
|
|
try {
|
|
await exportWorkflow(String(argv.agent).trim());
|
|
} catch (error) {
|
|
console.error("Error:", error?.message ?? error);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
)
|
|
.command(
|
|
"model-config",
|
|
"Select model",
|
|
(y) => y,
|
|
(argv) => {
|
|
modelConfig();
|
|
}
|
|
)
|
|
.command(
|
|
"update-state <agent> <run_id>",
|
|
"Update state for a run",
|
|
(y) => y
|
|
.positional("agent", {
|
|
type: "string",
|
|
description: "The agent to run",
|
|
})
|
|
.positional("run_id", {
|
|
type: "string",
|
|
description: "The run id to update",
|
|
}),
|
|
(argv) => {
|
|
updateState(argv.agent, argv.run_id);
|
|
}
|
|
)
|
|
.parse();
|