@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 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.0
553
+ **Version**: 1.13.1
554
554
  **Status**: Production Ready
555
555
  **Last Updated**: 2025-12-25
556
556
  <!-- VERSION_END -->
@@ -71,18 +71,10 @@ try {
71
71
  console.log('Skipped\n');
72
72
  }
73
73
 
74
- console.log('Running setup wizard...\n');
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(' Use /story <key> in Claude Code\n');
88
- console.log('Documentation: https://github.com/Pedro-Jose-da-Rocha-Mendonca/Devflow\n');
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');
@@ -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. Use /story <key> or npx @pjmendonca/devflow story <key>');
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pjmendonca/devflow",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Development workflow automation with Claude Code - agent-based development system with cost tracking",
5
5
  "keywords": [
6
6
  "devflow",
@@ -18,7 +18,7 @@ Usage:
18
18
  from lib.agent_router import AgentRouter
19
19
  """
20
20
 
21
- __version__ = "1.13.0"
21
+ __version__ = "1.13.1"
22
22
 
23
23
  # Lazy imports to avoid circular dependencies
24
24
  __all__ = [