@revturbine/cli 0.9.0 → 0.9.1
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/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -7122,7 +7122,7 @@ function renderShow(kind, config) {
|
|
|
7122
7122
|
var pkgVersion = createRequire(import.meta.url)("../package.json").version ?? "0.0.0";
|
|
7123
7123
|
var HELP_AFTER = `
|
|
7124
7124
|
Command groups:
|
|
7125
|
-
Set up init
|
|
7125
|
+
Set up init (alias: create)
|
|
7126
7126
|
Auth & meta login, logout, signup, whoami, schema, docs
|
|
7127
7127
|
Download download
|
|
7128
7128
|
Check validate, diff, show
|
|
@@ -7185,7 +7185,7 @@ function runInstall(manager, args, cwd) {
|
|
|
7185
7185
|
child.on("close", (code) => resolve(code ?? 1));
|
|
7186
7186
|
});
|
|
7187
7187
|
}
|
|
7188
|
-
program.command("init").description("Scaffold RevTurbine into this app: detect the stack, install the SDK, pin the CLI, drop a starter Playbook, and install the Agent Skills.").option("-d, --dir <path>", "Target directory (defaults to the current directory)").option("--dry-run", "Report what would be installed without running the package manager").option("--no-skills", "Do not install the RevTurbine Agent Skills").option("--json", "Emit the scaffold plan as JSON").action(async (opts) => {
|
|
7188
|
+
program.command("init").alias("create").description("Scaffold RevTurbine into this app: detect the stack, install the SDK, pin the CLI, drop a starter Playbook, and install the Agent Skills.").option("-d, --dir <path>", "Target directory (defaults to the current directory)").option("--dry-run", "Report what would be installed without running the package manager").option("--no-skills", "Do not install the RevTurbine Agent Skills").option("--json", "Emit the scaffold plan as JSON").action(async (opts) => {
|
|
7189
7189
|
const dir = path2.resolve(opts.dir ?? process.cwd());
|
|
7190
7190
|
const manifestPath = path2.join(dir, "package.json");
|
|
7191
7191
|
if (!existsSync2(manifestPath)) {
|
package/package.json
CHANGED