agentctx 0.0.1__py3-none-any.whl

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.
agentctx/__init__.py ADDED
File without changes
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentctx
3
+ Version: 0.0.1
4
+ Summary:
5
+ License: MIT
6
+ License-File: LICENSE
7
+ Keywords: poetry,pypi
8
+ Author: Nikolay Baryshnikov
9
+ Author-email: root@k0d.ru
10
+ Requires-Python: >=3.8,<4.0
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Information Technology
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Natural Language :: English
16
+ Classifier: Natural Language :: Russian
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3.8
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Programming Language :: Python :: 3.14
25
+ Classifier: Programming Language :: Python :: 3.7
26
+ Project-URL: Homepage, https://github.com/18studio/agentctx
27
+ Project-URL: Repository, https://github.com/18studio/agentctx
28
+ Description-Content-Type: text/markdown
29
+
30
+ # Проект для управления разными учетными записями для codex и получения статистики по ним
31
+
32
+ Фичи:
33
+
34
+ - Переключение профиля без авторизации без доп авторизации. пример ux: kubectx
35
+ - Получение статистики потребления для всех учеток
36
+ - CLI only interface
37
+ - Выбор Skill / mcp которые будут доступны в конкретной сессии codex
38
+
39
+
@@ -0,0 +1,5 @@
1
+ agentctx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ agentctx-0.0.1.dist-info/METADATA,sha256=2WvKxkD7GOF0eSzxPTWXI8S5BLzq7FmWhpyUme-lCKg,1628
3
+ agentctx-0.0.1.dist-info/WHEEL,sha256=EGEvSphFYqXKs23-kQBeyNoJP1nrT8ZJKQoi5p5DYL8,88
4
+ agentctx-0.0.1.dist-info/licenses/LICENSE,sha256=UpvOl0gs8VvM5AAedHe9BUNr5C5PZ4sWJvcQN0r6VSA,1076
5
+ agentctx-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.4.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Baryshnikov Nikolay
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.