@pjmendonca/devflow 1.13.0 → 1.13.1
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 +9 -0
- package/README.md +1 -1
- package/bin/create-devflow.js +6 -14
- package/bin/devflow-install.js +2 -13
- package/package.json +1 -1
- package/tooling/scripts/lib/__init__.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to this project 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
|
+
## [1.13.1] - 2025-12-25
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Install Flow** - Removed automatic setup wizard from install commands
|
|
12
|
+
- `devflow install` and `create-devflow` no longer auto-run the old wizard
|
|
13
|
+
- Users now directed to use `/init` for AI-guided project setup
|
|
14
|
+
- Updated next steps messaging to include `/init` command
|
|
15
|
+
- Cleaner install experience that defers configuration to Claude Code
|
|
16
|
+
|
|
8
17
|
## [1.13.0] - 2025-12-25
|
|
9
18
|
|
|
10
19
|
### Added
|
package/README.md
CHANGED
|
@@ -550,7 +550,7 @@ Free to use in commercial and personal projects.
|
|
|
550
550
|
|
|
551
551
|
|
|
552
552
|
<!-- VERSION_START - Auto-updated by update_version.py -->
|
|
553
|
-
**Version**: 1.13.
|
|
553
|
+
**Version**: 1.13.1
|
|
554
554
|
**Status**: Production Ready
|
|
555
555
|
**Last Updated**: 2025-12-25
|
|
556
556
|
<!-- VERSION_END -->
|
package/bin/create-devflow.js
CHANGED
|
@@ -71,18 +71,10 @@ try {
|
|
|
71
71
|
console.log('Skipped\n');
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
console.log('
|
|
75
|
-
try {
|
|
76
|
-
const initScript = path.join(targetDir, 'bin', 'devflow-init.js');
|
|
77
|
-
if (fs.existsSync(initScript)) {
|
|
78
|
-
execSync(`node "${initScript}"`, { stdio: 'inherit' });
|
|
79
|
-
}
|
|
80
|
-
} catch (error) {
|
|
81
|
-
console.log('\nSetup wizard failed. Run manually: cd Devflow && npx devflow-init\n');
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
console.log('\nProject created successfully!');
|
|
74
|
+
console.log('Project created successfully!');
|
|
85
75
|
console.log('\nNext steps:');
|
|
86
|
-
console.log(' cd Devflow');
|
|
87
|
-
console.log('
|
|
88
|
-
console.log('
|
|
76
|
+
console.log(' 1. cd Devflow');
|
|
77
|
+
console.log(' 2. Open Claude Code');
|
|
78
|
+
console.log(' 3. Run /init for AI-guided project setup');
|
|
79
|
+
console.log(' 4. Use /story <key> to start development');
|
|
80
|
+
console.log('\nDocumentation: https://github.com/Pedro-Jose-da-Rocha-Mendonca/Devflow\n');
|
package/bin/devflow-install.js
CHANGED
|
@@ -64,20 +64,9 @@ for (const file of configs) {
|
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
-
console.log('\nInstallation complete!\n');
|
|
68
|
-
|
|
69
|
-
const args = process.argv.slice(2);
|
|
70
|
-
if (!args.includes('--skip-setup') && !args.includes('-s')) {
|
|
71
|
-
console.log('Running setup wizard...\n');
|
|
72
|
-
try {
|
|
73
|
-
execSync(`node "${path.join(__dirname, 'devflow-init.js')}"`, { stdio: 'inherit', cwd: targetDir });
|
|
74
|
-
} catch (error) {
|
|
75
|
-
console.log('\nSetup wizard failed. Run manually: npx @pjmendonca/devflow init\n');
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
67
|
console.log('\nDevflow installed successfully!');
|
|
80
68
|
console.log('\nNext steps:');
|
|
81
69
|
console.log(' 1. Open Claude Code in this directory');
|
|
82
|
-
console.log(' 2.
|
|
70
|
+
console.log(' 2. Run /init for AI-guided project setup');
|
|
71
|
+
console.log(' 3. Use /story <key> to start development');
|
|
83
72
|
console.log('\nDocumentation: https://github.com/Pedro-Jose-da-Rocha-Mendonca/Devflow\n');
|
package/package.json
CHANGED