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.
Files changed (56) hide show
  1. jupyter_ai_acp_client-0.0.1/.gitignore +128 -0
  2. jupyter_ai_acp_client-0.0.1/.prettierignore +6 -0
  3. jupyter_ai_acp_client-0.0.1/.yarnrc.yml +2 -0
  4. jupyter_ai_acp_client-0.0.1/AGENTS.md +769 -0
  5. jupyter_ai_acp_client-0.0.1/CHANGELOG.md +27 -0
  6. jupyter_ai_acp_client-0.0.1/CLAUDE.md +1 -0
  7. jupyter_ai_acp_client-0.0.1/GEMINI.md +1 -0
  8. jupyter_ai_acp_client-0.0.1/LICENSE +29 -0
  9. jupyter_ai_acp_client-0.0.1/PKG-INFO +304 -0
  10. jupyter_ai_acp_client-0.0.1/README.md +238 -0
  11. jupyter_ai_acp_client-0.0.1/RELEASE.md +80 -0
  12. jupyter_ai_acp_client-0.0.1/babel.config.js +1 -0
  13. jupyter_ai_acp_client-0.0.1/conftest.py +8 -0
  14. jupyter_ai_acp_client-0.0.1/examples/agent.py +125 -0
  15. jupyter_ai_acp_client-0.0.1/examples/client.py +211 -0
  16. jupyter_ai_acp_client-0.0.1/examples/echo_agent.py +76 -0
  17. jupyter_ai_acp_client-0.0.1/install.json +5 -0
  18. jupyter_ai_acp_client-0.0.1/jest.config.js +28 -0
  19. jupyter_ai_acp_client-0.0.1/jupyter-config/server-config/jupyter_ai_acp_client.json +7 -0
  20. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/__init__.py +25 -0
  21. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/_version.py +4 -0
  22. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/acp_personas/claude.py +30 -0
  23. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/acp_personas/test.py +26 -0
  24. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/base_acp_persona.py +163 -0
  25. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/default_acp_client.py +368 -0
  26. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/extension_app.py +29 -0
  27. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/package.json +222 -0
  28. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/728.f69b40505cc5a8669c1e.js +1 -0
  29. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/750.a29148656dc2b5c07d11.js +1 -0
  30. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/remoteEntry.e615ae2e4254ce11d925.js +1 -0
  31. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/style.js +4 -0
  32. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/labextension/static/third-party-licenses.json +16 -0
  33. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/routes.py +79 -0
  34. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/static/claude.svg +7 -0
  35. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/static/test.svg +40 -0
  36. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/terminal_manager.py +334 -0
  37. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/tests/__init__.py +1 -0
  38. jupyter_ai_acp_client-0.0.1/jupyter_ai_acp_client/tests/test_routes.py +13 -0
  39. jupyter_ai_acp_client-0.0.1/package.json +217 -0
  40. jupyter_ai_acp_client-0.0.1/pyproject.toml +99 -0
  41. jupyter_ai_acp_client-0.0.1/setup.py +1 -0
  42. jupyter_ai_acp_client-0.0.1/src/__tests__/jupyter_ai_acp_client.spec.ts +9 -0
  43. jupyter_ai_acp_client-0.0.1/src/index.ts +127 -0
  44. jupyter_ai_acp_client-0.0.1/src/request.ts +76 -0
  45. jupyter_ai_acp_client-0.0.1/style/base.css +5 -0
  46. jupyter_ai_acp_client-0.0.1/style/index.css +1 -0
  47. jupyter_ai_acp_client-0.0.1/style/index.js +1 -0
  48. jupyter_ai_acp_client-0.0.1/tsconfig.json +25 -0
  49. jupyter_ai_acp_client-0.0.1/tsconfig.test.json +3 -0
  50. jupyter_ai_acp_client-0.0.1/ui-tests/README.md +167 -0
  51. jupyter_ai_acp_client-0.0.1/ui-tests/jupyter_server_test_config.py +12 -0
  52. jupyter_ai_acp_client-0.0.1/ui-tests/package.json +15 -0
  53. jupyter_ai_acp_client-0.0.1/ui-tests/playwright.config.js +14 -0
  54. jupyter_ai_acp_client-0.0.1/ui-tests/tests/jupyter_ai_acp_client.spec.ts +23 -0
  55. jupyter_ai_acp_client-0.0.1/ui-tests/yarn.lock +0 -0
  56. 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/
@@ -0,0 +1,6 @@
1
+ node_modules
2
+ **/node_modules
3
+ **/lib
4
+ **/package.json
5
+ !/package.json
6
+ jupyter_ai_acp_client
@@ -0,0 +1,2 @@
1
+ nodeLinker: node-modules
2
+ enableScripts: false