Skip to content

Commit 811dc0e

Browse files
committed
Merge remote-tracking branch 'origin/review-review' into enitre-review
# Conflicts: # CLAUDE.md # cmd/entire/cli/lifecycle.go # cmd/entire/cli/review/cmd.go # cmd/entire/cli/review/cmd_test.go # cmd/entire/cli/review/fix.go # cmd/entire/cli/review/picker_test.go # cmd/entire/cli/review/setup.go # cmd/entire/cli/review_context.go
2 parents fd871af + 7af3efd commit 811dc0e

452 files changed

Lines changed: 69942 additions & 23194 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.allowed-licenses

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Comments start with #
44

55
MIT
6+
MIT-0
67
BSD-2-Clause
78
BSD-3-Clause
89
Apache-2.0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Users/peytonmontei/.gemini/config/projects/8dcbe953-c1d3-46ec-b19b-c8e83a1c5022.json

.claude/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
settings.local.json
1+
settings.local.json
2+
scheduled_tasks.lock

.claude/settings.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
{
2424
"type": "command",
25-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code session-start"
25+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code session-start"
2626
}
2727
]
2828
}
@@ -33,7 +33,7 @@
3333
"hooks": [
3434
{
3535
"type": "command",
36-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code session-end"
36+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code session-end"
3737
}
3838
]
3939
}
@@ -44,7 +44,7 @@
4444
"hooks": [
4545
{
4646
"type": "command",
47-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code user-prompt-submit"
47+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code user-prompt-submit"
4848
}
4949
]
5050
}
@@ -55,7 +55,7 @@
5555
"hooks": [
5656
{
5757
"type": "command",
58-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code stop"
58+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code stop"
5959
}
6060
]
6161
}
@@ -66,7 +66,7 @@
6666
"hooks": [
6767
{
6868
"type": "command",
69-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code pre-task"
69+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code pre-task"
7070
}
7171
]
7272
}
@@ -77,7 +77,7 @@
7777
"hooks": [
7878
{
7979
"type": "command",
80-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code post-task"
80+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code post-task"
8181
}
8282
]
8383
},
@@ -86,7 +86,7 @@
8686
"hooks": [
8787
{
8888
"type": "command",
89-
"command": "go run ${CLAUDE_PROJECT_DIR}/cmd/entire/main.go hooks claude-code post-todo"
89+
"command": "${CLAUDE_PROJECT_DIR}/scripts/entire-dev hooks claude-code post-todo"
9090
}
9191
]
9292
}

.entire/settings.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"enabled": true,
33
"local_dev": true,
4-
"strategy": "manual-commit",
54
"strategy_options": {
6-
"filtered_fetches": true,
75
"checkpoint_remote": {
86
"provider": "github",
97
"repo": "entireio/cli-checkpoints"
10-
}
11-
}
8+
},
9+
"filtered_fetches": true
10+
},
11+
"strategy": "manual-commit"
1212
}

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
test-core:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
12+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
1313
with:
1414
ref: ${{ github.event.pull_request.head.sha || github.sha }}
1515
- name: Setup Keyring
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
shard: [a, b, c]
3232
steps:
33-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
33+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
3434
with:
3535
ref: ${{ github.event.pull_request.head.sha || github.sha }}
3636
- name: Setup Keyring
@@ -47,7 +47,7 @@ jobs:
4747
test-canary:
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
50+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
5151
with:
5252
ref: ${{ github.event.pull_request.head.sha || github.sha }}
5353
- name: Setup Keyring

.github/workflows/codeql-actions.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919
security-events: write
2020

2121
steps:
22-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
22+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2323
with:
2424
ref: ${{ github.event.pull_request.head.sha }}
2525

2626
- name: Initialize CodeQL
27-
uses: github/codeql-action/init@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
27+
uses: github/codeql-action/init@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
2828
with:
2929
languages: actions
3030
queries: security-extended,security-and-quality
3131

3232
- name: Perform CodeQL analysis
33-
uses: github/codeql-action/analyze@68bde559dea0fdcac2102bfdf6230c5f70eb485e # v4.35.4
33+
uses: github/codeql-action/analyze@87557b9c84dde89fdd9b10e88954ac2f4248e463 # v4.36.1
3434
with:
3535
category: /language:actions
3636
# Fork PRs receive a read-only GITHUB_TOKEN, so SARIF upload to the

.github/workflows/e2e-checkpoints-v2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
41+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
4242
with:
4343
ref: ${{ github.event.pull_request.head.sha || github.sha }}
4444

@@ -125,7 +125,7 @@ jobs:
125125

126126
steps:
127127
- name: Checkout repository
128-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
128+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
129129
with:
130130
ref: ${{ github.event.pull_request.head.sha || github.sha }}
131131

.github/workflows/e2e-isolated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout repository
24-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
24+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2525

2626
- name: Setup mise
2727
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4

.github/workflows/e2e-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
23+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
2424

2525
- name: Setup mise
2626
uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4

0 commit comments

Comments
 (0)