git-vibe-setup 2.0.0 → 3.0.0
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/dist/cli.js +0 -0
- package/package.json +3 -3
- package/templates/.github/git-vibe.yml +11 -10
- package/templates/.github/workflows/address-feedback.yml +1 -1
- package/templates/.github/workflows/decompose.yml +1 -1
- package/templates/.github/workflows/develop.yml +1 -1
- package/templates/.github/workflows/investigate.yml +1 -1
- package/templates/.github/workflows/materialize.yml +1 -1
- package/templates/.github/workflows/review.yml +34 -0
- package/templates/.github/workflows/validate.yml +1 -1
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-vibe-setup",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"git-vibe-setup": "
|
|
7
|
+
"git-vibe-setup": "dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"files": [
|
|
10
10
|
"dist",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"README.md"
|
|
13
13
|
],
|
|
14
14
|
"scripts": {
|
|
15
|
-
"build": "tsc --project tsconfig.build.json",
|
|
15
|
+
"build": "tsc --project tsconfig.build.json && node -e \"require('node:fs').chmodSync('dist/cli.js', 0o755)\"",
|
|
16
16
|
"check": "prettier --check . && eslint . && corepack pnpm typecheck && corepack pnpm test && corepack pnpm build",
|
|
17
17
|
"test": "vitest run",
|
|
18
18
|
"typecheck": "tsc --project tsconfig.json --noEmit"
|
|
@@ -34,6 +34,11 @@ ai:
|
|
|
34
34
|
temperature: 0.2
|
|
35
35
|
max_output_tokens: 6000
|
|
36
36
|
max_steps: 90
|
|
37
|
+
# Optional explicit repo context. GitVibe does not auto-load AGENTS.md,
|
|
38
|
+
# CLAUDE.md, or other native CLI files.
|
|
39
|
+
# context:
|
|
40
|
+
# files:
|
|
41
|
+
# - AGENTS.md
|
|
37
42
|
codex_cli:
|
|
38
43
|
enabled: false
|
|
39
44
|
adapter: cli-codex
|
|
@@ -41,6 +46,9 @@ ai:
|
|
|
41
46
|
auth_json:
|
|
42
47
|
from_bundle: CODEX_AUTH_JSON
|
|
43
48
|
model: gpt-5.3-codex
|
|
49
|
+
# context:
|
|
50
|
+
# files:
|
|
51
|
+
# - AGENTS.md
|
|
44
52
|
reasoning:
|
|
45
53
|
effort: high
|
|
46
54
|
summary: concise
|
|
@@ -52,6 +60,9 @@ ai:
|
|
|
52
60
|
CLAUDE_CODE_OAUTH_TOKEN:
|
|
53
61
|
from_bundle: CLAUDE_OAUTH_TOKEN
|
|
54
62
|
model: opus
|
|
63
|
+
# context:
|
|
64
|
+
# files:
|
|
65
|
+
# - .git-vibe/CLAUDE-extra.md
|
|
55
66
|
reasoning:
|
|
56
67
|
effort: xhigh
|
|
57
68
|
role_groups:
|
|
@@ -91,15 +102,5 @@ ai:
|
|
|
91
102
|
address-pr-feedback:
|
|
92
103
|
profile: local_proxy
|
|
93
104
|
|
|
94
|
-
bug_investigation:
|
|
95
|
-
auto_start_on_new_bug: false
|
|
96
|
-
community_trigger:
|
|
97
|
-
enabled: false
|
|
98
|
-
reaction: "+1"
|
|
99
|
-
threshold: 6
|
|
100
|
-
eligible_labels:
|
|
101
|
-
- git-vibe:bug
|
|
102
|
-
dispatch: investigate
|
|
103
|
-
|
|
104
105
|
tests:
|
|
105
106
|
commands: []
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: GitVibe review
|
|
2
|
+
run-name: "[git-vibe][review]: PR #${{ inputs.pr-number }}"
|
|
3
|
+
|
|
4
|
+
on:
|
|
5
|
+
workflow_dispatch:
|
|
6
|
+
inputs:
|
|
7
|
+
pr-number:
|
|
8
|
+
description: Pull request number to review.
|
|
9
|
+
required: true
|
|
10
|
+
type: string
|
|
11
|
+
dry-run:
|
|
12
|
+
description: Validate without writing to GitHub.
|
|
13
|
+
required: false
|
|
14
|
+
type: boolean
|
|
15
|
+
default: false
|
|
16
|
+
source-comment:
|
|
17
|
+
description: JSON source comment metadata for replying to command comments.
|
|
18
|
+
required: false
|
|
19
|
+
type: string
|
|
20
|
+
default: ""
|
|
21
|
+
|
|
22
|
+
jobs:
|
|
23
|
+
review:
|
|
24
|
+
uses: markhuangai/git-vibe/.github/workflows/review.yml@v3
|
|
25
|
+
with:
|
|
26
|
+
pr-number: ${{ inputs.pr-number }}
|
|
27
|
+
runner: ubuntu-latest
|
|
28
|
+
timeout_minutes: 60
|
|
29
|
+
max_turns: 90
|
|
30
|
+
dry-run: ${{ inputs.dry-run }}
|
|
31
|
+
source-comment: ${{ inputs.source-comment }}
|
|
32
|
+
secrets:
|
|
33
|
+
GITVIBE_GITHUB_TOKEN: ${{ secrets.GITVIBE_GITHUB_TOKEN }}
|
|
34
|
+
GITVIBE_AI_ENV_JSON: ${{ secrets.GITVIBE_AI_ENV_JSON }}
|
|
@@ -27,7 +27,7 @@ on:
|
|
|
27
27
|
|
|
28
28
|
jobs:
|
|
29
29
|
validate:
|
|
30
|
-
uses: markhuangai/git-vibe/.github/workflows/validate.yml@
|
|
30
|
+
uses: markhuangai/git-vibe/.github/workflows/validate.yml@v3
|
|
31
31
|
with:
|
|
32
32
|
issue-number: ${{ inputs.issue-number }}
|
|
33
33
|
discussion-number: ${{ inputs.discussion-number }}
|