dhurandhar 2.4.1 → 2.4.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/CHANGELOG.md +14 -0
- package/cli/commands/init.js +6 -6
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to Dhurandhar will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.4.2] - 2026-04-02
|
|
9
|
+
|
|
10
|
+
### Fixed - "config already declared" Error
|
|
11
|
+
- Fixed duplicate `const config` declaration in init.js
|
|
12
|
+
- Renamed second declaration to `globalConfig`
|
|
13
|
+
- Updated all references to use correct variable
|
|
14
|
+
- Init command now works properly
|
|
15
|
+
|
|
16
|
+
### User Error Fixed
|
|
17
|
+
"Error: Identifier 'config' has already been declared"
|
|
18
|
+
**SOLUTION**: Renamed duplicate variable!
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
8
22
|
## [2.4.1] - 2026-04-02
|
|
9
23
|
|
|
10
24
|
### Fixed - Critical Bug Fix
|
package/cli/commands/init.js
CHANGED
|
@@ -215,22 +215,22 @@ dhurandhar next
|
|
|
215
215
|
spinner.stop('Project initialized!');
|
|
216
216
|
|
|
217
217
|
// Setup AI coding assistant integration
|
|
218
|
-
const
|
|
218
|
+
const globalConfig = loadConfig();
|
|
219
219
|
const assistant = getAICodingAssistant();
|
|
220
220
|
|
|
221
|
-
if (
|
|
221
|
+
if (globalConfig.aiCodingAssistant !== 'none' && globalConfig.deepIntegration) {
|
|
222
222
|
console.log(''); // Blank line
|
|
223
|
-
setupAIAssistantIntegration(
|
|
223
|
+
setupAIAssistantIntegration(globalConfig.aiCodingAssistant, projectName, projectType);
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
clack.outro(chalk.green.bold('✓ Project created successfully!'));
|
|
227
227
|
|
|
228
228
|
console.log('');
|
|
229
229
|
console.log(chalk.cyan('Next steps:'));
|
|
230
|
-
console.log(' 1. ' + chalk.bold('dhurandhar yudhishthira') + ' - Start Phase 1 (Features)');
|
|
231
|
-
console.log(' 2. ' + chalk.bold('dhurandhar status') + ' - Check project status');
|
|
230
|
+
console.log(' 1. ' + chalk.bold('./dhurandhar yudhishthira') + ' - Start Phase 1 (Features)');
|
|
231
|
+
console.log(' 2. ' + chalk.bold('./dhurandhar status') + ' - Check project status');
|
|
232
232
|
|
|
233
|
-
if (
|
|
233
|
+
if (globalConfig.aiCodingAssistant !== 'none') {
|
|
234
234
|
console.log('');
|
|
235
235
|
console.log(chalk.magenta(`💡 ${assistant.name} Integration:`));
|
|
236
236
|
console.log(chalk.gray(' - Context files created in .augment/'));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "dhurandhar",
|
|
4
|
-
"version": "2.4.
|
|
4
|
+
"version": "2.4.2",
|
|
5
5
|
"description": "The world's first AI-powered dharma-centric design framework. 8 Pandava agents + 21 sub-agents guide you from idea to production code. Features → Requirements → Entities → API → HLD → LLD → Implementation → Blessing. Complete with code generation, enterprise integrations, and mythological accuracy.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"system-design",
|