opencontext-cli 0.1.0__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.
@@ -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,8 @@
1
+ opencontext_cli/__init__.py,sha256=xISmozgW-5_XUqbBhTJglUCcPhJWwvC4MmaV6HzS_ps,39
2
+ opencontext_cli/main.py,sha256=4Huvdyp7CmdAS3oP79LxfHqqWj9yT7IF6KfDAXabrFo,89942
3
+ opencontext_cli-0.1.0.dist-info/licenses/LICENSE,sha256=FLNoIknuRr17bH_jNRuy5xDyZapHwvK0YXYnCdMxyFk,1090
4
+ opencontext_cli-0.1.0.dist-info/METADATA,sha256=ZFhJxPyhI9gpePz0aK5rd68ptzWoX0NbWEhfbcGkbbs,1367
5
+ opencontext_cli-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
6
+ opencontext_cli-0.1.0.dist-info/entry_points.txt,sha256=JbIC798P_NqOu-J3d7qRjs6XZXquVKIXRJe-puHEw8g,58
7
+ opencontext_cli-0.1.0.dist-info/top_level.txt,sha256=5sCeeEARYAUe8-7-oiEWiRBS-bggIggDqPqKnPfPqSg,16
8
+ opencontext_cli-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ opencontext = opencontext_cli.main:main
@@ -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 @@
1
+ opencontext_cli