@benzotti/jedi 0.1.9 → 0.1.10

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.
@@ -80,6 +80,13 @@ jobs:
80
80
  fi
81
81
  mkdir -p .jdi/persistence
82
82
 
83
+ # Exclude Jedi working directories from git so they don't get committed
84
+ # or conflict with branch checkouts — they live in the cache only
85
+ mkdir -p .git/info
86
+ for pattern in '.jdi/' '.claude/'; do
87
+ grep -qxF "$pattern" .git/info/exclude 2>/dev/null || echo "$pattern" >> .git/info/exclude
88
+ done
89
+
83
90
  # Run Jedi via the official Claude Code Action (tag mode — posts comments automatically)
84
91
  # NOTE: No 'prompt' input — Jedi instructions live in .claude/CLAUDE.md (written by bootstrap)
85
92
  # Using prompt would switch to agent mode which doesn't post comments back to the PR/issue
package/dist/index.js CHANGED
@@ -11488,7 +11488,7 @@ var setupActionCommand = defineCommand({
11488
11488
  // package.json
11489
11489
  var package_default = {
11490
11490
  name: "@benzotti/jedi",
11491
- version: "0.1.9",
11491
+ version: "0.1.10",
11492
11492
  description: "JDI - Context-efficient AI development framework for Claude Code",
11493
11493
  type: "module",
11494
11494
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benzotti/jedi",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "JDI - Context-efficient AI development framework for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {