@dcdr/contracts 1.9.6 → 1.9.7
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 +10 -3
- package/package.json +22 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> ⚙️ Intent-based AI runtime + control plane for production systems
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@dcdr/contracts)
|
|
6
6
|
[](LICENSE)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
|
|
@@ -150,7 +150,13 @@ Docker image:
|
|
|
150
150
|
Copy the example file and edit it:
|
|
151
151
|
|
|
152
152
|
```bash
|
|
153
|
-
cp ./
|
|
153
|
+
cp ./examples/registry.hello_world.json ./registry.json
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
Or start from the minimal sample registry at the repo root:
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
cp ./sample_registry.json ./registry.json
|
|
154
160
|
```
|
|
155
161
|
|
|
156
162
|
Then replace:
|
|
@@ -394,6 +400,7 @@ See full feature matrix: [docs/TIERS_FEATURE_MATRIX.md](docs/TIERS_FEATURE_MATRI
|
|
|
394
400
|
- [docs/CONTRACTS.md](docs/CONTRACTS.md) — How Registries, Intents, implementations, policies, and capabilities fit together.
|
|
395
401
|
- [docs/PLATFORM_OVERVIEW.md](docs/PLATFORM_OVERVIEW.md) — Runtime (self-hosted) vs Cloud vs Cloud Pro (what runs where, who owns what).
|
|
396
402
|
- [docs/TIERS_FEATURE_MATRIX.md](docs/TIERS_FEATURE_MATRIX.md) — One-page feature/tier reference.
|
|
403
|
+
- [docs/SUPPORTED_MODELS.md](docs/SUPPORTED_MODELS.md) — Provider model IDs currently marked as runtime-supported.
|
|
397
404
|
|
|
398
405
|
### Development
|
|
399
406
|
|
|
@@ -408,4 +415,4 @@ See full feature matrix: [docs/TIERS_FEATURE_MATRIX.md](docs/TIERS_FEATURE_MATRI
|
|
|
408
415
|
- [docs/OPENAPI_SDKS.md](docs/OPENAPI_SDKS.md) — Generate Python/C#/Java SDKs from `openapi.runtime.json`.
|
|
409
416
|
- [docs/PROMETHEUS_METRICS.md](docs/PROMETHEUS_METRICS.md) — Metrics endpoint + the Prometheus gauges/counters we expose.
|
|
410
417
|
- [docs/EXAMPLES.md](docs/EXAMPLES.md) — End-to-end examples and small recipes.
|
|
411
|
-
- [CHANGELOG.md](CHANGELOG.md) — Release notes (synced from the runtime repo changelog; entries start with
|
|
418
|
+
- [CHANGELOG.md](CHANGELOG.md) — Release notes (synced from the runtime repo changelog; entries start with `RUNTIME` / `CONTRACTS`).
|
package/package.json
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dcdr/contracts",
|
|
3
|
-
"version": "1.9.
|
|
4
|
-
"
|
|
3
|
+
"version": "1.9.7",
|
|
4
|
+
"homepage": "https://dcdr.ai",
|
|
5
|
+
"description": "TypeScript contracts and runtime client for DCDR intent-based AI execution",
|
|
5
6
|
"private": false,
|
|
6
7
|
"license": "Apache-2.0",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/dcdr-ai/contracts.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/dcdr-ai/contracts/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"dcdr",
|
|
17
|
+
"ai",
|
|
18
|
+
"llm",
|
|
19
|
+
"runtime",
|
|
20
|
+
"intent",
|
|
21
|
+
"typescript",
|
|
22
|
+
"contracts",
|
|
23
|
+
"registry",
|
|
24
|
+
"prompt-management",
|
|
25
|
+
"model-routing"
|
|
26
|
+
],
|
|
7
27
|
"main": "dist/index.js",
|
|
8
28
|
"types": "dist/index.d.ts",
|
|
9
29
|
"files": [
|