coding-bridge-agent 2026.6.8.0__tar.gz
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.
- coding_bridge_agent-2026.6.8.0/.env.example +20 -0
- coding_bridge_agent-2026.6.8.0/.github/workflows/ci.yaml +28 -0
- coding_bridge_agent-2026.6.8.0/.github/workflows/publish.yml +131 -0
- coding_bridge_agent-2026.6.8.0/.gitignore +218 -0
- coding_bridge_agent-2026.6.8.0/LICENSE +674 -0
- coding_bridge_agent-2026.6.8.0/NOTICE +17 -0
- coding_bridge_agent-2026.6.8.0/PKG-INFO +170 -0
- coding_bridge_agent-2026.6.8.0/README.md +141 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/__init__.py +8 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/__main__.py +7 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/cli.py +185 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/config.py +82 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/connection.py +227 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/pairing.py +52 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/permissions.py +47 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/protocol.py +78 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/providers/__init__.py +15 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/providers/base.py +30 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/providers/claude.py +161 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/session.py +113 -0
- coding_bridge_agent-2026.6.8.0/coding_bridge_agent/store.py +37 -0
- coding_bridge_agent-2026.6.8.0/pyproject.toml +57 -0
- coding_bridge_agent-2026.6.8.0/tests/conftest.py +4 -0
- coding_bridge_agent-2026.6.8.0/tests/test_config.py +28 -0
- coding_bridge_agent-2026.6.8.0/tests/test_connection.py +124 -0
- coding_bridge_agent-2026.6.8.0/tests/test_pairing.py +44 -0
- coding_bridge_agent-2026.6.8.0/tests/test_permissions.py +37 -0
- coding_bridge_agent-2026.6.8.0/tests/test_protocol.py +34 -0
- coding_bridge_agent-2026.6.8.0/tests/test_store.py +24 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Coding Bridge URL (the relay this node connects to)
|
|
2
|
+
CODING_BRIDGE_URL=https://coding-bridge.acedata.cloud
|
|
3
|
+
|
|
4
|
+
# Display name for this node (defaults to hostname)
|
|
5
|
+
CODING_BRIDGE_NODE_NAME=
|
|
6
|
+
|
|
7
|
+
# Where the node token is stored
|
|
8
|
+
CODING_BRIDGE_CONFIG_DIR=~/.ace-bridge
|
|
9
|
+
|
|
10
|
+
# Heartbeat interval in seconds
|
|
11
|
+
CODING_BRIDGE_HEARTBEAT_INTERVAL=15
|
|
12
|
+
|
|
13
|
+
# Seconds to wait for a permission decision from the browser (0 = forever)
|
|
14
|
+
CODING_BRIDGE_PERMISSION_TIMEOUT=300
|
|
15
|
+
|
|
16
|
+
# Default Claude model for new sessions (optional)
|
|
17
|
+
CODING_BRIDGE_MODEL=
|
|
18
|
+
|
|
19
|
+
# Claim URL template shown during pairing ({code} is substituted)
|
|
20
|
+
CODING_BRIDGE_CLAIM_URL=https://nexior.acedata.cloud/bridge?code={code}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
strategy:
|
|
12
|
+
fail-fast: false
|
|
13
|
+
matrix:
|
|
14
|
+
python-version: ["3.10", "3.11", "3.12"]
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- name: Set up Python ${{ matrix.python-version }}
|
|
18
|
+
uses: actions/setup-python@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: ${{ matrix.python-version }}
|
|
21
|
+
- name: Install
|
|
22
|
+
run: |
|
|
23
|
+
python -m pip install --upgrade pip
|
|
24
|
+
pip install -e ".[dev]"
|
|
25
|
+
- name: Lint
|
|
26
|
+
run: ruff check .
|
|
27
|
+
- name: Test
|
|
28
|
+
run: pytest -q
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
name: Build distribution
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
outputs:
|
|
13
|
+
version: ${{ steps.version.outputs.version }}
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v6
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
19
|
+
|
|
20
|
+
- name: Set up Python
|
|
21
|
+
uses: actions/setup-python@v6
|
|
22
|
+
with:
|
|
23
|
+
python-version: "3.12"
|
|
24
|
+
|
|
25
|
+
- name: Generate date-based version
|
|
26
|
+
id: version
|
|
27
|
+
run: |
|
|
28
|
+
# 版本格式: YYYY.M.D.BUILD(BUILD 为当天构建序号,依据 PyPI 已发布版本递增)
|
|
29
|
+
DATE_PREFIX=$(date +'%Y.%-m.%-d')
|
|
30
|
+
|
|
31
|
+
pip install requests -q
|
|
32
|
+
LATEST_BUILD=$(python -c "
|
|
33
|
+
import requests
|
|
34
|
+
try:
|
|
35
|
+
resp = requests.get('https://pypi.org/pypi/coding-bridge-agent/json', timeout=10)
|
|
36
|
+
if resp.status_code == 200:
|
|
37
|
+
versions = resp.json().get('releases', {}).keys()
|
|
38
|
+
today_prefix = '${DATE_PREFIX}'
|
|
39
|
+
today_versions = [v for v in versions if v.startswith(today_prefix)]
|
|
40
|
+
builds = []
|
|
41
|
+
for v in today_versions:
|
|
42
|
+
parts = v.split('.')
|
|
43
|
+
if len(parts) == 4:
|
|
44
|
+
builds.append(int(parts[3]))
|
|
45
|
+
print(max(builds) + 1 if builds else 0)
|
|
46
|
+
else:
|
|
47
|
+
print(0)
|
|
48
|
+
except Exception:
|
|
49
|
+
print(0)
|
|
50
|
+
")
|
|
51
|
+
|
|
52
|
+
VERSION="${DATE_PREFIX}.${LATEST_BUILD}"
|
|
53
|
+
echo "version=$VERSION" >> $GITHUB_OUTPUT
|
|
54
|
+
echo "Generated version: $VERSION"
|
|
55
|
+
|
|
56
|
+
- name: Update version in pyproject.toml
|
|
57
|
+
run: |
|
|
58
|
+
VERSION="${{ steps.version.outputs.version }}"
|
|
59
|
+
python -c "
|
|
60
|
+
import re
|
|
61
|
+
with open('pyproject.toml', 'r') as f:
|
|
62
|
+
content = f.read()
|
|
63
|
+
content = re.sub(r'version = \"[^\"]+\"', f'version = \"$VERSION\"', content, count=1)
|
|
64
|
+
with open('pyproject.toml', 'w') as f:
|
|
65
|
+
f.write(content)
|
|
66
|
+
"
|
|
67
|
+
echo "Updated pyproject.toml to version $VERSION"
|
|
68
|
+
grep -m1 "version" pyproject.toml
|
|
69
|
+
|
|
70
|
+
- name: Install build dependencies
|
|
71
|
+
run: |
|
|
72
|
+
python -m pip install --upgrade pip
|
|
73
|
+
pip install build
|
|
74
|
+
|
|
75
|
+
- name: Build package
|
|
76
|
+
run: python -m build
|
|
77
|
+
|
|
78
|
+
- name: Upload distribution artifacts
|
|
79
|
+
uses: actions/upload-artifact@v7
|
|
80
|
+
with:
|
|
81
|
+
name: python-package-distributions
|
|
82
|
+
path: dist/
|
|
83
|
+
|
|
84
|
+
publish-pypi:
|
|
85
|
+
name: Publish to PyPI
|
|
86
|
+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
|
|
87
|
+
needs: build
|
|
88
|
+
runs-on: ubuntu-latest
|
|
89
|
+
environment:
|
|
90
|
+
name: pypi
|
|
91
|
+
url: https://pypi.org/project/coding-bridge-agent/${{ needs.build.outputs.version }}
|
|
92
|
+
steps:
|
|
93
|
+
- name: Download distribution artifacts
|
|
94
|
+
uses: actions/download-artifact@v8
|
|
95
|
+
with:
|
|
96
|
+
name: python-package-distributions
|
|
97
|
+
path: dist/
|
|
98
|
+
|
|
99
|
+
- name: Publish to PyPI
|
|
100
|
+
env:
|
|
101
|
+
TWINE_USERNAME: __token__
|
|
102
|
+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
|
|
103
|
+
run: |
|
|
104
|
+
pip install "twine>=5.0,<6.1"
|
|
105
|
+
twine check dist/*
|
|
106
|
+
twine upload dist/*
|
|
107
|
+
|
|
108
|
+
create-release:
|
|
109
|
+
name: Create GitHub Release
|
|
110
|
+
if: github.event_name == 'push'
|
|
111
|
+
needs: [build, publish-pypi]
|
|
112
|
+
runs-on: ubuntu-latest
|
|
113
|
+
permissions:
|
|
114
|
+
contents: write
|
|
115
|
+
steps:
|
|
116
|
+
- uses: actions/checkout@v6
|
|
117
|
+
|
|
118
|
+
- name: Download distribution artifacts
|
|
119
|
+
uses: actions/download-artifact@v8
|
|
120
|
+
with:
|
|
121
|
+
name: python-package-distributions
|
|
122
|
+
path: dist/
|
|
123
|
+
|
|
124
|
+
- name: Create Release
|
|
125
|
+
env:
|
|
126
|
+
GITHUB_TOKEN: ${{ github.token }}
|
|
127
|
+
run: |
|
|
128
|
+
gh release create "v${{ needs.build.outputs.version }}" dist/* \
|
|
129
|
+
--title "v${{ needs.build.outputs.version }}" \
|
|
130
|
+
--generate-notes \
|
|
131
|
+
--repo '${{ github.repository }}' || echo "Release already exists, skipping"
|
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|