rulith 0.0.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.
rulith/__init__.py ADDED
@@ -0,0 +1,12 @@
1
+ """rulith - reserved PyPI name (placeholder, no Python API yet).
2
+
3
+ rulith is an external reasoning board for LLM agents: predicate working
4
+ memory, forward-chaining closure, exact-or-fail arithmetic, and provenance
5
+ on every conclusion. It ships as a Node / MCP tool, not a Python package:
6
+
7
+ npm install -g rulith
8
+
9
+ See https://github.com/rulith-dev/rulith
10
+ """
11
+
12
+ __version__ = "0.0.0"
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: rulith
3
+ Version: 0.0.0
4
+ Summary: Name reserved. rulith is an external reasoning board for LLM agents, distributed on npm and GitHub - not (yet) a Python package.
5
+ Project-URL: Homepage, https://github.com/rulith-dev/rulith
6
+ Project-URL: Repository, https://github.com/rulith-dev/rulith
7
+ Project-URL: npm, https://www.npmjs.com/package/rulith
8
+ Author-email: ff <jiqun.qi@gmail.com>
9
+ License: MIT License
10
+
11
+ Copyright (c) 2026 ff <jiqun.qi@gmail.com>
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
+ SOFTWARE.
30
+ License-File: LICENSE
31
+ Keywords: agent,llm,mcp,neurosymbolic,placeholder,reasoning
32
+ Classifier: Development Status :: 1 - Planning
33
+ Classifier: License :: OSI Approved :: MIT License
34
+ Classifier: Programming Language :: Python :: 3
35
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
36
+ Requires-Python: >=3.8
37
+ Description-Content-Type: text/markdown
38
+
39
+ # rulith (PyPI name placeholder)
40
+
41
+ **This PyPI name is reserved to prevent typosquatting and confusion. There is no Python package here yet.**
42
+
43
+ [rulith](https://github.com/rulith-dev/rulith) is an external reasoning board for LLM agents — predicate working memory, forward-chaining closure, exact-or-fail arithmetic, and provenance on every conclusion ("derived or it didn't happen").
44
+
45
+ It ships as a Node / MCP tool, not a Python library:
46
+
47
+ ```
48
+ npm install -g rulith
49
+ ```
50
+
51
+ or as a Claude Code plugin:
52
+
53
+ ```
54
+ /plugin marketplace add rulith-dev/rulith
55
+ /plugin install rulith@rulith
56
+ ```
57
+
58
+ - Repo: https://github.com/rulith-dev/rulith
59
+ - npm: https://www.npmjs.com/package/rulith
60
+
61
+ MIT © ff
@@ -0,0 +1,5 @@
1
+ rulith/__init__.py,sha256=wi1G2RXY-4Oxhgrxq8OnKxTFnhrxsW9Dir4YskyYp1I,383
2
+ rulith-0.0.0.dist-info/METADATA,sha256=CvS-diRWjdZ0fnWvwnfR8ARk4z322Et3xvnc2rDShjE,2697
3
+ rulith-0.0.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ rulith-0.0.0.dist-info/licenses/LICENSE,sha256=3LxRXZEidxr2evFENKuoM4Of3hmRFwr9yCKXeatxJ-w,1080
5
+ rulith-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ff <jiqun.qi@gmail.com>
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.