@iicp/client 0.7.98 → 0.7.99
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 +6 -4
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/RobLe3/iicp-client-typescript/actions/workflows/ci.yml)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-
[](https://github.com/RobLe3/IICP)
|
|
6
6
|
[](https://www.npmjs.com/package/@iicp/client)
|
|
7
7
|
|
|
8
8
|
Use the open AI mesh from your TypeScript or JavaScript app. Install the
|
|
@@ -39,7 +39,7 @@ What good looks like:
|
|
|
39
39
|
```bash
|
|
40
40
|
iicp-node --help # shows query, serve, proxy, mcp-gateway, credits, ...
|
|
41
41
|
which iicp-node # points to your Node/npm environment
|
|
42
|
-
iicp-node --version # prints iicp-node 0.7.
|
|
42
|
+
iicp-node --version # prints iicp-node 0.7.99 or newer
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
The query command contacts the public directory, discovers a matching live node,
|
|
@@ -148,7 +148,7 @@ base URL. Full guide: <https://iicp.network/docs/proxy>
|
|
|
148
148
|
|
|
149
149
|
## Keep provider nodes current
|
|
150
150
|
|
|
151
|
-
The current public release line is **0.7.
|
|
151
|
+
The current public release line is **0.7.99**. Upgrade through your package
|
|
152
152
|
manager before troubleshooting an older installation. Routing profiles can
|
|
153
153
|
refuse remote dispatch before a prompt leaves the client; use `sensitive` for
|
|
154
154
|
local-only work, `eu-restricted` for EU/EEA routing, or `strict-policy` when a
|
|
@@ -615,7 +615,9 @@ npm run build # emit to dist/
|
|
|
615
615
|
|
|
616
616
|
## Links
|
|
617
617
|
|
|
618
|
-
- [Protocol
|
|
618
|
+
- [Protocol specification](https://github.com/RobLe3/IICP) — normative IICP documents
|
|
619
|
+
- [Agent bootstrap guide](https://github.com/RobLe3/IICP/blob/main/docs/agent-bootstrap.md) — connect a consumer or provider agent
|
|
620
|
+
- [Implementation registry](https://github.com/RobLe3/IICP/blob/main/IMPLEMENTATIONS.md) — supported and preview components
|
|
619
621
|
- [Node setup guide](https://iicp.network/docs/node-setup) — run your own node
|
|
620
622
|
- [Error reference](https://iicp.network/docs/error-reference) — all error codes
|
|
621
623
|
- [iicp-client-python](https://github.com/RobLe3/iicp-client-python) — Python SDK
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iicp/client",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.99",
|
|
4
4
|
"description": "Use the open IICP AI mesh from TypeScript or JavaScript without running a node",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
21
|
"build": "tsc --project tsconfig.json",
|
|
22
|
-
"test": "tsx --test tests/*.test.ts",
|
|
22
|
+
"test": "npm run repository-hygiene && tsx --test tests/*.test.ts",
|
|
23
|
+
"repository-hygiene": "node scripts/check-repository-hygiene.mjs",
|
|
23
24
|
"typecheck": "tsc --noEmit"
|
|
24
25
|
},
|
|
25
26
|
"keywords": [
|