@thisispandora/agent-sdk 0.1.0-alpha.3 → 0.1.0-alpha.5
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 +11 -3
- package/generated/command-descriptors.json +558 -22
- package/generated/contract-registry.json +4363 -388
- package/generated/manifest.json +27 -25
- package/generated/mcp-tool-definitions.json +1735 -780
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,10 +5,12 @@ Standalone alpha TypeScript/Node SDK for Pandora's MCP tool interface and genera
|
|
|
5
5
|
## Status and delivery
|
|
6
6
|
- primary package identity: `@thisispandora/agent-sdk`
|
|
7
7
|
- generated artifacts ship package-locally under `@thisispandora/agent-sdk/generated`
|
|
8
|
-
- current external distribution
|
|
8
|
+
- current external distribution paths:
|
|
9
|
+
- public npm package: `npm install @thisispandora/agent-sdk@alpha`
|
|
10
|
+
- signed GitHub release asset tarball for the tagged Pandora release
|
|
9
11
|
- repository checkout path: `sdk/typescript` is for maintainers and in-tree development only
|
|
10
12
|
- the Pandora CLI package also vendors a matching copy under `sdk/typescript` and `pandora-cli-skills/sdk/typescript` for parity and in-tree consumers
|
|
11
|
-
- public npm publication is
|
|
13
|
+
- public npm publication is live; the newest prerelease is published under the `alpha` dist-tag
|
|
12
14
|
|
|
13
15
|
## What it exposes
|
|
14
16
|
- local stdio MCP execution via `pandora mcp`
|
|
@@ -24,6 +26,12 @@ Current validated install paths:
|
|
|
24
26
|
|
|
25
27
|
Preferred for external consumers:
|
|
26
28
|
|
|
29
|
+
```bash
|
|
30
|
+
npm install @thisispandora/agent-sdk@alpha
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Or install from a signed GitHub release tarball:
|
|
34
|
+
|
|
27
35
|
```bash
|
|
28
36
|
npm install /path/to/downloaded/thisispandora-agent-sdk-<version>.tgz
|
|
29
37
|
```
|
|
@@ -40,7 +48,7 @@ Or build a local tarball from source:
|
|
|
40
48
|
npm pack ./sdk/typescript
|
|
41
49
|
```
|
|
42
50
|
|
|
43
|
-
Use the signed GitHub release tarball when
|
|
51
|
+
Use the public npm package for the normal external install path. Use the signed GitHub release tarball when you need an explicitly pinned audited artifact. Use the repo path only when you intentionally want an in-tree checkout.
|
|
44
52
|
|
|
45
53
|
Node `>=18` is required.
|
|
46
54
|
|