@pjmendonca/devflow 1.11.1 → 1.12.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/CHANGELOG.md +10 -0
- package/README.md +39 -3
- package/package.json +1 -1
- package/tooling/scripts/lib/__init__.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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.12.0] - 2025-12-25
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Documentation** - Standardized installation instructions across all documentation
|
|
12
|
+
- README now shows all three installation methods with clear use cases
|
|
13
|
+
- Option 1 (Recommended): `npx @pjmendonca/devflow install` for existing projects
|
|
14
|
+
- Option 2: `npx @pjmendonca/devflow@latest` or `npm create @pjmendonca/devflow` for standalone projects
|
|
15
|
+
- Option 3: `npm install -g @pjmendonca/devflow` for global installation
|
|
16
|
+
- Consistent formatting and explanations across README and CHANGELOG
|
|
17
|
+
|
|
8
18
|
## [1.11.1] - 2025-12-24
|
|
9
19
|
|
|
10
20
|
### Changed
|
package/README.md
CHANGED
|
@@ -44,10 +44,35 @@ A production-ready, portable workflow automation system that uses Claude Code CL
|
|
|
44
44
|
|
|
45
45
|
### Installation
|
|
46
46
|
|
|
47
|
+
Choose the method that best fits your needs:
|
|
48
|
+
|
|
49
|
+
#### Option 1: Add to Existing Project (Recommended)
|
|
50
|
+
|
|
47
51
|
```bash
|
|
48
|
-
#
|
|
52
|
+
# Navigate to your project directory
|
|
53
|
+
cd your-project
|
|
54
|
+
|
|
55
|
+
# Install Devflow into your existing project
|
|
56
|
+
npx @pjmendonca/devflow install
|
|
57
|
+
|
|
58
|
+
# This will:
|
|
59
|
+
# 1. Copy .claude/ and tooling/ directories into your project
|
|
60
|
+
# 2. Claude Code automatically detects the slash commands
|
|
61
|
+
# 3. Optionally run the setup wizard (use --skip-setup to skip)
|
|
62
|
+
|
|
63
|
+
# Start using immediately:
|
|
64
|
+
/story <key>
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
#### Option 2: Create Standalone Project
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Create a new Devflow directory
|
|
49
71
|
npx @pjmendonca/devflow@latest
|
|
50
72
|
|
|
73
|
+
# Or use npm create:
|
|
74
|
+
npm create @pjmendonca/devflow
|
|
75
|
+
|
|
51
76
|
# This will:
|
|
52
77
|
# 1. Create a "Devflow" folder in your current directory
|
|
53
78
|
# 2. Copy all essential files into it
|
|
@@ -58,6 +83,17 @@ cd Devflow
|
|
|
58
83
|
/story <key>
|
|
59
84
|
```
|
|
60
85
|
|
|
86
|
+
#### Option 3: Global Installation
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
# Install globally for system-wide access
|
|
90
|
+
npm install -g @pjmendonca/devflow
|
|
91
|
+
|
|
92
|
+
# Then run from anywhere:
|
|
93
|
+
devflow install # Add to existing project
|
|
94
|
+
devflow --help # Show available commands
|
|
95
|
+
```
|
|
96
|
+
|
|
61
97
|
|
|
62
98
|
### Agent Personas
|
|
63
99
|
|
|
@@ -514,7 +550,7 @@ Free to use in commercial and personal projects.
|
|
|
514
550
|
|
|
515
551
|
|
|
516
552
|
<!-- VERSION_START - Auto-updated by update_version.py -->
|
|
517
|
-
**Version**: 1.
|
|
553
|
+
**Version**: 1.12.0
|
|
518
554
|
**Status**: Production Ready
|
|
519
|
-
**Last Updated**: 2025-12-
|
|
555
|
+
**Last Updated**: 2025-12-25
|
|
520
556
|
<!-- VERSION_END -->
|
package/package.json
CHANGED