tokencanopy 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.
tokencanopy/__init__.py
ADDED
tokencanopy/__main__.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"""Entry point for the ``tokencanopy`` console script."""
|
|
2
|
+
|
|
3
|
+
import sys
|
|
4
|
+
|
|
5
|
+
from . import __version__
|
|
6
|
+
|
|
7
|
+
NOTICE = f"""tokencanopy {__version__} — name-claim placeholder.
|
|
8
|
+
|
|
9
|
+
The TokenCanopy workspace SDK is not released yet. TokenCanopy is the
|
|
10
|
+
workspace layer over two products:
|
|
11
|
+
|
|
12
|
+
e2a an inbox for your agents https://e2a.dev
|
|
13
|
+
AgentDrive a place to keep what they make
|
|
14
|
+
|
|
15
|
+
Docs and status: https://tokencanopy.com
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
def main() -> int:
|
|
20
|
+
sys.stdout.write(NOTICE)
|
|
21
|
+
return 0
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
if __name__ == "__main__":
|
|
25
|
+
raise SystemExit(main())
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tokencanopy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for the TokenCanopy workspace SDK. Full release coming soon — see https://tokencanopy.com.
|
|
5
|
+
Project-URL: Homepage, https://tokencanopy.com
|
|
6
|
+
Author: TokenCanopy
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: agentdrive,agents,e2a,tokencanopy,workspace
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Provides-Extra: dev
|
|
11
|
+
Requires-Dist: pytest>=8.3; extra == 'dev'
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# tokencanopy
|
|
15
|
+
|
|
16
|
+
> **v0.0.1 is a name-claim placeholder.** Running `tokencanopy` today prints an
|
|
17
|
+
> info message and exits. The workspace SDK ships in a later release.
|
|
18
|
+
|
|
19
|
+
TokenCanopy is trusted infrastructure for agents that communicate and create.
|
|
20
|
+
It is the workspace layer — identity, workspaces, membership, and billing — over
|
|
21
|
+
two products:
|
|
22
|
+
|
|
23
|
+
- **[e2a](https://e2a.dev)** — the communication plane: authenticated agent
|
|
24
|
+
email, verified sender identity, conversation threading, safety screening, and
|
|
25
|
+
human review.
|
|
26
|
+
- **AgentDrive** — the durable-work plane: versioned artifacts, semantic
|
|
27
|
+
retrieval, provenance, sharing, and cross-agent handoff.
|
|
28
|
+
|
|
29
|
+
## Using the products today
|
|
30
|
+
|
|
31
|
+
The TokenCanopy SDK is not released yet. Each product ships its own client, and
|
|
32
|
+
those remain the canonical interfaces:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install e2a # Python SDK for e2a
|
|
36
|
+
npm install @e2a/sdk # TypeScript SDK for e2a
|
|
37
|
+
npm install -g @e2a/cli # e2a CLI
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
When the TokenCanopy SDK lands, it will compose the product clients rather than
|
|
41
|
+
hide their contracts. Existing product APIs, credentials, and SDKs keep working
|
|
42
|
+
unchanged.
|
|
43
|
+
|
|
44
|
+
## Links
|
|
45
|
+
|
|
46
|
+
- Website: <https://tokencanopy.com>
|
|
47
|
+
- e2a: <https://e2a.dev>
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
tokencanopy/__init__.py,sha256=yDviR6Z6Z5wn8kqPaOEh4Uu4RTefz4iZIaBlqLbWyKE,190
|
|
2
|
+
tokencanopy/__main__.py,sha256=XlYQz2C8sZJukhQf5jpy7ELnlKB_Utb3nnbqVDJdov8,544
|
|
3
|
+
tokencanopy-0.0.1.dist-info/METADATA,sha256=pGW9Az2FCpJGEZDnk1aP3p6w_n6m0v5NLdpXfV-XO4E,1639
|
|
4
|
+
tokencanopy-0.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
5
|
+
tokencanopy-0.0.1.dist-info/entry_points.txt,sha256=q53tnzCpK_6smFCp6TA6gPx0YkhMJ2AcbRxwrbMUFgc,58
|
|
6
|
+
tokencanopy-0.0.1.dist-info/RECORD,,
|