darkprint 0.1.1 → 0.1.2
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/dist/cli.js +2 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -15274,7 +15274,7 @@ var DIGEST = {
|
|
|
15274
15274
|
var HARNESS = {
|
|
15275
15275
|
type: "string",
|
|
15276
15276
|
enum: [...HARNESSES],
|
|
15277
|
-
description: "Shapes the instantiation notes only. It filters nothing: the files are the same whichever you name, and `generic` is the default."
|
|
15277
|
+
description: "Shapes the instantiation notes only. It filters nothing, it is never required, and the `run` contract does not vary by it: the files and the contract are the same whichever you name, and `generic` is the default."
|
|
15278
15278
|
};
|
|
15279
15279
|
var LIMIT = {
|
|
15280
15280
|
type: "integer",
|
|
@@ -15316,7 +15316,7 @@ var TOOL_DEFINITIONS = [
|
|
|
15316
15316
|
{
|
|
15317
15317
|
name: "get_blueprint",
|
|
15318
15318
|
title: "Get a whole blueprint",
|
|
15319
|
-
description: "Return one blueprint in a single call: every file of the release (topology.dot, cards/*.yaml, README.md, and ontology/extensions.yaml when the blueprint declares local terms), its manifest, its scorecard, its provenance, and numbered notes for instantiating it under the harness you name. Without `digest` you get the current release; with one you get exactly those bytes, and they keep answering after a newer release is cut. Call this once `find_blueprints` has found the blueprint you want. With an API key sent as a bearer token, your own private blueprints are reachable here too.",
|
|
15319
|
+
description: "Return one blueprint in a single call: every file of the release (topology.dot, cards/*.yaml, README.md, and ontology/extensions.yaml when the blueprint declares local terms), its manifest, its scorecard, its provenance, and numbered notes for instantiating it under the harness you name. Without `digest` you get the current release; with one you get exactly those bytes, and they keep answering after a newer release is cut. The answer also carries `run`: the contract for executing the graph, which every caller gets whether or not they name a harness, because a card's ports, prohibitions and retry bound mean the same thing whoever runs them. Show the graph and the scorecard to your user and get their agreement before running any of it. Call this once `find_blueprints` has found the blueprint you want. With an API key sent as a bearer token, your own private blueprints are reachable here too.",
|
|
15320
15320
|
inputSchema: {
|
|
15321
15321
|
type: "object",
|
|
15322
15322
|
properties: { owner: OWNER, slug: SLUG, digest: DIGEST, harness: HARNESS },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "darkprint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The DarkPrint registry from your terminal and from an agent session: clone, validate, export and import blueprints, report runs, serve the registry over MCP on stdio, and carry the blueprint-writing skill.",
|
|
6
6
|
"license": "MIT",
|