calfkit-tools 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.
Files changed (149) hide show
  1. calfkit_tools-0.1.0/.gitignore +218 -0
  2. calfkit_tools-0.1.0/LICENSE +201 -0
  3. calfkit_tools-0.1.0/PKG-INFO +112 -0
  4. calfkit_tools-0.1.0/README.md +69 -0
  5. calfkit_tools-0.1.0/THIRD_PARTY_NOTICES.md +43 -0
  6. calfkit_tools-0.1.0/pyproject.toml +81 -0
  7. calfkit_tools-0.1.0/src/calfkit_tools/__init__.py +20 -0
  8. calfkit_tools-0.1.0/src/calfkit_tools/hermes/__init__.py +0 -0
  9. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/__init__.py +0 -0
  10. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/agent/__init__.py +0 -0
  11. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/agent/auxiliary_client.py +11 -0
  12. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/agent/lsp/__init__.py +10 -0
  13. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/agent/lsp/range_shift.py +6 -0
  14. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/agent/lsp/reporter.py +11 -0
  15. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/agent/lsp/servers.py +4 -0
  16. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/gateway/__init__.py +0 -0
  17. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/gateway/session_context.py +24 -0
  18. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/gateway/status.py +28 -0
  19. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/__init__.py +0 -0
  20. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/_subprocess_compat.py +17 -0
  21. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/auth.py +21 -0
  22. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/config.py +53 -0
  23. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/nous_account.py +13 -0
  24. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/plugins.py +10 -0
  25. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/hermes_cli/profiles.py +8 -0
  26. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_shims/model_tools.py +64 -0
  27. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/__init__.py +0 -0
  28. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/__init__.py +0 -0
  29. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/async_utils.py +68 -0
  30. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/file_safety.py +640 -0
  31. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/i18n.py +302 -0
  32. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/redact.py +496 -0
  33. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/skill_utils.py +666 -0
  34. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/web_search_provider.py +185 -0
  35. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/agent/web_search_registry.py +245 -0
  36. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/hermes_constants.py +471 -0
  37. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/af.yaml +357 -0
  38. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/de.yaml +357 -0
  39. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/en.yaml +372 -0
  40. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/es.yaml +357 -0
  41. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/fr.yaml +357 -0
  42. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/ga.yaml +361 -0
  43. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/hu.yaml +357 -0
  44. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/it.yaml +357 -0
  45. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/ja.yaml +357 -0
  46. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/ko.yaml +357 -0
  47. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/pt.yaml +357 -0
  48. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/ru.yaml +357 -0
  49. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/tr.yaml +357 -0
  50. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/uk.yaml +357 -0
  51. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/zh-hant.yaml +357 -0
  52. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/locales/zh.yaml +357 -0
  53. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/__init__.py +25 -0
  54. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/ansi_strip.py +44 -0
  55. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/approval.py +1697 -0
  56. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/binary_extensions.py +42 -0
  57. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/budget_config.py +51 -0
  58. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/code_execution_tool.py +1831 -0
  59. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/credential_files.py +454 -0
  60. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/env_passthrough.py +163 -0
  61. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/__init__.py +14 -0
  62. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/base.py +895 -0
  63. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/daytona.py +270 -0
  64. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/docker.py +1296 -0
  65. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/file_sync.py +403 -0
  66. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/local.py +697 -0
  67. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/managed_modal.py +282 -0
  68. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/modal.py +478 -0
  69. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/modal_utils.py +204 -0
  70. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/singularity.py +262 -0
  71. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/environments/ssh.py +319 -0
  72. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/file_operations.py +2292 -0
  73. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/file_state.py +332 -0
  74. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/file_tools.py +1533 -0
  75. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/fuzzy_match.py +860 -0
  76. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/interrupt.py +98 -0
  77. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/lazy_deps.py +623 -0
  78. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/managed_tool_gateway.py +192 -0
  79. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/patch_parser.py +622 -0
  80. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/path_security.py +43 -0
  81. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/process_registry.py +1616 -0
  82. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/registry.py +594 -0
  83. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/terminal_tool.py +2611 -0
  84. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/thread_context.py +120 -0
  85. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/tirith_security.py +820 -0
  86. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/todo_tool.py +279 -0
  87. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/tool_backend_helpers.py +182 -0
  88. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/tool_output_limits.py +110 -0
  89. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/url_safety.py +361 -0
  90. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/web_providers/__init__.py +0 -0
  91. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/web_providers/brave_free.py +137 -0
  92. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/web_providers/ddgs.py +104 -0
  93. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/web_providers/searxng.py +140 -0
  94. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/tools/web_providers/tavily.py +220 -0
  95. calfkit_tools-0.1.0/src/calfkit_tools/hermes/_vendor/utils.py +376 -0
  96. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/__init__.py +44 -0
  97. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/_runtime.py +109 -0
  98. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/code.py +110 -0
  99. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/files.py +193 -0
  100. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/shell.py +162 -0
  101. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/todo.py +116 -0
  102. calfkit_tools-0.1.0/src/calfkit_tools/hermes/node/web.py +156 -0
  103. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/__init__.py +0 -0
  104. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/_vendor/__init__.py +0 -0
  105. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/_vendor/_ssrf.py +622 -0
  106. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/_vendor/common_tools/__init__.py +0 -0
  107. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/_vendor/common_tools/web_fetch.py +166 -0
  108. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/node/__init__.py +58 -0
  109. calfkit_tools-0.1.0/src/calfkit_tools/web_fetch/results.py +37 -0
  110. calfkit_tools-0.1.0/tests/conftest.py +13 -0
  111. calfkit_tools-0.1.0/tests/hermes/conftest.py +12 -0
  112. calfkit_tools-0.1.0/tests/hermes/test_functional_smoke.py +88 -0
  113. calfkit_tools-0.1.0/tests/hermes/test_import_smoke.py +62 -0
  114. calfkit_tools-0.1.0/tests/hermes/test_node_code.py +247 -0
  115. calfkit_tools-0.1.0/tests/hermes/test_node_files.py +502 -0
  116. calfkit_tools-0.1.0/tests/hermes/test_node_runtime.py +200 -0
  117. calfkit_tools-0.1.0/tests/hermes/test_node_shell.py +396 -0
  118. calfkit_tools-0.1.0/tests/hermes/test_node_todo.py +314 -0
  119. calfkit_tools-0.1.0/tests/hermes/test_node_web.py +350 -0
  120. calfkit_tools-0.1.0/tests/hermes/test_rewrite_imports.py +91 -0
  121. calfkit_tools-0.1.0/tests/hermes/test_shims.py +27 -0
  122. calfkit_tools-0.1.0/tests/hermes/test_vendored_fuzzy_match.py +548 -0
  123. calfkit_tools-0.1.0/tests/hermes/test_vendored_patch_parser.py +651 -0
  124. calfkit_tools-0.1.0/tests/hermes/test_vendored_todo_tool.py +121 -0
  125. calfkit_tools-0.1.0/tests/hermes/test_web_providers.py +250 -0
  126. calfkit_tools-0.1.0/tests/hermes/test_web_search_import_smoke.py +85 -0
  127. calfkit_tools-0.1.0/tests/hermes/test_web_search_registry.py +103 -0
  128. calfkit_tools-0.1.0/tests/hermes/test_web_url_safety.py +98 -0
  129. calfkit_tools-0.1.0/tests/test_package_surface.py +57 -0
  130. calfkit_tools-0.1.0/tests/web_fetch/conftest.py +13 -0
  131. calfkit_tools-0.1.0/tests/web_fetch/test_node_web_fetch.py +184 -0
  132. calfkit_tools-0.1.0/tests/web_fetch/test_ssrf.py +1124 -0
  133. calfkit_tools-0.1.0/tests/web_fetch/test_web_fetch.py +540 -0
  134. calfkit_tools-0.1.0/tests/web_fetch/test_web_fetch_import_smoke.py +41 -0
  135. calfkit_tools-0.1.0/vendor/_template/METADATA.yaml +12 -0
  136. calfkit_tools-0.1.0/vendor/_template/README.md +24 -0
  137. calfkit_tools-0.1.0/vendor/hermes/LICENSE +21 -0
  138. calfkit_tools-0.1.0/vendor/hermes/METADATA.yaml +68 -0
  139. calfkit_tools-0.1.0/vendor/hermes/NODE.md +114 -0
  140. calfkit_tools-0.1.0/vendor/hermes/README.md +38 -0
  141. calfkit_tools-0.1.0/vendor/hermes/patches/.gitkeep +0 -0
  142. calfkit_tools-0.1.0/vendor/hermes/patches/0002-todo-store-constructor-seed.patch +17 -0
  143. calfkit_tools-0.1.0/vendor/hermes/scripts/rewrite_imports.py +95 -0
  144. calfkit_tools-0.1.0/vendor/web_fetch/LICENSE +21 -0
  145. calfkit_tools-0.1.0/vendor/web_fetch/METADATA.yaml +81 -0
  146. calfkit_tools-0.1.0/vendor/web_fetch/NODE.md +92 -0
  147. calfkit_tools-0.1.0/vendor/web_fetch/README.md +34 -0
  148. calfkit_tools-0.1.0/vendor/web_fetch/patches/.gitkeep +0 -0
  149. calfkit_tools-0.1.0/vendor/web_fetch/patches/0001-ssrf-streaming-byte-cap.patch +199 -0
@@ -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
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1,112 @@
1
+ Metadata-Version: 2.4
2
+ Name: calfkit-tools
3
+ Version: 0.1.0
4
+ Summary: Vendored agent tools for the calfkit SDK: hermes shell/files/web/todo and an SSRF-safe web_fetch, each deployable as a calfkit tool node.
5
+ Project-URL: Homepage, https://github.com/calf-ai/calfkit-peripherals
6
+ Project-URL: Repository, https://github.com/calf-ai/calfkit-peripherals
7
+ Project-URL: Issues, https://github.com/calf-ai/calfkit-peripherals/issues
8
+ Author: calf-ai
9
+ License-Expression: Apache-2.0 AND MIT
10
+ License-File: LICENSE
11
+ License-File: THIRD_PARTY_NOTICES.md
12
+ License-File: vendor/hermes/LICENSE
13
+ License-File: vendor/web_fetch/LICENSE
14
+ Keywords: agent,agent-tools,calfkit,kafka,llm,tools
15
+ Classifier: Development Status :: 4 - Beta
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Requires-Python: >=3.11
22
+ Requires-Dist: calfkit<0.10,>=0.9.0
23
+ Requires-Dist: ddgs
24
+ Requires-Dist: httpx>=0.27
25
+ Requires-Dist: markdownify>=1.2
26
+ Requires-Dist: psutil
27
+ Requires-Dist: ptyprocess; sys_platform != 'win32'
28
+ Requires-Dist: pydantic
29
+ Requires-Dist: pyyaml
30
+ Requires-Dist: requests
31
+ Requires-Dist: typing-extensions
32
+ Provides-Extra: all
33
+ Requires-Dist: daytona-sdk; extra == 'all'
34
+ Requires-Dist: docker; extra == 'all'
35
+ Requires-Dist: modal; extra == 'all'
36
+ Provides-Extra: shell-daytona
37
+ Requires-Dist: daytona-sdk; extra == 'shell-daytona'
38
+ Provides-Extra: shell-docker
39
+ Requires-Dist: docker; extra == 'shell-docker'
40
+ Provides-Extra: shell-modal
41
+ Requires-Dist: modal; extra == 'shell-modal'
42
+ Description-Content-Type: text/markdown
43
+
44
+ # 🐮 calfkit-tools
45
+
46
+ A single distribution where **calfkit** vendors agent tools ported from many upstream
47
+ open-source codebases into one place.
48
+
49
+ calfkit's tool interface is **Kafka-based** (language-agnostic): a "node tool" is a process
50
+ that consumes a request topic and produces a reply. This repo packages those tools as one
51
+ installable distribution, **`calfkit-tools`** — organised internally by the upstream source
52
+ each tool was vendored from, each a subpackage exposing its tools over the calfkit Kafka
53
+ contract.
54
+
55
+ ## Layout
56
+
57
+ - `src/calfkit_tools/<source>/` — one subpackage per upstream source (e.g. `hermes`,
58
+ `web_fetch`); its tool nodes live under `<source>/node/`.
59
+ - `vendor/<source>/` — provenance only (`LICENSE`, `METADATA.yaml`, `NODE.md`, `README.md`,
60
+ `patches/`). Never on `sys.path`, never in the wheel.
61
+ - `vendor/_template/` — copy this to start a new source.
62
+ - `tests/<source>/` — per-source test suites.
63
+ - `pyproject.toml` — the single `calfkit-tools` distribution (deps + extras).
64
+ - `docs/project-structure.md` — **start here** to add a source.
65
+ - `docs/reference/tool-contracts.md` — roll-up of every tool node's interface
66
+ contract (params, deps/resource wiring, env config, reply shapes); each
67
+ source's `vendor/<source>/NODE.md` stays authoritative.
68
+ - `docs/design/` — per-tool design docs (e.g. the hermes-agent shell+file port).
69
+ - `docs/tools-research/` — the upstream survey that informed which tools to vendor.
70
+ - `THIRD_PARTY_NOTICES.md` — aggregated attribution index (per-source `vendor/<source>/LICENSE`
71
+ + `METADATA.yaml` are authoritative).
72
+
73
+ ## Install
74
+
75
+ One distribution covers every default tool path:
76
+
77
+ ```bash
78
+ pip install calfkit-tools # or: uv add calfkit-tools
79
+ ```
80
+
81
+ The base install runs all tools with their default backends. Three **opt-in** extras enable
82
+ remote shell-execution backends only (the default local backend needs none of them):
83
+
84
+ ```bash
85
+ pip install "calfkit-tools[shell-docker]" # docker backend
86
+ pip install "calfkit-tools[shell-modal]" # modal backend
87
+ pip install "calfkit-tools[shell-daytona]" # daytona backend
88
+ pip install "calfkit-tools[all]" # all three
89
+ ```
90
+
91
+ ## Adding a source
92
+
93
+ Add code under `src/calfkit_tools/<source>/`, provenance under `vendor/<source>/`, tests under
94
+ `tests/<source>/`, and any new deps/extras to the root `pyproject.toml`. Follow
95
+ [`docs/project-structure.md`](docs/project-structure.md). Vendor **by source** (license-first,
96
+ per the `open-source-vendoring-best-practices` conventions), expose **by tool**, and keep
97
+ upstream code import-rewritten under `_vendor/`.
98
+
99
+ ## Status
100
+
101
+ **Stage D landed:** all eleven vendored tools are deployable calfkit tool nodes
102
+ (calfkit ≥ 0.9.0, 1:1 tool→node, in-memory multitenancy keyed per calling agent
103
+ — ADR-0004). Import-and-deploy:
104
+
105
+ ```python
106
+ from calfkit_tools.hermes.node import HERMES_NODES # terminal, process, files, todo, web, execute_code
107
+ from calfkit_tools.web_fetch.node import web_fetch
108
+ ```
109
+
110
+ See [`docs/design/node-port.md`](docs/design/node-port.md) and each source's
111
+ `vendor/<source>/NODE.md` for contracts, wiring, and the trust model. Durable state and
112
+ security hardening remain deferred.
@@ -0,0 +1,69 @@
1
+ # 🐮 calfkit-tools
2
+
3
+ A single distribution where **calfkit** vendors agent tools ported from many upstream
4
+ open-source codebases into one place.
5
+
6
+ calfkit's tool interface is **Kafka-based** (language-agnostic): a "node tool" is a process
7
+ that consumes a request topic and produces a reply. This repo packages those tools as one
8
+ installable distribution, **`calfkit-tools`** — organised internally by the upstream source
9
+ each tool was vendored from, each a subpackage exposing its tools over the calfkit Kafka
10
+ contract.
11
+
12
+ ## Layout
13
+
14
+ - `src/calfkit_tools/<source>/` — one subpackage per upstream source (e.g. `hermes`,
15
+ `web_fetch`); its tool nodes live under `<source>/node/`.
16
+ - `vendor/<source>/` — provenance only (`LICENSE`, `METADATA.yaml`, `NODE.md`, `README.md`,
17
+ `patches/`). Never on `sys.path`, never in the wheel.
18
+ - `vendor/_template/` — copy this to start a new source.
19
+ - `tests/<source>/` — per-source test suites.
20
+ - `pyproject.toml` — the single `calfkit-tools` distribution (deps + extras).
21
+ - `docs/project-structure.md` — **start here** to add a source.
22
+ - `docs/reference/tool-contracts.md` — roll-up of every tool node's interface
23
+ contract (params, deps/resource wiring, env config, reply shapes); each
24
+ source's `vendor/<source>/NODE.md` stays authoritative.
25
+ - `docs/design/` — per-tool design docs (e.g. the hermes-agent shell+file port).
26
+ - `docs/tools-research/` — the upstream survey that informed which tools to vendor.
27
+ - `THIRD_PARTY_NOTICES.md` — aggregated attribution index (per-source `vendor/<source>/LICENSE`
28
+ + `METADATA.yaml` are authoritative).
29
+
30
+ ## Install
31
+
32
+ One distribution covers every default tool path:
33
+
34
+ ```bash
35
+ pip install calfkit-tools # or: uv add calfkit-tools
36
+ ```
37
+
38
+ The base install runs all tools with their default backends. Three **opt-in** extras enable
39
+ remote shell-execution backends only (the default local backend needs none of them):
40
+
41
+ ```bash
42
+ pip install "calfkit-tools[shell-docker]" # docker backend
43
+ pip install "calfkit-tools[shell-modal]" # modal backend
44
+ pip install "calfkit-tools[shell-daytona]" # daytona backend
45
+ pip install "calfkit-tools[all]" # all three
46
+ ```
47
+
48
+ ## Adding a source
49
+
50
+ Add code under `src/calfkit_tools/<source>/`, provenance under `vendor/<source>/`, tests under
51
+ `tests/<source>/`, and any new deps/extras to the root `pyproject.toml`. Follow
52
+ [`docs/project-structure.md`](docs/project-structure.md). Vendor **by source** (license-first,
53
+ per the `open-source-vendoring-best-practices` conventions), expose **by tool**, and keep
54
+ upstream code import-rewritten under `_vendor/`.
55
+
56
+ ## Status
57
+
58
+ **Stage D landed:** all eleven vendored tools are deployable calfkit tool nodes
59
+ (calfkit ≥ 0.9.0, 1:1 tool→node, in-memory multitenancy keyed per calling agent
60
+ — ADR-0004). Import-and-deploy:
61
+
62
+ ```python
63
+ from calfkit_tools.hermes.node import HERMES_NODES # terminal, process, files, todo, web, execute_code
64
+ from calfkit_tools.web_fetch.node import web_fetch
65
+ ```
66
+
67
+ See [`docs/design/node-port.md`](docs/design/node-port.md) and each source's
68
+ `vendor/<source>/NODE.md` for contracts, wiring, and the trust model. Durable state and
69
+ security hardening remain deferred.
@@ -0,0 +1,43 @@
1
+ # Third-Party Notices
2
+
3
+ `calfkit-tools` vendors source from external open-source projects. Each vendored source's
4
+ provenance lives under `vendor/<source>/` and carries its own **authoritative** `LICENSE`
5
+ (verbatim upstream) and `METADATA.yaml` (provenance: repo, commit, license, files, local
6
+ modifications); the vendored code itself lives under `src/calfkit_tools/<source>/_vendor/`.
7
+ This file is the aggregated index across sources.
8
+
9
+ ## Conventions
10
+
11
+ See `docs/project-structure.md` and the `open-source-vendoring-best-practices` skill.
12
+
13
+ - Vendor **by source**, with the license **checked and classified before** copying.
14
+ - **Permissive licenses only** (MIT / BSD / ISC / Apache-2.0 / Unlicense / 0BSD / CC0).
15
+ Weak/strong copyleft, "no license", and source-available/restricted licenses are a
16
+ **stop-and-flag** — do not copy without an explicit decision.
17
+ - Preserve all upstream copyright/license headers. Record **secondary-origin**
18
+ attributions when an upstream itself ported code from a third project.
19
+ - Note local modifications (the mechanical import-rewrite and any `patches/`).
20
+
21
+ ## Sources
22
+
23
+ ### hermes (MIT)
24
+ - Upstream: https://github.com/NousResearch/hermes-agent @ `5a36f76a00cc448948856a5c1b52710aafec264e`, retrieved 2026-06-07
25
+ - License: MIT — © 2025 Nous Research (full text: `vendor/hermes/LICENSE`)
26
+ - Vendored under: `src/calfkit_tools/hermes/_vendor/` (provenance: `vendor/hermes/`)
27
+ - Tools: shell (terminal, process, execute_code), files (read/write/patch/search), web_search + web_extract (provider system: ddgs / brave-free / searxng / tavily), todo (per-session task list)
28
+ - Secondary origins: opencode (MIT), nearai/ironclaw (elect-MIT), free-code (MIT) — see `vendor/hermes/METADATA.yaml`
29
+
30
+ ### web_fetch (MIT)
31
+ - Upstream: https://github.com/pydantic/pydantic-ai @ `1b42945de65b2816fed3cffa371671a2ac759241` (tag `v1.106.0`), retrieved 2026-06-08
32
+ - License: MIT — © Pydantic Services Inc. (full text: `vendor/web_fetch/LICENSE`)
33
+ - Vendored under: `src/calfkit_tools/web_fetch/_vendor/` (provenance: `vendor/web_fetch/`)
34
+ - Tools: web_fetch (SSRF-safe URL → markdown / neutral binary)
35
+ - Secondary origins: none found (H3 verified — `_ssrf.py` IP/cloud-metadata tables are independently authored from primary RFCs; see `vendor/web_fetch/METADATA.yaml`)
36
+
37
+ <!-- Per-source entry template:
38
+ ### <source-name> (<SPDX>)
39
+ - Upstream: <repo URL> @ <commit SHA>, retrieved <YYYY-MM-DD>
40
+ - License: <SPDX> — © <year> <holder> (full text: vendor/<source>/LICENSE)
41
+ - Vendored under: src/calfkit_tools/<source>/_vendor/ (provenance: vendor/<source>/)
42
+ - Secondary origins (if any): <project> (<SPDX>) — <files>
43
+ -->