clawlink 0.0.1__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.
- clawlink-0.0.1/PKG-INFO +23 -0
- clawlink-0.0.1/README.md +9 -0
- clawlink-0.0.1/clawlink/__init__.py +6 -0
- clawlink-0.0.1/clawlink.egg-info/PKG-INFO +23 -0
- clawlink-0.0.1/clawlink.egg-info/SOURCES.txt +7 -0
- clawlink-0.0.1/clawlink.egg-info/dependency_links.txt +1 -0
- clawlink-0.0.1/clawlink.egg-info/top_level.txt +1 -0
- clawlink-0.0.1/pyproject.toml +23 -0
- clawlink-0.0.1/setup.cfg +4 -0
clawlink-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clawlink
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved by the ClawNexus project. See https://github.com/SilverstreamsAI/ClawNexus
|
|
5
|
+
Author-email: SilverstreamsAI <alan@silverstream.tech>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/SilverstreamsAI/ClawNexus
|
|
8
|
+
Project-URL: npm, https://www.npmjs.com/package/clawnexus
|
|
9
|
+
Keywords: ai,agents,discovery,registry,openclaw,clawnexus
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# clawlink
|
|
16
|
+
|
|
17
|
+
Reserved by the [ClawNexus](https://github.com/SilverstreamsAI/ClawNexus) project.
|
|
18
|
+
|
|
19
|
+
ClawNexus is an identity registry for AI agents. Install via npm:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g clawnexus
|
|
23
|
+
```
|
clawlink-0.0.1/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: clawlink
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved by the ClawNexus project. See https://github.com/SilverstreamsAI/ClawNexus
|
|
5
|
+
Author-email: SilverstreamsAI <alan@silverstream.tech>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/SilverstreamsAI/ClawNexus
|
|
8
|
+
Project-URL: npm, https://www.npmjs.com/package/clawnexus
|
|
9
|
+
Keywords: ai,agents,discovery,registry,openclaw,clawnexus
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# clawlink
|
|
16
|
+
|
|
17
|
+
Reserved by the [ClawNexus](https://github.com/SilverstreamsAI/ClawNexus) project.
|
|
18
|
+
|
|
19
|
+
ClawNexus is an identity registry for AI agents. Install via npm:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g clawnexus
|
|
23
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
clawlink
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "clawlink"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved by the ClawNexus project. See https://github.com/SilverstreamsAI/ClawNexus"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "SilverstreamsAI", email = "alan@silverstream.tech"}
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "agents", "discovery", "registry", "openclaw", "clawnexus"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/SilverstreamsAI/ClawNexus"
|
|
23
|
+
npm = "https://www.npmjs.com/package/clawnexus"
|
clawlink-0.0.1/setup.cfg
ADDED