@benzotti/jedi 0.1.5 → 0.1.7

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/action/action.yml CHANGED
@@ -38,13 +38,19 @@ outputs:
38
38
  runs:
39
39
  using: 'composite'
40
40
  steps:
41
+ # Bun is required to run the Jedi CLI
42
+ - name: Setup Bun
43
+ uses: oven-sh/setup-bun@v2
44
+ with:
45
+ bun-version: latest
46
+
41
47
  # Ensure Jedi framework is initialised in the repo
42
48
  - name: Bootstrap Jedi framework
43
49
  shell: bash
44
50
  run: |
45
51
  if [ ! -d ".jdi/framework" ]; then
46
52
  echo "Jedi framework not found — initialising..."
47
- npx @benzotti/jedi@${{ inputs.jedi_version }} init --ci
53
+ bunx @benzotti/jedi@${{ inputs.jedi_version }} init --ci
48
54
  fi
49
55
 
50
56
  # Ensure persistence directory exists
@@ -36,6 +36,7 @@ permissions:
36
36
  contents: write
37
37
  pull-requests: write
38
38
  issues: write
39
+ id-token: write
39
40
 
40
41
  jobs:
41
42
  # ── Triggered by @jedi comments on issues/PRs ──
@@ -65,11 +66,16 @@ jobs:
65
66
  jedi-state-${{ github.repository }}-main
66
67
  jedi-state-${{ github.repository }}-
67
68
 
69
+ # Bun is required to run the Jedi CLI
70
+ - uses: oven-sh/setup-bun@v2
71
+ with:
72
+ bun-version: latest
73
+
68
74
  # Bootstrap Jedi framework if not present (first run or cache miss)
69
75
  - name: Bootstrap Jedi
70
76
  run: |
71
77
  if [ ! -d ".jdi/framework" ]; then
72
- npx @benzotti/jedi@latest init --ci
78
+ bunx @benzotti/jedi@latest init --ci
73
79
  fi
74
80
  mkdir -p .jdi/persistence
75
81
 
package/dist/index.js CHANGED
@@ -11431,7 +11431,7 @@ var setupActionCommand = defineCommand({
11431
11431
  // package.json
11432
11432
  var package_default = {
11433
11433
  name: "@benzotti/jedi",
11434
- version: "0.1.5",
11434
+ version: "0.1.7",
11435
11435
  description: "JDI - Context-efficient AI development framework for Claude Code",
11436
11436
  type: "module",
11437
11437
  bin: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benzotti/jedi",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "JDI - Context-efficient AI development framework for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {