lynxprompt 1.2.2 → 1.2.3
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 +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1121,7 +1121,7 @@ async function detectHierarchyInfo(cwd, file) {
|
|
|
1121
1121
|
}
|
|
1122
1122
|
return result;
|
|
1123
1123
|
}
|
|
1124
|
-
async function ensureHierarchy(
|
|
1124
|
+
async function ensureHierarchy(_cwd, repositoryRoot, name) {
|
|
1125
1125
|
try {
|
|
1126
1126
|
const response = await api.createHierarchy({
|
|
1127
1127
|
name,
|
|
@@ -3359,7 +3359,7 @@ function generateYamlConfig(options, platform2) {
|
|
|
3359
3359
|
|
|
3360
3360
|
// src/commands/wizard.ts
|
|
3361
3361
|
var DRAFTS_DIR = ".lynxprompt/drafts";
|
|
3362
|
-
var CLI_VERSION = "1.2.
|
|
3362
|
+
var CLI_VERSION = "1.2.3";
|
|
3363
3363
|
async function saveDraftLocally(name, config2, stepReached) {
|
|
3364
3364
|
const draftsPath = join4(process.cwd(), DRAFTS_DIR);
|
|
3365
3365
|
await mkdir3(draftsPath, { recursive: true });
|
|
@@ -8022,7 +8022,7 @@ function handleError2(error) {
|
|
|
8022
8022
|
}
|
|
8023
8023
|
|
|
8024
8024
|
// src/index.ts
|
|
8025
|
-
var CLI_VERSION2 = "1.2.
|
|
8025
|
+
var CLI_VERSION2 = "1.2.3";
|
|
8026
8026
|
var program = new Command();
|
|
8027
8027
|
program.name("lynxprompt").description("CLI for LynxPrompt - Generate AI IDE configuration files").version(CLI_VERSION2);
|
|
8028
8028
|
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);
|