Skip to content

Commit 0a27f2d

Browse files
committed
refactor(verify): rename scripts to ai and add to monorepo workspaces
- Rename verification/scripts -> verification/ai for semantic clarity - Add verification/ai to root workspaces in package.json - Rename package to @vibes/verification-ai - Remove standalone package-lock.json (uses root node_modules now) - Update verify.just and .gitignore references
1 parent 2d4b1a2 commit 0a27f2d

File tree

16 files changed

+91
-1912
lines changed

16 files changed

+91
-1912
lines changed

.justfiles/verify.just

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,4 +528,4 @@ story STORY_ID: (story-report STORY_ID)
528528

529529
# Run AI verification for a story
530530
ai STORY_ID *ARGS:
531-
npx tsx verification/scripts/ai-verify.ts {{STORY_ID}} {{ARGS}}
531+
npx tsx verification/ai/ai-verify.ts {{STORY_ID}} {{ARGS}}

package-lock.json

Lines changed: 82 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"workspaces": [
88
"design-system",
99
"web-ui",
10-
"e2e-tests"
10+
"e2e-tests",
11+
"verification/ai"
1112
],
1213
"scripts": {
1314
"dev": "turbo run dev --filter=web-ui",

verification/.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
!checkpoints.json
1111
!config.toml
1212

13-
# Include scripts directory
14-
!scripts/
15-
!scripts/**
16-
scripts/node_modules/
17-
scripts/dist/
13+
# Include AI verification module
14+
!ai/
15+
!ai/**
16+
ai/node_modules/
17+
ai/dist/
File renamed without changes.

0 commit comments

Comments
 (0)