jupyter-ai-acp-client 0.0.1__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.
- jupyter_ai_acp_client-0.0.1/.gitignore +128 -0
- jupyter_ai_acp_client-0.0.1/.prettierignore +6 -0
- jupyter_ai_acp_client-0.0.1/.yarnrc.yml +2 -0
- jupyter_ai_acp_client-0.0.1/AGENTS.md +769 -0
- jupyter_ai_acp_client-0.0.1/CHANGELOG.md +27 -0
- jupyter_ai_acp_client-0.0.1/CLAUDE.md +1 -0
- jupyter_ai_acp_client-0.0.1/GEMINI.md +1 -0
- jupyter_ai_acp_client-0.0.1/LICENSE +29 -0
- jupyter_ai_acp_client-0.0.1/PKG-INFO +304 -0
- jupyter_ai_acp_client-0.0.1/README.md +238 -0
- jupyter_ai_acp_client-0.0.1/RELEASE.md +80 -0
- jupyter_ai_acp_client-0.0.1/babel.config.js +1 -0
- jupyter_ai_acp_client-0.0.1/conftest.py +8 -0
- jupyter_ai_acp_client-0.0.1/examples/agent.py +125 -0
- jupyter_ai_acp_client-0.0.1/examples/client.py +211 -0
- jupyter_ai_acp_client-0.0.1/examples/echo_agent.py +76 -0
- jupyter_ai_acp_client-0.0.1/install.json +5 -0
- jupyter_ai_acp_client-0.0.1/jest.config.js +28 -0
- jupyter_ai_acp_client-0.0.1/jupyter-config/server-config/jupyter_ai_acp_client.json +7 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/__init__.py +25 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/_version.py +4 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/acp_personas/claude.py +30 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/acp_personas/test.py +26 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/base_acp_persona.py +163 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/default_acp_client.py +368 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/extension_app.py +29 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/package.json +222 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/728.f69b40505cc5a8669c1e.js +1 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/750.a29148656dc2b5c07d11.js +1 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/remoteEntry.e615ae2e4254ce11d925.js +1 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/style.js +4 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/third-party-licenses.json +16 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/routes.py +79 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/static/claude.svg +7 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/static/test.svg +40 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/terminal_manager.py +334 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/tests/__init__.py +1 -0
- jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/tests/test_routes.py +13 -0
- jupyter_ai_acp_client-0.0.1/package.json +217 -0
- jupyter_ai_acp_client-0.0.1/pyproject.toml +99 -0
- jupyter_ai_acp_client-0.0.1/setup.py +1 -0
- jupyter_ai_acp_client-0.0.1/src/__tests__/jupyter_ai_acp_client.spec.ts +9 -0
- jupyter_ai_acp_client-0.0.1/src/index.ts +127 -0
- jupyter_ai_acp_client-0.0.1/src/request.ts +76 -0
- jupyter_ai_acp_client-0.0.1/style/base.css +5 -0
- jupyter_ai_acp_client-0.0.1/style/index.css +1 -0
- jupyter_ai_acp_client-0.0.1/style/index.js +1 -0
- jupyter_ai_acp_client-0.0.1/tsconfig.json +25 -0
- jupyter_ai_acp_client-0.0.1/tsconfig.test.json +3 -0
- jupyter_ai_acp_client-0.0.1/ui-tests/README.md +167 -0
- jupyter_ai_acp_client-0.0.1/ui-tests/jupyter_server_test_config.py +12 -0
- jupyter_ai_acp_client-0.0.1/ui-tests/package.json +15 -0
- jupyter_ai_acp_client-0.0.1/ui-tests/playwright.config.js +14 -0
- jupyter_ai_acp_client-0.0.1/ui-tests/tests/jupyter_ai_acp_client.spec.ts +23 -0
- jupyter_ai_acp_client-0.0.1/ui-tests/yarn.lock +0 -0
- jupyter_ai_acp_client-0.0.1/yarn.lock +12203 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
*.bundle.*
|
|
2
|
+
lib/
|
|
3
|
+
node_modules/
|
|
4
|
+
*.log
|
|
5
|
+
.eslintcache
|
|
6
|
+
.stylelintcache
|
|
7
|
+
*.egg-info/
|
|
8
|
+
.ipynb_checkpoints
|
|
9
|
+
*.tsbuildinfo
|
|
10
|
+
jupyter_ai_acp_client/labextension
|
|
11
|
+
# Version file is handled by hatchling
|
|
12
|
+
jupyter_ai_acp_client/_version.py
|
|
13
|
+
|
|
14
|
+
# Integration tests
|
|
15
|
+
ui-tests/test-results/
|
|
16
|
+
ui-tests/playwright-report/
|
|
17
|
+
|
|
18
|
+
# Created by https://www.gitignore.io/api/python
|
|
19
|
+
# Edit at https://www.gitignore.io/?templates=python
|
|
20
|
+
|
|
21
|
+
### Python ###
|
|
22
|
+
# Virtual environments
|
|
23
|
+
.venv
|
|
24
|
+
|
|
25
|
+
# Byte-compiled / optimized / DLL files
|
|
26
|
+
__pycache__/
|
|
27
|
+
*.py[cod]
|
|
28
|
+
*$py.class
|
|
29
|
+
|
|
30
|
+
# C extensions
|
|
31
|
+
*.so
|
|
32
|
+
|
|
33
|
+
# Distribution / packaging
|
|
34
|
+
.Python
|
|
35
|
+
build/
|
|
36
|
+
develop-eggs/
|
|
37
|
+
dist/
|
|
38
|
+
downloads/
|
|
39
|
+
eggs/
|
|
40
|
+
.eggs/
|
|
41
|
+
lib/
|
|
42
|
+
lib64/
|
|
43
|
+
parts/
|
|
44
|
+
sdist/
|
|
45
|
+
var/
|
|
46
|
+
wheels/
|
|
47
|
+
pip-wheel-metadata/
|
|
48
|
+
share/python-wheels/
|
|
49
|
+
.installed.cfg
|
|
50
|
+
*.egg
|
|
51
|
+
MANIFEST
|
|
52
|
+
|
|
53
|
+
# PyInstaller
|
|
54
|
+
# Usually these files are written by a python script from a template
|
|
55
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
56
|
+
*.manifest
|
|
57
|
+
*.spec
|
|
58
|
+
|
|
59
|
+
# Installer logs
|
|
60
|
+
pip-log.txt
|
|
61
|
+
pip-delete-this-directory.txt
|
|
62
|
+
|
|
63
|
+
# Unit test / coverage reports
|
|
64
|
+
htmlcov/
|
|
65
|
+
.tox/
|
|
66
|
+
.nox/
|
|
67
|
+
.coverage
|
|
68
|
+
.coverage.*
|
|
69
|
+
.cache
|
|
70
|
+
nosetests.xml
|
|
71
|
+
coverage/
|
|
72
|
+
coverage.xml
|
|
73
|
+
*.cover
|
|
74
|
+
.hypothesis/
|
|
75
|
+
.pytest_cache/
|
|
76
|
+
|
|
77
|
+
# Translations
|
|
78
|
+
*.mo
|
|
79
|
+
*.pot
|
|
80
|
+
|
|
81
|
+
# Scrapy stuff:
|
|
82
|
+
.scrapy
|
|
83
|
+
|
|
84
|
+
# Sphinx documentation
|
|
85
|
+
docs/_build/
|
|
86
|
+
|
|
87
|
+
# PyBuilder
|
|
88
|
+
target/
|
|
89
|
+
|
|
90
|
+
# pyenv
|
|
91
|
+
.python-version
|
|
92
|
+
|
|
93
|
+
# celery beat schedule file
|
|
94
|
+
celerybeat-schedule
|
|
95
|
+
|
|
96
|
+
# SageMath parsed files
|
|
97
|
+
*.sage.py
|
|
98
|
+
|
|
99
|
+
# Spyder project settings
|
|
100
|
+
.spyderproject
|
|
101
|
+
.spyproject
|
|
102
|
+
|
|
103
|
+
# Rope project settings
|
|
104
|
+
.ropeproject
|
|
105
|
+
|
|
106
|
+
# Mr Developer
|
|
107
|
+
.mr.developer.cfg
|
|
108
|
+
.project
|
|
109
|
+
.pydevproject
|
|
110
|
+
|
|
111
|
+
# mkdocs documentation
|
|
112
|
+
/site
|
|
113
|
+
|
|
114
|
+
# mypy
|
|
115
|
+
.mypy_cache/
|
|
116
|
+
.dmypy.json
|
|
117
|
+
dmypy.json
|
|
118
|
+
|
|
119
|
+
# Pyre type checker
|
|
120
|
+
.pyre/
|
|
121
|
+
|
|
122
|
+
# End of https://www.gitignore.io/api/python
|
|
123
|
+
|
|
124
|
+
# OSX files
|
|
125
|
+
.DS_Store
|
|
126
|
+
|
|
127
|
+
# Yarn cache
|
|
128
|
+
.yarn/
|