-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"name": "@torque-loop/plugin",
"version": "0.7.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"
},
"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",
"ratchet": "node bin/ratchet",
"ratchet-evolve": "node bin/ratchet-evolve"
},
"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/TheLucidTech/torque-loop.git"
}
}