-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.72 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
{
"name": "@torque-loop/plugin",
"version": "1.0.0",
"description": "Torque Loop — a Claude Code and Codex plugin that evolves ambiguity into shipped, tested, serialized artifacts through evidence-gated loops.",
"license": "MIT",
"author": "Danny Gillespie",
"type": "commonjs",
"bin": {
"ratchet": "bin/ratchet",
"ratchet-evolve": "bin/ratchet-evolve",
"ratchet-mcp": "bin/ratchet-mcp"
},
"main": "src/cli.js",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node test/cli.test.js && node test/evolve.test.js && node test/plugin-shape.test.js && node test/concurrency.test.js && node test/mcp-rpc.test.js && node test/mcp-workspace.test.js && node test/mcp-handles.test.js && node test/mcp-repository.test.js && node test/mcp-server.test.js && node test/mcp-write.test.js && node test/mcp-hardening.test.js && node test/mcp-wal.test.js && node test/mcp-ledger.test.js && node test/mcp-prompts.test.js && node test/mcp-toctou.test.js && node test/mcp-entry.test.js",
"test:concurrency": "node test/concurrency.test.js",
"prompts-gen": "node scripts/prompts-gen.js",
"preflight": "node scripts/preflight.js",
"ratchet": "node bin/ratchet",
"ratchet-evolve": "node bin/ratchet-evolve",
"ratchet-mcp": "node bin/ratchet-mcp"
},
"files": [
"bin",
"src",
"skills",
"agents",
"hooks",
"templates",
".claude-plugin",
".codex-plugin",
".agents/plugins/marketplace.json"
],
"keywords": [
"torque-loop",
"claude-code",
"codex",
"plugin",
"workflow",
"quality",
"qa",
"state",
"decision",
"evolution"
],
"repository": {
"type": "git",
"url": "https://github.com/Megaprompting/torque-loop.git"
}
}