-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 5.15 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 5.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "manuscript-lab",
"version": "1.5.3",
"private": false,
"description": "File-based writing harness with runtime context packets, checks, typed reviews, issue-ledger revisions, model routing, and exports.",
"license": "MIT",
"author": "Mat Tom Son",
"type": "module",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mat-Tom-Son/manuscript-lab.git"
},
"bugs": {
"url": "https://github.com/Mat-Tom-Son/manuscript-lab/issues"
},
"homepage": "https://github.com/Mat-Tom-Son/manuscript-lab#readme",
"files": [
"AGENTS.md",
"README.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"SECURITY.md",
"LICENSE",
"bin/",
"checks/",
"docs/",
"evals/",
"examples/",
"!examples/**/.doccheck/",
"!examples/**/.doccheck/**",
"!examples/**/reports/",
"!examples/**/reports/**",
"reviews/",
"scripts/",
"skills/",
"templates/",
".pi/",
".env.example"
],
"bin": {
"manuscript-lab": "bin/manuscript-lab.mjs",
"mlab": "bin/manuscript-lab.mjs"
},
"scripts": {
"check": "node scripts/doccheck.mjs",
"check:list": "node scripts/doccheck.mjs --list-model-checks",
"check:model": "node scripts/doccheck.mjs --model-checks",
"check:static": "node scripts/doccheck.mjs --static-only",
"artifacts": "node scripts/artifact-inspector.mjs",
"chorus": "node scripts/chorus-runner.mjs",
"citations": "node scripts/evidence-spine.mjs citations",
"claims": "node scripts/evidence-spine.mjs claims",
"compose": "node scripts/compose-context.mjs",
"context:audit": "node scripts/context-audit.mjs",
"codex:install-skill": "node scripts/install-codex-skill.mjs",
"codex:validate-skill": "node scripts/validate-codex-skill.mjs",
"doccheck": "node scripts/doccheck.mjs",
"doctor": "node scripts/doctor.mjs",
"drive": "node scripts/model-driver.mjs",
"done": "node scripts/done-gate.mjs",
"done:json": "node scripts/done-gate.mjs --json",
"done:no-export": "node scripts/done-gate.mjs --skip-exports",
"diff:audit": "node scripts/revision-diff-audit.mjs",
"evidence": "node scripts/evidence-spine.mjs evidence",
"eval": "node scripts/eval-runner.mjs",
"export": "node scripts/export-manuscript.mjs",
"gate": "node scripts/gate.mjs",
"golden-path": "node scripts/golden-path.mjs",
"model:smoke": "node scripts/model-smoke.mjs",
"model:capabilities": "node scripts/model-capabilities.mjs",
"model:json-test": "node scripts/model-json.test.mjs",
"model:response-test": "node scripts/model-provider-response.test.mjs",
"practice": "node scripts/practice-runner.mjs",
"project:list": "node scripts/story-workspace.mjs list-projects",
"project:log": "node scripts/story-workspace.mjs log-project",
"project:init": "node scripts/story-workspace.mjs init",
"project:mount": "node scripts/story-workspace.mjs mount-project",
"project:restore": "node scripts/story-workspace.mjs restore",
"project:sync": "node scripts/story-workspace.mjs sync-project",
"project:test": "node scripts/project-mount.test.mjs",
"project:verify": "node scripts/story-workspace.mjs verify-projects",
"report": "node scripts/report.mjs",
"story": "node scripts/story-workspace.mjs",
"story:archive": "node scripts/story-workspace.mjs archive",
"story:unload": "node scripts/story-workspace.mjs unload",
"story:init": "node scripts/story-workspace.mjs init",
"story:restore": "node scripts/story-workspace.mjs restore",
"story:clear-generated": "node scripts/story-workspace.mjs clear-generated",
"story:verify": "node scripts/story-workspace.mjs verify",
"story:list-archives": "node scripts/story-workspace.mjs list-archives",
"sources": "node scripts/evidence-spine.mjs sources",
"status": "node scripts/harness-status.mjs",
"template:audit": "node scripts/template-audit.mjs",
"test": "node scripts/run-tests.mjs",
"validate": "node scripts/protocol-validate.mjs",
"issues": "node scripts/issue-ledger.mjs",
"plan:revision": "node scripts/revision-plan.mjs",
"snapshot:revision": "node scripts/revision-snapshot.mjs",
"revise:candidates": "node scripts/revision-candidates.mjs",
"compare:candidates": "node scripts/compare-candidates.mjs",
"merge:winner": "node scripts/merge-winner.mjs",
"model:calls": "node scripts/model-call-report.mjs",
"review:model": "node scripts/model-review.mjs",
"review:report": "node scripts/review-report.mjs",
"review:run": "node scripts/review-runner.mjs",
"room": "node scripts/room-runner.mjs",
"style:fingerprint": "node scripts/style-calibration.mjs fingerprint",
"style:signals": "node scripts/style-calibration.mjs signals",
"style:test": "node scripts/style-calibration.test.mjs",
"taste:arbiter": "node scripts/taste-arbiter.mjs",
"taste:test": "node scripts/taste-arbiter.test.mjs",
"words": "node scripts/word-usage.mjs",
"words:test": "node scripts/word-usage.test.mjs"
},
"keywords": [
"writing",
"writing-agent",
"document-repo",
"longform",
"manuscript",
"evaluation-lab"
]
}