darkprint 0.1.0 → 0.1.1
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/package.json +10 -1
- package/skill/darkprint/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ session. One package, three things:
|
|
|
12
12
|
```bash
|
|
13
13
|
npx -y darkprint skill install # Claude Code
|
|
14
14
|
npx -y darkprint skill install --codex # Codex
|
|
15
|
-
npx -y darkprint clone
|
|
15
|
+
npx -y darkprint clone autogen/starter-software-factory --out starter
|
|
16
16
|
npx -y darkprint clone spec-planner@1.0.0 # one card, as cards/spec-planner@1.0.0.yaml
|
|
17
17
|
npx -y darkprint validate ./starter
|
|
18
18
|
npx -y darkprint --help
|
package/package.json
CHANGED
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "darkprint",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/darkprint/darkprint.git",
|
|
10
|
+
"directory": "packages/mcp"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://www.darkprint.io",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/darkprint/darkprint/issues"
|
|
15
|
+
},
|
|
7
16
|
"bin": {
|
|
8
17
|
"darkprint": "dist/cli.js"
|
|
9
18
|
},
|
package/skill/darkprint/SKILL.md
CHANGED
|
@@ -490,7 +490,7 @@ registry is searched first for the same reason.
|
|
|
490
490
|
2. **Search with the addition as the task.** `find_blueprints` with that sentence, or the
|
|
491
491
|
anonymous GET from Phase 1. Show the top hits in the author's words, `ref`, `title` and
|
|
492
492
|
`score`, and recommend one. When a live page is open, send them as `hits`. The tutorial's
|
|
493
|
-
case, observability on a node, is `
|
|
493
|
+
case, observability on a node, is `autogen/pipeline-observability`.
|
|
494
494
|
3. **Fetch the one they chose.** `get_blueprint` with its owner and slug, or
|
|
495
495
|
`GET https://www.darkprint.io/api/mcp/blueprints/<owner>/<slug>/bundle`. The answer lists
|
|
496
496
|
the release's files by path, with the version and the digest that name those bytes.
|