@benzotti/jedi 0.1.9 → 0.1.11
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/workflow-template.yml +8 -0
- package/dist/index.js +7 -1
- package/package.json +1 -1
|
@@ -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
|
|
@@ -88,6 +95,7 @@ jobs:
|
|
|
88
95
|
with:
|
|
89
96
|
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
90
97
|
trigger_phrase: '@jedi'
|
|
98
|
+
bot_name: 'jedi[bot]'
|
|
91
99
|
env:
|
|
92
100
|
CLICKUP_API_TOKEN: ${{ secrets.CLICKUP_API_TOKEN }}
|
|
93
101
|
|
package/dist/index.js
CHANGED
|
@@ -9295,6 +9295,12 @@ async function copyFrameworkFiles(cwd, projectType, force, ci = false) {
|
|
|
9295
9295
|
|
|
9296
9296
|
You are Jedi, an AI development framework that uses specialised agents to plan, implement, review, and ship features.
|
|
9297
9297
|
|
|
9298
|
+
## Identity
|
|
9299
|
+
|
|
9300
|
+
You are **Jedi**, not Claude. Always refer to yourself as "Jedi" in your responses.
|
|
9301
|
+
Use "Jedi" in summaries, status updates, and sign-offs (e.g. "Jedi has completed..." not "Claude has completed...").
|
|
9302
|
+
End each response with a brief signature line: \`\u2014 Jedi\`
|
|
9303
|
+
|
|
9298
9304
|
## Framework
|
|
9299
9305
|
|
|
9300
9306
|
Read \`.jdi/framework/components/meta/AgentBase.md\` for the base agent protocol.
|
|
@@ -11488,7 +11494,7 @@ var setupActionCommand = defineCommand({
|
|
|
11488
11494
|
// package.json
|
|
11489
11495
|
var package_default = {
|
|
11490
11496
|
name: "@benzotti/jedi",
|
|
11491
|
-
version: "0.1.
|
|
11497
|
+
version: "0.1.11",
|
|
11492
11498
|
description: "JDI - Context-efficient AI development framework for Claude Code",
|
|
11493
11499
|
type: "module",
|
|
11494
11500
|
bin: {
|