opencontext-cli 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.
- opencontext_cli-0.1.0/LICENSE +22 -0
- opencontext_cli-0.1.0/PKG-INFO +32 -0
- opencontext_cli-0.1.0/README.md +7 -0
- opencontext_cli-0.1.0/opencontext_cli/__init__.py +1 -0
- opencontext_cli-0.1.0/opencontext_cli/main.py +2398 -0
- opencontext_cli-0.1.0/opencontext_cli.egg-info/PKG-INFO +32 -0
- opencontext_cli-0.1.0/opencontext_cli.egg-info/SOURCES.txt +11 -0
- opencontext_cli-0.1.0/opencontext_cli.egg-info/dependency_links.txt +1 -0
- opencontext_cli-0.1.0/opencontext_cli.egg-info/entry_points.txt +2 -0
- opencontext_cli-0.1.0/opencontext_cli.egg-info/requires.txt +2 -0
- opencontext_cli-0.1.0/opencontext_cli.egg-info/top_level.txt +1 -0
- opencontext_cli-0.1.0/pyproject.toml +40 -0
- opencontext_cli-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 OpenContext Runtime contributors
|
|
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.
|
|
22
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: opencontext-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CLI adapter for OpenContext Runtime
|
|
5
|
+
Author: OpenContext Runtime maintainers
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/CesarMSFelipe/OpenContext-Runtime
|
|
8
|
+
Project-URL: Documentation, https://github.com/CesarMSFelipe/OpenContext-Runtime#readme
|
|
9
|
+
Project-URL: Issues, https://github.com/CesarMSFelipe/OpenContext-Runtime/issues
|
|
10
|
+
Project-URL: Source, https://github.com/CesarMSFelipe/OpenContext-Runtime
|
|
11
|
+
Keywords: ai,llm,context-engineering,cli,security
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Topic :: Software Development
|
|
18
|
+
Classifier: Topic :: Security
|
|
19
|
+
Requires-Python: >=3.12
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: opencontext-core>=0.1.0
|
|
23
|
+
Requires-Dist: opencontext-profiles>=0.1.0
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
|
|
26
|
+
# opencontext-cli
|
|
27
|
+
|
|
28
|
+
Optional command-line adapter for OpenContext Runtime.
|
|
29
|
+
|
|
30
|
+
The CLI is useful for manual onboarding, doctor checks, one-off context packs, local memory
|
|
31
|
+
commands, token reports, release checks, and evidence reports. Product integrations should prefer
|
|
32
|
+
the runtime/API path so users do not need to run OpenContext-specific commands.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# opencontext-cli
|
|
2
|
+
|
|
3
|
+
Optional command-line adapter for OpenContext Runtime.
|
|
4
|
+
|
|
5
|
+
The CLI is useful for manual onboarding, doctor checks, one-off context packs, local memory
|
|
6
|
+
commands, token reports, release checks, and evidence reports. Product integrations should prefer
|
|
7
|
+
the runtime/API path so users do not need to run OpenContext-specific commands.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""OpenContext Runtime CLI package."""
|