celeborn-code 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.
@@ -0,0 +1,29 @@
1
+ """celeborn-code — an alias for **Celeborn Code**.
2
+
3
+ This is a redirect/alias package. The real tool is distributed as ``celeborn``:
4
+
5
+ uv tool install celeborn # or: pip install celeborn
6
+
7
+ Installing ``celeborn-code`` pulls in ``celeborn`` as a dependency, so you end
8
+ up with the correct tool either way. Run ``celeborn about`` to confirm.
9
+
10
+ Celeborn Code is a long-term context substrate (memory) for AI coding agents
11
+ (Claude Code, Codex, Grok). It is **not** Apache Celeborn (a Spark/Flink remote
12
+ shuffle service) or ``frkngksl/Celeborn`` (a Windows API-unhooking tool).
13
+
14
+ Home: https://celeborn.thot.ai
15
+ Source: https://github.com/cloud-dancer-labs/celeborn
16
+ """
17
+
18
+ __version__ = "0.0.1"
19
+
20
+
21
+ def _redirect() -> None:
22
+ """Console-script entry point: tell the user the real command is ``celeborn``."""
23
+ print(
24
+ "celeborn-code is an alias for Celeborn Code.\n"
25
+ "The command you want is: celeborn\n"
26
+ " (installing celeborn-code already pulled in the real `celeborn` package)\n"
27
+ "Try: celeborn about · celeborn --help\n"
28
+ "Home: https://celeborn.thot.ai"
29
+ )
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: celeborn-code
3
+ Version: 0.0.1
4
+ Summary: Alias for Celeborn Code — installs `celeborn`, the long-term context substrate (memory) for AI coding agents. Not Apache Celeborn or the frkngksl/Celeborn Windows tool.
5
+ Project-URL: Homepage, https://celeborn.thot.ai
6
+ Project-URL: Source, https://github.com/cloud-dancer-labs/celeborn
7
+ Author: Cloud Dancer
8
+ License: Business Source License 1.1
9
+ Keywords: ai,celeborn,celeborn code,claude code,codex,coding agent,context,memory
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Topic :: Software Development
13
+ Requires-Python: >=3.9
14
+ Requires-Dist: celeborn
15
+ Description-Content-Type: text/markdown
16
+
17
+ # celeborn-code
18
+
19
+ **This is an alias for [Celeborn Code](https://celeborn.thot.ai).** The tool is published as
20
+ [`celeborn`](https://pypi.org/project/celeborn/) — installing `celeborn-code` simply pulls that in.
21
+
22
+ ```sh
23
+ uv tool install celeborn # canonical
24
+ pip install celeborn # equivalent
25
+ ```
26
+
27
+ Then: `celeborn about` · `celeborn --help`
28
+
29
+ ## What it is
30
+
31
+ Celeborn Code is a long-term **context substrate (memory) for AI coding agents** — Claude Code,
32
+ Codex, Grok. It gives any repository a small, disciplined on-disk memory so coding sessions stay
33
+ light, survive compaction, and keep their place across days.
34
+
35
+ ## What it is *not*
36
+
37
+ - **[Apache Celeborn](https://celeborn.apache.org)** — a Spark/Flink/MapReduce remote shuffle service. Unrelated.
38
+ - **[`frkngksl/Celeborn`](https://github.com/frkngksl/Celeborn)** — a Windows API-unhooking tool. Unrelated.
39
+
40
+ Source: <https://github.com/cloud-dancer-labs/celeborn> · Home: <https://celeborn.thot.ai>
@@ -0,0 +1,5 @@
1
+ celeborn_code/__init__.py,sha256=akQfmTgatxCr-55OeQM_mQDodmLdz0iRiXy6_O9RJgs,1114
2
+ celeborn_code-0.0.1.dist-info/METADATA,sha256=VgYCSP0ZNM5Vz2QWoPBKgv6xq6S5c6hutQ8ILwPzMds,1676
3
+ celeborn_code-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ celeborn_code-0.0.1.dist-info/entry_points.txt,sha256=2jtE5no9TeQkPgaK3Jh6GdsS_1-4rcR0c7NIOaPqCjs,58
5
+ celeborn_code-0.0.1.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,2 @@
1
+ [console_scripts]
2
+ celeborn-code = celeborn_code:_redirect