devlyn-cli 1.12.1 → 1.12.2
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/bin/devlyn.js +5 -1
- package/package.json +1 -1
package/bin/devlyn.js
CHANGED
|
@@ -599,10 +599,14 @@ async function init(skipPrompts = false) {
|
|
|
599
599
|
globalSettings.env.CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING = '1';
|
|
600
600
|
globalSettingsChanged = true;
|
|
601
601
|
}
|
|
602
|
+
if (!globalSettings.env.ENABLE_PROMPT_CACHING_1H) {
|
|
603
|
+
globalSettings.env.ENABLE_PROMPT_CACHING_1H = 'true';
|
|
604
|
+
globalSettingsChanged = true;
|
|
605
|
+
}
|
|
602
606
|
if (globalSettingsChanged) {
|
|
603
607
|
if (!fs.existsSync(globalClaudeDir)) fs.mkdirSync(globalClaudeDir, { recursive: true });
|
|
604
608
|
fs.writeFileSync(globalSettingsPath, JSON.stringify(globalSettings, null, 2) + '\n');
|
|
605
|
-
log(' → ~/.claude/settings.json (disabled adaptive thinking)', 'dim');
|
|
609
|
+
log(' → ~/.claude/settings.json (disabled adaptive thinking, enabled 1h prompt caching)', 'dim');
|
|
606
610
|
}
|
|
607
611
|
|
|
608
612
|
// Install agents for other detected CLIs
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devlyn-cli",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.2",
|
|
4
4
|
"description": "AI development toolkit for Claude Code — ideate, auto-resolve, and ship with context engineering and agent orchestration",
|
|
5
5
|
"homepage": "https://github.com/fysoul17/devlyn-cli#readme",
|
|
6
6
|
"bin": {
|