@elizaos/cli 1.0.5 → 1.0.6
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/{chunk-PWCUUHGV.js → chunk-LXYNBPDV.js} +2 -2
- package/dist/{chunk-AAC6ZLXY.js → chunk-YTV6GDEJ.js} +182 -270
- package/dist/commands/plugins.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{migrator-6MQ5HFHL.js → migrator-BQMHMHSG.js} +1 -1
- package/dist/{plugin-creator-NYDPPK4W.js → plugin-creator-EUJNDFIB.js} +1 -1
- package/package.json +6 -7
- package/templates/project-tee-starter/package.json +3 -5
|
@@ -465,7 +465,7 @@ plugins.command("remove").aliases(["delete", "del", "rm"]).description("Remove a
|
|
|
465
465
|
});
|
|
466
466
|
plugins.command("upgrade").description("Upgrade a plugin from version 0.x to 1.x using AI-powered migration").argument("<path>", "GitHub repository URL or local folder path").option("--api-key <key>", "Anthropic API key (or use ANTHROPIC_API_KEY env var)").option("--skip-tests", "Skip test validation loop").option("--skip-validation", "Skip production readiness validation").action(async (pluginPath, opts) => {
|
|
467
467
|
try {
|
|
468
|
-
const { PluginMigrator } = await import("./migrator-
|
|
468
|
+
const { PluginMigrator } = await import("./migrator-BQMHMHSG.js");
|
|
469
469
|
if (opts.apiKey) {
|
|
470
470
|
process.env.ANTHROPIC_API_KEY = opts.apiKey;
|
|
471
471
|
}
|
|
@@ -506,7 +506,7 @@ Next steps:`);
|
|
|
506
506
|
});
|
|
507
507
|
plugins.command("generate").description("Generate a new plugin using AI-powered code generation").option("--api-key <key>", "Anthropic API key (or use ANTHROPIC_API_KEY env var)").option("--skip-tests", "Skip test validation loop").option("--skip-validation", "Skip production readiness validation").option("--skip-prompts", "Skip interactive prompts (requires --spec-file)").option("--spec-file <path>", "Path to JSON file containing plugin specification").action(async (opts) => {
|
|
508
508
|
try {
|
|
509
|
-
const { PluginCreator } = await import("./plugin-creator-
|
|
509
|
+
const { PluginCreator } = await import("./plugin-creator-EUJNDFIB.js");
|
|
510
510
|
if (opts.apiKey) {
|
|
511
511
|
process.env.ANTHROPIC_API_KEY = opts.apiKey;
|
|
512
512
|
}
|