lynxprompt 2.0.7 → 2.0.8

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/index.js CHANGED
@@ -2438,9 +2438,9 @@ async function createOrLinkBlueprint(cwd, file, filename, content, options) {
2438
2438
  hierarchyId
2439
2439
  );
2440
2440
  if (existingBlueprint) {
2441
- console.log(chalk6.yellow(`
2442
- \u26A0 Found existing blueprint "${existingBlueprint.name}" (${existingBlueprint.id}) with the same path.`));
2443
- console.log(chalk6.gray(" Updating existing blueprint instead of creating a duplicate."));
2441
+ console.log(chalk6.cyan(`
2442
+ \u2139 Linked to existing blueprint "${existingBlueprint.name}" (${existingBlueprint.id}).`));
2443
+ console.log(chalk6.gray(" Pushing as an update."));
2444
2444
  await trackBlueprint(cwd, {
2445
2445
  id: existingBlueprint.id,
2446
2446
  name: existingBlueprint.name,
@@ -5527,7 +5527,7 @@ var TEST_FRAMEWORKS2 = TEST_FRAMEWORKS;
5527
5527
 
5528
5528
  // src/commands/wizard.ts
5529
5529
  var DRAFTS_DIR = ".lynxprompt/drafts";
5530
- var CLI_VERSION = "2.0.7";
5530
+ var CLI_VERSION = "2.0.8";
5531
5531
  async function saveDraftLocally(name, config2, stepReached) {
5532
5532
  const draftsPath = join4(process.cwd(), DRAFTS_DIR);
5533
5533
  await mkdir3(draftsPath, { recursive: true });
@@ -11179,7 +11179,7 @@ async function configCommand(action, valueArg) {
11179
11179
  }
11180
11180
 
11181
11181
  // src/index.ts
11182
- var CLI_VERSION2 = "2.0.7";
11182
+ var CLI_VERSION2 = "2.0.8";
11183
11183
  var program = new Command();
11184
11184
  program.name("lynxprompt").description("CLI for LynxPrompt - Generate AI IDE configuration files").version(CLI_VERSION2);
11185
11185
  program.command("wizard").description("Generate AI IDE configuration (recommended for most users)").option("-n, --name <name>", "Project name").option("-d, --description <description>", "Project description").option("-s, --stack <stack>", "Tech stack (comma-separated)").option("-f, --format <format>", "Output format: agents, cursor, or comma-separated for multiple").option("-p, --platforms <platforms>", "Alias for --format (deprecated)").option("--persona <persona>", "AI persona (fullstack, backend, frontend, devops, data, security)").option("--boundaries <level>", "Boundary preset (conservative, standard, permissive)").option("-y, --yes", "Skip prompts, use defaults (generates AGENTS.md)").option("-o, --output <dir>", "Output directory (default: current directory)").option("--repo-url <url>", "Analyze remote repository URL (GitHub/GitLab supported)").option("--blueprint", "Generate with [[VARIABLE|default]] placeholders for templates").option("--license <type>", "License type (mit, apache-2.0, gpl-3.0, etc.)").option("--ci-cd <platform>", "CI/CD platform (github_actions, gitlab_ci, jenkins, etc.)").option("--project-type <type>", "Project type (work, leisure, opensource, learning)").option("--detect-only", "Only detect project info, don't generate files").option("--load-draft <name>", "Load a saved wizard draft").option("--save-draft <name>", "Save wizard state as a draft (auto-saves at end)").option("--vars <values>", "Fill variables: VAR1=value1,VAR2=value2").action(wizardCommand);