@benzotti/jedi 0.1.4 → 0.1.6
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 +7 -1
- package/action/workflow-template.yml +6 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
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
|
-
|
|
53
|
+
bunx @benzotti/jedi@${{ inputs.jedi_version }} init --ci
|
|
48
54
|
fi
|
|
49
55
|
|
|
50
56
|
# Ensure persistence directory exists
|
|
@@ -65,11 +65,16 @@ jobs:
|
|
|
65
65
|
jedi-state-${{ github.repository }}-main
|
|
66
66
|
jedi-state-${{ github.repository }}-
|
|
67
67
|
|
|
68
|
+
# Bun is required to run the Jedi CLI
|
|
69
|
+
- uses: oven-sh/setup-bun@v2
|
|
70
|
+
with:
|
|
71
|
+
bun-version: latest
|
|
72
|
+
|
|
68
73
|
# Bootstrap Jedi framework if not present (first run or cache miss)
|
|
69
74
|
- name: Bootstrap Jedi
|
|
70
75
|
run: |
|
|
71
76
|
if [ ! -d ".jdi/framework" ]; then
|
|
72
|
-
|
|
77
|
+
bunx @benzotti/jedi@latest init --ci
|
|
73
78
|
fi
|
|
74
79
|
mkdir -p .jdi/persistence
|
|
75
80
|
|
package/dist/index.js
CHANGED
|
@@ -11387,7 +11387,7 @@ var setupActionCommand = defineCommand({
|
|
|
11387
11387
|
consola.warn(`Workflow already exists at ${workflowDest}`);
|
|
11388
11388
|
consola.info("Skipping workflow copy. Delete it manually to regenerate.");
|
|
11389
11389
|
} else {
|
|
11390
|
-
const templatePath = join12(import.meta.dir, "
|
|
11390
|
+
const templatePath = join12(import.meta.dir, "../action/workflow-template.yml");
|
|
11391
11391
|
if (!existsSync12(templatePath)) {
|
|
11392
11392
|
consola.error("Workflow template not found. Ensure @benzotti/jedi is properly installed.");
|
|
11393
11393
|
process.exit(1);
|
|
@@ -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.
|
|
11434
|
+
version: "0.1.6",
|
|
11435
11435
|
description: "JDI - Context-efficient AI development framework for Claude Code",
|
|
11436
11436
|
type: "module",
|
|
11437
11437
|
bin: {
|