tod-ai 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/LICENSE +21 -0
- package/README.md +64 -0
- package/dist/cli.js +20009 -0
- package/package.json +51 -0
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tod-ai",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "An operator harness that turns any AGENTS.md-compatible coding agent into a software factory for non-technical builders.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"tod": "./dist/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/tylerhogarth/tod.git"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/tylerhogarth/tod#readme",
|
|
18
|
+
"bugs": "https://github.com/tylerhogarth/tod/issues",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"agents",
|
|
21
|
+
"agents-md",
|
|
22
|
+
"claude-code",
|
|
23
|
+
"codex",
|
|
24
|
+
"coding-agents",
|
|
25
|
+
"operator",
|
|
26
|
+
"harness"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"sandbox": "TOD_HOME=output bun src/cli.ts",
|
|
30
|
+
"typecheck": "tsc --noEmit",
|
|
31
|
+
"lint": "biome check .",
|
|
32
|
+
"lint:fix": "biome check --write .",
|
|
33
|
+
"test": "bun test",
|
|
34
|
+
"build": "bun run scripts/build.ts",
|
|
35
|
+
"check": "bun run typecheck && bun run lint && bun test",
|
|
36
|
+
"prepublishOnly": "bun run check && bun run build"
|
|
37
|
+
},
|
|
38
|
+
"engines": {
|
|
39
|
+
"bun": ">=1.3.0",
|
|
40
|
+
"node": ">=20"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"better-result": "3.0.1",
|
|
44
|
+
"zod": "4.5.4"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@biomejs/biome": "2.5.11",
|
|
48
|
+
"@types/bun": "1.4.0",
|
|
49
|
+
"typescript": "7.0.2"
|
|
50
|
+
}
|
|
51
|
+
}
|