Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@insforge/cli",
"version": "0.2.6",
"version": "0.2.7",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -eu

printf '%s\n' '--- package.json version and scripts ---'
sed -n '1,80p' package.json

printf '%s\n' '--- package-lock.json version entries ---'
rg -n -C 2 '"version": "(0\.[0-9]+\.[0-9]+)"' package-lock.json | head -80

printf '%s\n' '--- DEVELOPMENT.md versioning policy ---'
rg -n -C 5 -i 'version|semver|patch|minor|additive|feature' DEVELOPMENT.md

printf '%s\n' '--- diagnose incident references ---'
rg -n -C 3 'diagnose|incident' --glob '!node_modules/**' --glob '!dist/**' .

Repository: InsForge/CLI

Length of output: 50370


🏁 Script executed:

#!/bin/bash
set -eu

printf '%s\n' '--- version diff ---'
git diff --unified=1 -- package.json package-lock.json

printf '%s\n' '--- diagnose incident implementation ---'
sed -n '1,220p' src/commands/diagnose/incident.ts

printf '%s\n' '--- parsed package versions ---'
python3 - <<'PY'
import json
from pathlib import Path

package = json.loads(Path("package.json").read_text())
lock = json.loads(Path("package-lock.json").read_text())
print({"package.json": package["version"], "package-lock.json": lock["version"], "lock.root": lock["packages"][""]["version"]})
PY

Repository: InsForge/CLI

Length of output: 8492


Use a minor version for the additive command.

insforge diagnose incident is an additive CLI feature. DEVELOPMENT.md requires minor versions for additive features. Set the package version to 0.3.0 in package.json and both root version entries in package-lock.json.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@package.json` at line 3, Update the package version from 0.2.7 to 0.3.0 in
package.json and update both root version entries in package-lock.json to 0.3.0,
preserving all other dependency metadata.

"description": "InsForge CLI - Command line tool for InsForge platform",
"type": "module",
"bin": {
Expand Down
Loading