a3s-code 0.1.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.
- a3s_code-0.1.0/.git +1 -0
- a3s_code-0.1.0/.gitignore +93 -0
- a3s_code-0.1.0/LICENSE +21 -0
- a3s_code-0.1.0/MANIFEST.in +31 -0
- a3s_code-0.1.0/PKG-INFO +717 -0
- a3s_code-0.1.0/README.md +683 -0
- a3s_code-0.1.0/a3s_code/__init__.py +161 -0
- a3s_code-0.1.0/a3s_code/client.py +2137 -0
- a3s_code-0.1.0/a3s_code/py.typed +1 -0
- a3s_code-0.1.0/a3s_code/types.py +640 -0
- a3s_code-0.1.0/examples/README.md +572 -0
- a3s_code-0.1.0/examples/basic_usage.py +122 -0
- a3s_code-0.1.0/examples/claude_code_skills_example.py +100 -0
- a3s_code-0.1.0/examples/code_review_agent.py +262 -0
- a3s_code-0.1.0/examples/context_management.py +192 -0
- a3s_code-0.1.0/examples/event_streaming.py +144 -0
- a3s_code-0.1.0/examples/external_tasks.py +202 -0
- a3s_code-0.1.0/examples/hitl_confirmation.py +150 -0
- a3s_code-0.1.0/examples/lsp_example.py +109 -0
- a3s_code-0.1.0/examples/memory_events_example.py +173 -0
- a3s_code-0.1.0/examples/memory_example.py +222 -0
- a3s_code-0.1.0/examples/permission_policy.py +136 -0
- a3s_code-0.1.0/examples/planning_example.py +156 -0
- a3s_code-0.1.0/examples/provider_config.py +256 -0
- a3s_code-0.1.0/examples/skill_management.py +95 -0
- a3s_code-0.1.0/examples/storage_configuration.py +105 -0
- a3s_code-0.1.0/examples/todo_tracking.py +206 -0
- a3s_code-0.1.0/justfile +292 -0
- a3s_code-0.1.0/proto/code_agent.proto +1512 -0
- a3s_code-0.1.0/pyproject.toml +63 -0
- a3s_code-0.1.0/pytest.ini +6 -0
- a3s_code-0.1.0/tests/conftest.py +16 -0
- a3s_code-0.1.0/tests/test_client.py +582 -0
- a3s_code-0.1.0/tests/test_integration.py +269 -0
a3s_code-0.1.0/.git
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gitdir: ../../.git/modules/sdk/python
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
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
|
+
*.egg-info/
|
|
24
|
+
.installed.cfg
|
|
25
|
+
*.egg
|
|
26
|
+
|
|
27
|
+
# PyInstaller
|
|
28
|
+
*.manifest
|
|
29
|
+
*.spec
|
|
30
|
+
|
|
31
|
+
# Installer logs
|
|
32
|
+
pip-log.txt
|
|
33
|
+
pip-delete-this-directory.txt
|
|
34
|
+
|
|
35
|
+
# Unit test / coverage reports
|
|
36
|
+
htmlcov/
|
|
37
|
+
.tox/
|
|
38
|
+
.nox/
|
|
39
|
+
.coverage
|
|
40
|
+
.coverage.*
|
|
41
|
+
.cache
|
|
42
|
+
nosetests.xml
|
|
43
|
+
coverage.xml
|
|
44
|
+
*.cover
|
|
45
|
+
*.py,cover
|
|
46
|
+
.hypothesis/
|
|
47
|
+
.pytest_cache/
|
|
48
|
+
|
|
49
|
+
# Translations
|
|
50
|
+
*.mo
|
|
51
|
+
*.pot
|
|
52
|
+
|
|
53
|
+
# Environments
|
|
54
|
+
.env
|
|
55
|
+
.venv
|
|
56
|
+
env/
|
|
57
|
+
venv/
|
|
58
|
+
ENV/
|
|
59
|
+
env.bak/
|
|
60
|
+
venv.bak/
|
|
61
|
+
|
|
62
|
+
# IDE
|
|
63
|
+
.idea/
|
|
64
|
+
.vscode/
|
|
65
|
+
*.swp
|
|
66
|
+
*.swo
|
|
67
|
+
*~
|
|
68
|
+
|
|
69
|
+
# OS
|
|
70
|
+
.DS_Store
|
|
71
|
+
Thumbs.db
|
|
72
|
+
|
|
73
|
+
# mypy
|
|
74
|
+
.mypy_cache/
|
|
75
|
+
.dmypy.json
|
|
76
|
+
dmypy.json
|
|
77
|
+
|
|
78
|
+
# ruff
|
|
79
|
+
.ruff_cache/
|
|
80
|
+
|
|
81
|
+
# Generated proto files
|
|
82
|
+
*_pb2.py
|
|
83
|
+
*_pb2_grpc.py
|
|
84
|
+
*_pb2.pyi
|
|
85
|
+
|
|
86
|
+
# Jupyter Notebook
|
|
87
|
+
.ipynb_checkpoints
|
|
88
|
+
|
|
89
|
+
# pytype static type analyzer
|
|
90
|
+
.pytype/
|
|
91
|
+
|
|
92
|
+
# Cython debug symbols
|
|
93
|
+
cython_debug/
|
a3s_code-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 A3S Lab
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Include essential files
|
|
2
|
+
include LICENSE
|
|
3
|
+
include README.md
|
|
4
|
+
include pyproject.toml
|
|
5
|
+
|
|
6
|
+
# Include proto files
|
|
7
|
+
recursive-include proto *.proto
|
|
8
|
+
|
|
9
|
+
# Include package data
|
|
10
|
+
recursive-include a3s_code *.py *.pyi
|
|
11
|
+
|
|
12
|
+
# Exclude development files
|
|
13
|
+
exclude .gitignore
|
|
14
|
+
exclude justfile
|
|
15
|
+
exclude Makefile
|
|
16
|
+
|
|
17
|
+
# Exclude test files
|
|
18
|
+
recursive-exclude tests *
|
|
19
|
+
prune tests
|
|
20
|
+
|
|
21
|
+
# Exclude build artifacts
|
|
22
|
+
prune build
|
|
23
|
+
prune dist
|
|
24
|
+
prune *.egg-info
|
|
25
|
+
recursive-exclude * __pycache__
|
|
26
|
+
recursive-exclude * *.py[cod]
|
|
27
|
+
recursive-exclude * *.so
|
|
28
|
+
|
|
29
|
+
# Exclude IDE files
|
|
30
|
+
prune .vscode
|
|
31
|
+
prune .idea
|