lynxprompt 2.0.9 → 2.0.11
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 +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5529,7 +5529,7 @@ var TEST_FRAMEWORKS2 = TEST_FRAMEWORKS;
|
|
|
5529
5529
|
|
|
5530
5530
|
// src/commands/wizard.ts
|
|
5531
5531
|
var DRAFTS_DIR = ".lynxprompt/drafts";
|
|
5532
|
-
var CLI_VERSION = "2.0.
|
|
5532
|
+
var CLI_VERSION = "2.0.11";
|
|
5533
5533
|
async function saveDraftLocally(name, config2, stepReached) {
|
|
5534
5534
|
const draftsPath = join4(process.cwd(), DRAFTS_DIR);
|
|
5535
5535
|
await mkdir3(draftsPath, { recursive: true });
|
|
@@ -11181,7 +11181,7 @@ async function configCommand(action, valueArg) {
|
|
|
11181
11181
|
}
|
|
11182
11182
|
|
|
11183
11183
|
// src/index.ts
|
|
11184
|
-
var CLI_VERSION2 = "2.0.
|
|
11184
|
+
var CLI_VERSION2 = "2.0.11";
|
|
11185
11185
|
var program = new Command();
|
|
11186
11186
|
program.name("lynxprompt").description("CLI for LynxPrompt - Generate AI IDE configuration files").version(CLI_VERSION2);
|
|
11187
11187
|
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);
|