lean-spec 0.2.5-dev.20251124062211 → 0.2.5-dev.20251124070920
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-YE3BCNO6.js → chunk-LV7XEQ4D.js} +6 -6
- package/dist/chunk-LV7XEQ4D.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
- package/templates/_shared/agents-components/enterprise-approval.md +3 -1
- package/templates/_shared/agents-components/workflow-enterprise.md +3 -1
- package/templates/_shared/agents-components/workflow-standard-detailed.md +3 -1
- package/templates/_shared/agents-components/workflow-standard.md +3 -1
- package/templates/enterprise/files/AGENTS.md +6 -2
- package/templates/examples/dark-theme/README.md +25 -14
- package/templates/examples/dark-theme/package.json +2 -2
- package/templates/examples/dark-theme/src/public/app.js +257 -72
- package/templates/examples/dark-theme/src/public/index.html +205 -18
- package/templates/examples/dark-theme/src/public/style.css +548 -86
- package/templates/examples/dark-theme/src/server.js +3 -2
- package/templates/minimal/files/AGENTS.md +3 -1
- package/templates/standard/files/AGENTS.md +3 -1
- package/dist/chunk-YE3BCNO6.js.map +0 -1
|
@@ -1957,13 +1957,13 @@ var EXAMPLES = {
|
|
|
1957
1957
|
"dark-theme": {
|
|
1958
1958
|
name: "dark-theme",
|
|
1959
1959
|
title: "Dark Theme Support",
|
|
1960
|
-
description: "Add dark theme support
|
|
1960
|
+
description: "Add dark theme support to a professional admin dashboard with charts",
|
|
1961
1961
|
difficulty: "beginner",
|
|
1962
1962
|
tutorial: "Your First Spec with AI",
|
|
1963
1963
|
tutorialUrl: "https://leanspec.dev/docs/tutorials/first-spec-with-ai",
|
|
1964
|
-
tech: ["HTML", "CSS", "JavaScript", "Express.js"],
|
|
1964
|
+
tech: ["HTML", "CSS", "JavaScript", "Chart.js", "Express.js"],
|
|
1965
1965
|
files: 6,
|
|
1966
|
-
lines:
|
|
1966
|
+
lines: 420
|
|
1967
1967
|
},
|
|
1968
1968
|
"dashboard-widgets": {
|
|
1969
1969
|
name: "dashboard-widgets",
|
|
@@ -2003,7 +2003,7 @@ var __dirname = path15.dirname(fileURLToPath(import.meta.url));
|
|
|
2003
2003
|
var TEMPLATES_DIR = path15.join(__dirname, "..", "templates");
|
|
2004
2004
|
var EXAMPLES_DIR = path15.join(TEMPLATES_DIR, "examples");
|
|
2005
2005
|
function initCommand() {
|
|
2006
|
-
return new Command("init").description("Initialize LeanSpec in current directory").option("-y, --yes", "Skip prompts and use defaults (quick start with standard template)").option("--example
|
|
2006
|
+
return new Command("init").description("Initialize LeanSpec in current directory").option("-y, --yes", "Skip prompts and use defaults (quick start with standard template)").option("--example [name]", "Scaffold an example project for tutorials (interactive if no name provided)").option("--name <dirname>", "Custom directory name for example project").option("--list", "List available example projects").action(async (options) => {
|
|
2007
2007
|
if (options.list) {
|
|
2008
2008
|
await listExamples();
|
|
2009
2009
|
return;
|
|
@@ -8808,5 +8808,5 @@ if (import.meta.url === `file://${process.argv[1]}`) {
|
|
|
8808
8808
|
}
|
|
8809
8809
|
|
|
8810
8810
|
export { analyzeCommand, archiveCommand, backfillCommand, boardCommand, checkCommand, compactCommand, createCommand, createMcpServer, depsCommand, examplesCommand, filesCommand, ganttCommand, initCommand, linkCommand, listCommand, mcpCommand, migrateCommand, openCommand, searchCommand, splitCommand, statsCommand, templatesCommand, timelineCommand, tokensCommand, uiCommand, unlinkCommand, updateCommand, validateCommand, viewCommand };
|
|
8811
|
-
//# sourceMappingURL=chunk-
|
|
8812
|
-
//# sourceMappingURL=chunk-
|
|
8811
|
+
//# sourceMappingURL=chunk-LV7XEQ4D.js.map
|
|
8812
|
+
//# sourceMappingURL=chunk-LV7XEQ4D.js.map
|