lynxprompt 1.4.0 → 1.4.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/index.js CHANGED
@@ -4025,7 +4025,7 @@ function generateYamlConfig(options, platform2) {
4025
4025
 
4026
4026
  // src/commands/wizard.ts
4027
4027
  var DRAFTS_DIR = ".lynxprompt/drafts";
4028
- var CLI_VERSION = "1.4.0";
4028
+ var CLI_VERSION = "1.4.1";
4029
4029
  async function saveDraftLocally(name, config2, stepReached) {
4030
4030
  const draftsPath = join4(process.cwd(), DRAFTS_DIR);
4031
4031
  await mkdir3(draftsPath, { recursive: true });
@@ -5424,9 +5424,9 @@ async function runWizardWithDraftProtection(options) {
5424
5424
  console.log(y(" \u2502") + g(pad(" \u{1F680} Unlock LynxPrompt Cloud (FREE)", W)) + y("\u2502"));
5425
5425
  console.log(y(" \u2502") + " ".repeat(W) + y("\u2502"));
5426
5426
  console.log(y(" \u2502") + pad(" \u2713 Sync configs across all your devices", W) + y("\u2502"));
5427
- console.log(y(" \u2502") + pad(" \u2713 Share blueprints with your team", W) + y("\u2502"));
5428
5427
  console.log(y(" \u2502") + pad(" \u2713 Save preferences for future wizards", W) + y("\u2502"));
5429
5428
  console.log(y(" \u2502") + pad(" \u2713 Auto-update configs via lynxp push/pull", W) + y("\u2502"));
5429
+ console.log(y(" \u2502") + pad(" \u2713 Create reusable blueprint templates", W) + y("\u2502"));
5430
5430
  console.log(y(" \u2502") + " ".repeat(W) + y("\u2502"));
5431
5431
  console.log(y(" \u2502") + pad(" Sign in now: " + chalk7.cyan("lynxp login"), W + 10) + y("\u2502"));
5432
5432
  console.log(y(" \u2570" + "\u2500".repeat(W) + "\u256F"));
@@ -9495,7 +9495,7 @@ function handleError2(error) {
9495
9495
  }
9496
9496
 
9497
9497
  // src/index.ts
9498
- var CLI_VERSION2 = "1.4.0";
9498
+ var CLI_VERSION2 = "1.4.1";
9499
9499
  var program = new Command();
9500
9500
  program.name("lynxprompt").description("CLI for LynxPrompt - Generate AI IDE configuration files").version(CLI_VERSION2);
9501
9501
  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);