darkprint 0.1.0
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 +25 -0
- package/dist/cli.js +15656 -0
- package/package.json +21 -0
- package/skill/darkprint/SKILL.md +688 -0
- package/skill/darkprint/references/card-schema.md +544 -0
- package/skill/darkprint/references/dot-and-attractor.md +300 -0
- package/skill/darkprint/references/live-preview.md +95 -0
- package/skill/darkprint/references/ontology.md +242 -0
- package/skill/darkprint/references/preflight.md +206 -0
- package/skill/darkprint/references/writing-cards.md +178 -0
- package/skill/darkprint/templates/card.yaml +84 -0
- package/skill/darkprint/templates/shell-tool-card.yaml +52 -0
- package/skill/darkprint/templates/topology.dot +66 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# darkprint
|
|
2
|
+
|
|
3
|
+
The [DarkPrint](https://www.darkprint.io) registry from your terminal and from an agent
|
|
4
|
+
session. One package, three things:
|
|
5
|
+
|
|
6
|
+
- the `darkprint` command: `clone`, `validate`, `export`, `import`, `bump`, `report`;
|
|
7
|
+
- the DarkPrint blueprint-writing skill, which `darkprint skill install` copies into
|
|
8
|
+
`~/.claude/skills/darkprint` (Claude Code) or, with `--codex`, `~/.agents/skills/darkprint`;
|
|
9
|
+
- the registry over MCP on stdio, as `darkprint mcp`, for a client that cannot reach the
|
|
10
|
+
remote server at `https://www.darkprint.io/api/mcp`.
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npx -y darkprint skill install # Claude Code
|
|
14
|
+
npx -y darkprint skill install --codex # Codex
|
|
15
|
+
npx -y darkprint clone darkprint/starter-software-factory --out starter
|
|
16
|
+
npx -y darkprint clone spec-planner@1.0.0 # one card, as cards/spec-planner@1.0.0.yaml
|
|
17
|
+
npx -y darkprint validate ./starter
|
|
18
|
+
npx -y darkprint --help
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
`npx -y` fetches the package from npm on the first run and keeps it in its cache. Nothing
|
|
22
|
+
here runs a blueprint. Environment: `DARKPRINT_URL` (registry base, default
|
|
23
|
+
`https://www.darkprint.io`), `DARKPRINT_API_KEY` (raises the read ceiling),
|
|
24
|
+
`DARKPRINT_SESSION` (the session cookie `report` sends). Every operation, with its status,
|
|
25
|
+
is listed at [darkprint.io/capabilities](https://www.darkprint.io/capabilities).
|