Skip to content

Commit eceda28

Browse files
authored
Merge pull request #353 from dwash96/rename-primary
Rename primary
2 parents 3124091 + 10a50e2 commit eceda28

737 files changed

Lines changed: 4211 additions & 5296 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.

.dockerignore

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

77
# Recursively allow files under subtree
88
!/.github/**
9-
!/aider/**
9+
!/cecli/**
1010
!/benchmark/**
1111
!/docker/**
1212
!/requirements/**

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Question or bug report
2-
description: Submit a question or bug report to help us improve aider
2+
description: Submit a question or bug report to help us improve cecli
33
labels: []
44
body:
55
- type: textarea
@@ -11,9 +11,9 @@ body:
1111
- type: textarea
1212
attributes:
1313
label: Version and model info
14-
description: Please include aider version, model being used (`gpt-4-xxx`, etc) and any other switches or config settings that are active.
14+
description: Please include cecli version, model being used (`gemini-3-xxx`, etc) and any other switches or config settings that are active.
1515
placeholder: |
16-
Aider v0.XX.Y
16+
cecli v0.XX.Y
1717
Model: gpt-N-... using ???? edit format
1818
Git repo: .git with ### files
1919
Repo-map: using #### tokens

.github/workflows/check_pypi_version.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
name: Check PyPI Version
22

3-
# Check to be sure `pip install aider-chat` installs the most recently published version.
4-
# If dependencies get yanked, it may render the latest version uninstallable.
5-
# See https://github.com/Aider-AI/aider/issues/3699 for example.
6-
73
on:
84
schedule:
95
# Run once a day at midnight UTC
@@ -26,23 +22,23 @@ jobs:
2622
- name: Install aider-ce
2723
run: pip install aider-ce
2824

29-
- name: Get installed aider version
25+
- name: Get installed cecli version
3026
id: installed_version
3127
run: |
3228
set -x # Enable debugging output
33-
aider_version_output=$(aider-ce --version)
29+
cecli_version_output=$(aider-ce --version)
3430
if [ $? -ne 0 ]; then
35-
echo "Error: 'aider --version' command failed."
31+
echo "Error: 'cecli --version' command failed."
3632
exit 1
3733
fi
38-
echo "Raw aider --version output: $aider_version_output"
34+
echo "Raw cecli --version output: $cecli_version_output"
3935
4036
# Extract version number (format X.Y.Z)
41-
version_num=$(echo "$aider_version_output" | grep -oP '\d+\.\d+\.\d+')
37+
version_num=$(echo "$cecli_version_output" | grep -oP '\d+\.\d+\.\d+')
4238
4339
# Check if grep found anything
4440
if [ -z "$version_num" ]; then
45-
echo "Error: Could not extract version number using grep -oP '\d+\.\d+\.\d+' from output: $aider_version_output"
41+
echo "Error: Could not extract version number using grep -oP '\d+\.\d+\.\d+' from output: $cecli_version_output"
4642
exit 1
4743
fi
4844
@@ -80,7 +76,7 @@ jobs:
8076
echo "Installed version: ${{ steps.installed_version.outputs.version }}"
8177
echo "Latest tag version: ${{ steps.latest_tag.outputs.tag }}"
8278
if [ "${{ steps.installed_version.outputs.version }}" != "${{ steps.latest_tag.outputs.tag }}" ]; then
83-
echo "Error: Installed aider version (${{ steps.installed_version.outputs.version }}) does not match the latest tag (${{ steps.latest_tag.outputs.tag }})."
79+
echo "Error: Installed cecli version (${{ steps.installed_version.outputs.version }}) does not match the latest tag (${{ steps.latest_tag.outputs.tag }})."
8480
exit 1
8581
fi
8682
echo "Versions match."

.github/workflows/docker-build-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Docker Build Test
33
on:
44
push:
55
paths-ignore:
6-
- 'aider/website/**'
6+
- 'cecli/website/**'
77
- 'README.md'
88
- 'HISTORY.md'
99
- '.github/workflows/*'
@@ -12,7 +12,7 @@ on:
1212
- main
1313
pull_request:
1414
paths-ignore:
15-
- 'aider/website/**'
15+
- 'cecli/website/**'
1616
- 'README.md'
1717
- 'HISTORY.md'
1818
- '.github/workflows/*'

.github/workflows/pages.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
branches:
1212
- "main"
1313
paths:
14-
- "aider/website/**"
14+
- "cecli/website/**"
1515
- ".github/workflows/pages.yml"
1616

1717
# Allows you to run this workflow manually from the Actions tab
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
defaults:
3636
run:
37-
working-directory: aider/website
37+
working-directory: cecli/website
3838
steps:
3939
- name: Checkout
4040
uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
ruby-version: '3.3' # Not needed with a .ruby-version file
4747
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4848
cache-version: 0 # Increment this number if you need to re-download cached gems
49-
working-directory: '${{ github.workspace }}/aider/website'
49+
working-directory: '${{ github.workspace }}/cecli/website'
5050
- name: Setup Pages
5151
id: pages
5252
uses: actions/configure-pages@v3
@@ -58,7 +58,7 @@ jobs:
5858
- name: Upload artifact
5959
uses: actions/upload-pages-artifact@v3
6060
with:
61-
path: "aider/website/_site"
61+
path: "cecli/website/_site"
6262

6363
# Deployment job
6464
deploy:
@@ -84,4 +84,4 @@ jobs:
8484
8585
- name: Run linkchecker
8686
run: |
87-
linkchecker --ignore-url='.+\.(mp4|mov|avi)' https://aider.chat
87+
linkchecker --ignore-url='.+\.(mp4|mov|avi)' https://cecli.dev

.github/workflows/ubuntu-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Ubuntu Python Tests
33
on:
44
push:
55
paths-ignore:
6-
- 'aider/website/**'
6+
- 'cecli/website/**'
77
- 'README.md'
88
- 'HISTORY.md'
99
- '.github/workflows/*'
@@ -12,7 +12,7 @@ on:
1212
- main
1313
pull_request:
1414
paths-ignore:
15-
- 'aider/website/**'
15+
- 'cecli/website/**'
1616
- 'README.md'
1717
- 'HISTORY.md'
1818
- '.github/workflows/*'
@@ -57,7 +57,5 @@ jobs:
5757
".[help,playwright]"
5858
5959
- name: Run tests
60-
env:
61-
AIDER_ANALYTICS: false
6260
run: |
6361
pytest

.github/workflows/windows-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Windows Python Tests
33
on:
44
push:
55
paths-ignore:
6-
- 'aider/website/**'
6+
- 'cecli/website/**'
77
- 'README.md'
88
- 'HISTORY.md'
99
- '.github/workflows/*'
@@ -12,7 +12,7 @@ on:
1212
- main
1313
pull_request:
1414
paths-ignore:
15-
- 'aider/website/**'
15+
- 'cecli/website/**'
1616
- 'README.md'
1717
- 'HISTORY.md'
1818
- '.github/workflows/*'
@@ -45,7 +45,5 @@ jobs:
4545
uv pip install --system pytest pytest-asyncio pytest-mock -r requirements/requirements.in -r requirements/requirements-help.in -r requirements/requirements-playwright.in '.[help,playwright]'
4646
4747
- name: Run tests
48-
env:
49-
AIDER_ANALYTICS: false
5048
run: |
5149
pytest

.github/workflows/windows_check_pypi_version.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
name: Windows Check PyPI Version
22

3-
# Check to be sure `pip install aider-chat` installs the most recently published version on Windows.
4-
# If dependencies get yanked, it may render the latest version uninstallable.
5-
# See https://github.com/Aider-AI/aider/issues/3699 for example.
6-
73
on:
84
schedule:
95
# Run once a day at 1 AM UTC (offset from Ubuntu check)
@@ -29,22 +25,22 @@ jobs:
2925
- name: Install aider-ce
3026
run: pip install aider-ce
3127

32-
- name: Get installed aider version
28+
- name: Get installed cecli version
3329
id: installed_version
3430
run: |
35-
Write-Host "Running 'aider --version'..."
36-
$aider_version_output = aider-ce --version
31+
Write-Host "Running 'cecli --version'..."
32+
$cecli_version_output = aider-ce --version
3733
if ($LASTEXITCODE -ne 0) {
38-
Write-Error "Error: 'aider --version' command failed."
34+
Write-Error "Error: 'cecli --version' command failed."
3935
exit 1
4036
}
41-
Write-Host "Raw aider --version output: $aider_version_output"
37+
Write-Host "Raw cecli --version output: $cecli_version_output"
4238
4339
# Extract version number (format X.Y.Z) using PowerShell regex
44-
$match = [regex]::Match($aider_version_output, '\d+\.\d+\.\d+')
40+
$match = [regex]::Match($cecli_version_output, '\d+\.\d+\.\d+')
4541
4642
if (-not $match.Success) {
47-
Write-Error "Error: Could not extract version number using regex '\d+\.\d+\.\d+' from output: $aider_version_output"
43+
Write-Error "Error: Could not extract version number using regex '\d+\.\d+\.\d+' from output: $cecli_version_output"
4844
exit 1
4945
}
5046
$version_num = $match.Value
@@ -84,7 +80,7 @@ jobs:
8480
Write-Host "Installed version: ${{ steps.installed_version.outputs.version }}"
8581
Write-Host "Latest tag version: ${{ steps.latest_tag.outputs.tag }}"
8682
if ("${{ steps.installed_version.outputs.version }}" -ne "${{ steps.latest_tag.outputs.tag }}") {
87-
Write-Error "Error: Installed aider version (${{ steps.installed_version.outputs.version }}) does not match the latest tag (${{ steps.latest_tag.outputs.tag }})."
83+
Write-Error "Error: Installed cecli version (${{ steps.installed_version.outputs.version }}) does not match the latest tag (${{ steps.latest_tag.outputs.tag }})."
8884
exit 1
8985
}
9086
Write-Host "Versions match."

.gitignore

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

77
# Recursively allow files under subtree
88
!/.github/**
9-
!/aider/**
9+
!/cecli/**
1010
!/benchmark/**
1111
!/docker/**
1212
!/requirements/**
@@ -34,5 +34,8 @@
3434
.aider*
3535
aider/__version__.py
3636
aider/_version.py
37+
.cecli*
38+
cecli/__version__.py
39+
cecli/_version.py
3740
*.pyc
3841
env/

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ repos:
1818
rev: v2.2.6
1919
hooks:
2020
- id: codespell
21-
args: ["--skip", "aider/website/docs/languages.md"]
21+
args: ["--skip", "cecli/website/docs/languages.md"]
2222
additional_dependencies:
2323
- tomli
2424
- repo: local
2525
hooks:
2626
- id: filter-model-metadata
2727
name: Filter model metadata to chat mode only
2828
entry: node scripts/filter-chat-mode.js
29-
args: ["aider/resources/model-metadata.json"]
29+
args: ["cecli/resources/model-metadata.json"]
3030
language: system
31-
files: ^aider/resources/model-metadata\.json$
31+
files: ^cecli/resources/model-metadata\.json$
3232
pass_filenames: false

0 commit comments

Comments
 (0)