@sixsevenai/ai-dlc-installer 1.5.2 → 1.6.0
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/cli.js +13 -1
- package/dist/cli.js.map +1 -1
- package/library/agents/ai-dlc-navigator.md +4 -0
- package/library/agents/code-reviewer.md +11 -1
- package/library/agents/code-skeptic.md +4 -0
- package/library/agents/security-auditor.md +22 -1
- package/library/agents/workflow-executor.md +1 -0
- package/library/commands/ai-dlc/complete-bolt.md +14 -0
- package/library/commands/ai-dlc/next-phase.md +14 -0
- package/library/commands/ai-dlc/review-artifacts.md +11 -1
- package/library/commands/ai-dlc/review-code.md +13 -2
- package/library/commands/ai-dlc/security-audit.md +9 -1
- package/library/commands/ai-dlc/setup.md +14 -0
- package/library/commands/capture-screenshot.md +45 -0
- package/library/commands/commit.md +7 -0
- package/library/commands/git/branch-report.md +90 -55
- package/library/commands/im-lost.md +2 -1
- package/library/scripts/capture-screenshot.ps1 +140 -0
- package/library/skills/ai-dlc-knowledge/references/commands-catalog.md +40 -26
- package/library/skills/dotnet-development/SKILL.md +16 -0
- package/library/skills/project-initializer/SKILL.md +7 -0
- package/library/skills/terse/Skill.md +121 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -24,6 +24,9 @@ var INSTALLER_VERSION = (() => {
|
|
|
24
24
|
return "0.0.0-unknown";
|
|
25
25
|
}
|
|
26
26
|
})();
|
|
27
|
+
var RECOMMENDED_ENV_VARS = {
|
|
28
|
+
ENABLE_PROMPT_CACHING_1H: "1"
|
|
29
|
+
};
|
|
27
30
|
var CLAUDE_DIRECTORY_NAME = ".claude";
|
|
28
31
|
var SOURCE_LIBRARY_RELATIVE = "../library";
|
|
29
32
|
async function resolveSourceDirectory() {
|
|
@@ -96,7 +99,7 @@ var WORKFLOW_STEPS = [
|
|
|
96
99
|
{ id: "confirm-installation", name: "Confirm Installation", order: 9, isSkippable: true },
|
|
97
100
|
{ id: "execute-installation", name: "Install Files", order: 10, isSkippable: false },
|
|
98
101
|
{ id: "validate-installation", name: "Validate Installation", order: 11, isSkippable: false },
|
|
99
|
-
{ id: "show-summary", name: "Show Summary", order: 12, isSkippable: false }
|
|
102
|
+
{ id: "show-summary", name: "Show Summary with recommended environment variables", order: 12, isSkippable: false }
|
|
100
103
|
];
|
|
101
104
|
function shouldSkipStep(stepId, options, isInteractive) {
|
|
102
105
|
switch (stepId) {
|
|
@@ -4606,6 +4609,15 @@ async function executeShowSummary(ctx, options, theme) {
|
|
|
4606
4609
|
console.log(` $ ${step.command}`);
|
|
4607
4610
|
}
|
|
4608
4611
|
}
|
|
4612
|
+
const envKeys = Object.keys(RECOMMENDED_ENV_VARS);
|
|
4613
|
+
if (envKeys.length > 0) {
|
|
4614
|
+
console.log("\n Recommended environment variables:");
|
|
4615
|
+
for (const key of envKeys) {
|
|
4616
|
+
const value = RECOMMENDED_ENV_VARS[key];
|
|
4617
|
+
console.log(` bash/zsh: export ${key}=${value}`);
|
|
4618
|
+
console.log(` PowerShell: $env:${key} = '${value}'`);
|
|
4619
|
+
}
|
|
4620
|
+
}
|
|
4609
4621
|
}
|
|
4610
4622
|
}
|
|
4611
4623
|
return {
|