Skip to content

Commit 67c12bc

Browse files
Merge branch 'main' into cf-release-benchmark-0.2.0
2 parents e2b4b15 + 465316a commit 67c12bc

126 files changed

Lines changed: 3776 additions & 3747 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.

.codex/config.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[mcp_servers.tessl]
2+
type = "stdio"
3+
command = "tessl"
4+
args = [ "mcp", "start" ]

.codex/skills/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gemini/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"mcpServers": {
3+
"tessl": {
4+
"type": "stdio",
5+
"command": "tessl",
6+
"args": [
7+
"mcp",
8+
"start"
9+
]
10+
}
11+
}
12+
}

.gemini/skills/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.github/workflows/unit-tests.yaml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,25 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
18+
include:
19+
- os: ubuntu-latest
20+
python-version: "3.9"
21+
- os: ubuntu-latest
22+
python-version: "3.10"
23+
- os: ubuntu-latest
24+
python-version: "3.11"
25+
- os: ubuntu-latest
26+
python-version: "3.12"
27+
- os: ubuntu-latest
28+
python-version: "3.13"
29+
- os: ubuntu-latest
30+
python-version: "3.14"
31+
- os: windows-latest
32+
python-version: "3.13"
1933
continue-on-error: true
20-
runs-on: ubuntu-latest
34+
runs-on: ${{ matrix.os }}
35+
env:
36+
PYTHONIOENCODING: utf-8
2137
steps:
2238
- uses: actions/checkout@v4
2339
with:

.github/workflows/windows-unit-tests.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

CLAUDE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ Discovery → Ranking → Context Extraction → Test Gen + Optimization → Bas
2828
- **Tracer**: Profiling system that records function call trees and timings (`tracing/`, `tracer.py`)
2929
- **Worktree mode**: Git worktree-based parallel optimization (`--worktree` flag)
3030

31+
## PR Reviews
32+
33+
- GitHub PR comments and review feedback can be stale — they may reference issues already fixed by a later commit. Before acting on review feedback, verify it still applies to the current code. If the issue no longer exists, resolve the conversation in the GitHub UI.
34+
3135
<!-- Section below is auto-generated by `tessl install` - do not edit manually -->
3236

3337
# Agent Rules <!-- tessl-managed -->

0 commit comments

Comments
 (0)