sello 0.1.12 → 0.1.13
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.
- package/README.md +1 -1
- package/docs/sdk-quickstart.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ Sello does not prove that the agent called every service it should have called,
|
|
|
158
158
|
- [sdks/typescript/examples/mcp-minimal-server.ts](sdks/typescript/examples/mcp-minimal-server.ts): a small MCP-shaped integration.
|
|
159
159
|
- [docs/security-review.md](docs/security-review.md) and [docs/sdk-security-audit.md](docs/sdk-security-audit.md): current review notes.
|
|
160
160
|
|
|
161
|
-
The TypeScript SDK is published on [npm](https://www.npmjs.com/package/sello) and lives in [`sdks/typescript/`](sdks/typescript/). The Python SDK is published on [PyPI](https://pypi.org/project/sello/) and lives in [`sdks/python/`](sdks/python/). Live Rekor proof verification and production identity operations are still future work.
|
|
161
|
+
The TypeScript SDK is published on [npm](https://www.npmjs.com/package/sello) and lives in [`sdks/typescript/`](sdks/typescript/). The Python SDK is published on [PyPI](https://pypi.org/project/sello/) and lives in [`sdks/python/`](sdks/python/). Both SDKs support the same service-side `sello.service()` flow; Python uses the `@receipts.tool(...)` decorator. Live Rekor proof verification and production identity operations are still future work.
|
|
162
162
|
|
|
163
163
|
## Core Terms
|
|
164
164
|
|
package/docs/sdk-quickstart.md
CHANGED
|
@@ -97,6 +97,14 @@ node --run example:tool
|
|
|
97
97
|
node --run actions
|
|
98
98
|
```
|
|
99
99
|
|
|
100
|
+
Or run the matching Python example:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
python -m pip install ./sdks/python
|
|
104
|
+
python sdks/python/examples/quickstart_tool.py
|
|
105
|
+
npx --yes sello actions
|
|
106
|
+
```
|
|
107
|
+
|
|
100
108
|
For an MCP-shaped `tools/call` boundary, run:
|
|
101
109
|
|
|
102
110
|
```bash
|