@prepcli/prepcli 0.1.0 → 0.1.1
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/README.md +4 -3
- package/package.json +1 -1
- package/src/lib/targets/antigravity.js +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# prepcli
|
|
2
2
|
|
|
3
|
-
Persistent AI collaboration layer — structured prompts, project context, and decision records for Claude, Cursor, Windsurf, and more.
|
|
3
|
+
Persistent AI collaboration layer — structured prompts, project context, and decision records for Claude, Cursor, Windsurf, Antigravity, and more.
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -236,6 +236,7 @@ When prompted, choose where to install:
|
|
|
236
236
|
- **Claude Code** — personal (`~/.claude/commands`) or project (`.claude/commands`)
|
|
237
237
|
- **Cursor** — `.cursor/prompts`
|
|
238
238
|
- **Windsurf** — `.windsurf`
|
|
239
|
+
- **Antigravity** — `.agent/workflows`
|
|
239
240
|
|
|
240
241
|
---
|
|
241
242
|
|
|
@@ -303,7 +304,7 @@ prepcli doctor # diagnose setup issues
|
|
|
303
304
|
|
|
304
305
|
- Node.js >= 18
|
|
305
306
|
- Git
|
|
306
|
-
- Claude Code, Cursor, or
|
|
307
|
+
- Claude Code, Cursor, Windsurf, or Antigravity
|
|
307
308
|
|
|
308
309
|
---
|
|
309
310
|
|
|
@@ -353,7 +354,7 @@ src/
|
|
|
353
354
|
git.js shadow branch plumbing
|
|
354
355
|
session-file.js .prepcli-session read/write
|
|
355
356
|
decision.js Markdown record builder
|
|
356
|
-
targets/ AI tool detection (Claude, Cursor, Windsurf)
|
|
357
|
+
targets/ AI tool detection (Claude, Cursor, Windsurf, Antigravity)
|
|
357
358
|
|
|
358
359
|
workflows/
|
|
359
360
|
prep.md /prep workflow
|
package/package.json
CHANGED
|
@@ -8,7 +8,7 @@ module.exports = function getAntigravityTargets({ cwd }) {
|
|
|
8
8
|
destination: path.join(cwd, ".agent", "workflows"),
|
|
9
9
|
commandNames: ["antigravity"],
|
|
10
10
|
hintPaths: [path.join(cwd, ".agent")],
|
|
11
|
-
defaultWhenUndetected:
|
|
11
|
+
defaultWhenUndetected: false
|
|
12
12
|
}
|
|
13
13
|
];
|
|
14
14
|
};
|