openplanr 1.9.0 → 1.10.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/install.sh CHANGED
@@ -3,13 +3,11 @@ set -eu
3
3
 
4
4
  MINIMAL=0
5
5
  VERSION="${OPENPLANR_VERSION:-latest}"
6
- SETUP_ARGS=""
7
6
 
8
7
  while [ "$#" -gt 0 ]; do
9
8
  case "$1" in
10
9
  --minimal)
11
10
  MINIMAL=1
12
- SETUP_ARGS="$SETUP_ARGS --minimal"
13
11
  ;;
14
12
  --version)
15
13
  shift
@@ -20,7 +18,8 @@ while [ "$#" -gt 0 ]; do
20
18
  VERSION="$1"
21
19
  ;;
22
20
  *)
23
- SETUP_ARGS="$SETUP_ARGS $1"
21
+ printf '%s\n' "E_INSTALL_OPTION: Unknown installer option: $1" >&2
22
+ exit 2
24
23
  ;;
25
24
  esac
26
25
  shift
@@ -39,10 +38,17 @@ if [ "$NODE_MAJOR" -lt 20 ]; then
39
38
  fi
40
39
 
41
40
  if [ "$MINIMAL" -eq 1 ]; then
42
- npm install --global --omit=optional "openplanr@$VERSION"
41
+ npm install --global --omit=optional --no-audit --no-fund --loglevel=error "openplanr@$VERSION"
43
42
  else
44
- npm install --global "openplanr@$VERSION"
43
+ npm install --global --no-audit --no-fund --loglevel=error "openplanr@$VERSION"
45
44
  fi
46
45
 
47
- # shellcheck disable=SC2086
48
- planr setup $SETUP_ARGS
46
+ INSTALLED_VERSION=$(planr --version)
47
+ printf '\n%s\n\n' "OpenPlanr $INSTALLED_VERSION installed successfully."
48
+ printf '%s\n' 'Next:'
49
+ printf '%s\n' ' cd /path/to/your/project'
50
+ if [ "$MINIMAL" -eq 1 ]; then
51
+ printf '%s\n' ' planr setup --minimal'
52
+ else
53
+ printf '%s\n' ' planr setup'
54
+ fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openplanr",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "description": "AI-powered planning CLI — backlog, sprints, task templates, estimation, GitHub and Linear sync, and AI agent rules for Cursor, Claude Code, and Codex",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",
@@ -85,7 +85,7 @@
85
85
  "zod": "^4.3.6"
86
86
  },
87
87
  "optionalDependencies": {
88
- "planr-pipeline": "^0.25.1"
88
+ "planr-pipeline": "^0.26.3"
89
89
  },
90
90
  "devDependencies": {
91
91
  "@biomejs/biome": "^2.4.9",