Skip to content

Commit 3db8b37

Browse files
authored
Merge branch 'main' into claude/add-gpu-security-infrastructure-0199sauN3EjzVsMr46dYrsnq
2 parents 28e4a51 + ae0dbf2 commit 3db8b37

File tree

15 files changed

+429
-328
lines changed

15 files changed

+429
-328
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"startTime": 1764006605022,
3+
"sessionId": "session-1764006605022",
4+
"lastActivity": 1764006605022,
5+
"sessionDuration": 0,
6+
"totalTasks": 1,
7+
"successfulTasks": 1,
8+
"failedTasks": 0,
9+
"totalAgents": 0,
10+
"activeAgents": 0,
11+
"neuralEvents": 0,
12+
"memoryMode": {
13+
"reasoningbankOperations": 0,
14+
"basicOperations": 0,
15+
"autoModeSelections": 0,
16+
"modeOverrides": 0,
17+
"currentMode": "auto"
18+
},
19+
"operations": {
20+
"store": {
21+
"count": 0,
22+
"totalDuration": 0,
23+
"errors": 0
24+
},
25+
"retrieve": {
26+
"count": 0,
27+
"totalDuration": 0,
28+
"errors": 0
29+
},
30+
"query": {
31+
"count": 0,
32+
"totalDuration": 0,
33+
"errors": 0
34+
},
35+
"list": {
36+
"count": 0,
37+
"totalDuration": 0,
38+
"errors": 0
39+
},
40+
"delete": {
41+
"count": 0,
42+
"totalDuration": 0,
43+
"errors": 0
44+
},
45+
"search": {
46+
"count": 0,
47+
"totalDuration": 0,
48+
"errors": 0
49+
},
50+
"init": {
51+
"count": 0,
52+
"totalDuration": 0,
53+
"errors": 0
54+
}
55+
},
56+
"performance": {
57+
"avgOperationDuration": 0,
58+
"minOperationDuration": null,
59+
"maxOperationDuration": null,
60+
"slowOperations": 0,
61+
"fastOperations": 0,
62+
"totalOperationTime": 0
63+
},
64+
"storage": {
65+
"totalEntries": 0,
66+
"reasoningbankEntries": 0,
67+
"basicEntries": 0,
68+
"databaseSize": 0,
69+
"lastBackup": null,
70+
"growthRate": 0
71+
},
72+
"errors": {
73+
"total": 0,
74+
"byType": {},
75+
"byOperation": {},
76+
"recent": []
77+
},
78+
"reasoningbank": {
79+
"semanticSearches": 0,
80+
"sqlFallbacks": 0,
81+
"embeddingGenerated": 0,
82+
"consolidations": 0,
83+
"avgQueryTime": 0,
84+
"cacheHits": 0,
85+
"cacheMisses": 0
86+
}
87+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[
2+
{
3+
"id": "cmd-hooks-1764006605067",
4+
"type": "hooks",
5+
"success": true,
6+
"duration": 5.327768999999989,
7+
"timestamp": 1764006605072,
8+
"metadata": {}
9+
}
10+
]

.github/workflows/ai-fix-dispatch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
create-fix-branch:
9-
runs-on: ubuntu-latest
9+
runs-on: self-hosted
1010
steps:
1111
- name: Checkout repository (with submodules)
1212
uses: actions/checkout@v4

.github/workflows/claude-code-review.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,25 @@ jobs:
1818
# github.event.pull_request.user.login == 'new-developer' ||
1919
# github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'
2020

21-
runs-on: ubuntu-latest
21+
runs-on: self-hosted
2222
permissions:
2323
contents: read
2424
pull-requests: read
2525
issues: read
2626
id-token: write
2727

2828
steps:
29+
- name: Install Git LFS
30+
run: |
31+
sudo apt-get update
32+
sudo apt-get install -y git-lfs
33+
2934
- name: Checkout repository
3035
uses: actions/checkout@v4
3136
with:
32-
fetch-depth: 1
37+
fetch-depth: 2
3338
submodules: 'recursive'
39+
lfs: true
3440

3541
- name: Run Claude Code Review
3642
id: claude-review

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
1818
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
1919
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20-
runs-on: ubuntu-latest
20+
runs-on: self-hosted
2121
permissions:
2222
contents: read
2323
pull-requests: read

.github/workflows/feedback-worker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020

2121
jobs:
2222
test:
23-
runs-on: ubuntu-latest
23+
runs-on: self-hosted
2424
steps:
2525
- uses: actions/checkout@v4
2626
with:
@@ -54,7 +54,7 @@ jobs:
5454
5555
build-and-push:
5656
needs: test
57-
runs-on: ubuntu-latest
57+
runs-on: self-hosted
5858
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
5959

6060
permissions:

.github/workflows/rust.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ jobs:
4545
- name: Checkout code 📦
4646
uses: actions/checkout@v4
4747
with:
48-
submodules: 'recursive'
48+
x submodules: 'recursive'
49+
50+
- name: Fetch LFS objects
51+
run: git lfs pull
4952

5053
- name: Fetch LFS objects
5154
run: git lfs pull
@@ -130,7 +133,8 @@ jobs:
130133
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
131134
restore-keys: |
132135
${{ runner.os }}-cargo-index-
133-
136+
- name: Fetch LFS objects
137+
run: git lfs pull
134138
- name: Cache cargo build 🏗️
135139
uses: actions/cache@v4
136140
with:

codexist

Submodule codexist updated 465 files

0 commit comments

Comments
 (0)