offwatch 0.4.1 → 0.5.2
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/bin/offwatch.js +6 -0
- package/package.json +40 -63
- package/postinstall.js +19 -0
- package/dist/index.js +0 -18191
- package/dist/index.js.map +0 -7
package/bin/offwatch.js
ADDED
package/package.json
CHANGED
|
@@ -1,63 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "offwatch",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Offwatch — orchestrate AI agent teams to automate dev work",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"offwatch": "
|
|
8
|
-
},
|
|
9
|
-
"keywords": [
|
|
10
|
-
"offwatch",
|
|
11
|
-
"ai",
|
|
12
|
-
"agents",
|
|
13
|
-
"orchestration",
|
|
14
|
-
"cli"
|
|
15
|
-
],
|
|
16
|
-
"license": "MIT",
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/triss-smith/offwatch.git",
|
|
20
|
-
"directory": "cli"
|
|
21
|
-
},
|
|
22
|
-
"homepage": "https://github.com/triss-smith/offwatch",
|
|
23
|
-
"bugs": {
|
|
24
|
-
"url": "https://github.com/triss-smith/offwatch/issues"
|
|
25
|
-
},
|
|
26
|
-
"files": [
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"@paperclipai/adapter-claude-local": "workspace:*",
|
|
42
|
-
"@paperclipai/adapter-codex-local": "workspace:*",
|
|
43
|
-
"@paperclipai/adapter-cursor-local": "workspace:*",
|
|
44
|
-
"@paperclipai/adapter-gemini-local": "workspace:*",
|
|
45
|
-
"@paperclipai/adapter-opencode-local": "workspace:*",
|
|
46
|
-
"@paperclipai/adapter-pi-local": "workspace:*",
|
|
47
|
-
"@paperclipai/adapter-openclaw-gateway": "workspace:*",
|
|
48
|
-
"@paperclipai/adapter-utils": "workspace:*",
|
|
49
|
-
"@paperclipai/db": "workspace:*",
|
|
50
|
-
"@paperclipai/server": "workspace:*",
|
|
51
|
-
"@paperclipai/shared": "workspace:*",
|
|
52
|
-
"drizzle-orm": "0.38.4",
|
|
53
|
-
"dotenv": "^17.0.1",
|
|
54
|
-
"commander": "^13.1.0",
|
|
55
|
-
"embedded-postgres": "^18.1.0-beta.16",
|
|
56
|
-
"picocolors": "^1.1.1"
|
|
57
|
-
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"@types/node": "^22.12.0",
|
|
60
|
-
"tsx": "^4.19.2",
|
|
61
|
-
"typescript": "^5.7.3"
|
|
62
|
-
}
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "offwatch",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "Offwatch — orchestrate AI agent teams to automate dev work",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"offwatch": "bin/offwatch.js"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"offwatch",
|
|
11
|
+
"ai",
|
|
12
|
+
"agents",
|
|
13
|
+
"orchestration",
|
|
14
|
+
"cli"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/triss-smith/offwatch.git",
|
|
20
|
+
"directory": "cli"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/triss-smith/offwatch",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/triss-smith/offwatch/issues"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"bin",
|
|
28
|
+
"lib",
|
|
29
|
+
"postinstall.js"
|
|
30
|
+
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"postinstall": "node postinstall.js"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"offwatch-releases": "0.5.1"
|
|
39
|
+
}
|
|
40
|
+
}
|
package/postinstall.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { loadCLIBinPath } from "offwatch-releases";
|
|
2
|
+
|
|
3
|
+
// Dumb check to see if dep. Want to skip this script if in workspace
|
|
4
|
+
if (process.cwd().includes("node_modules")) {
|
|
5
|
+
if (process.env.DEBUG) {
|
|
6
|
+
console.debug(`[DEBUG] download CLI release`);
|
|
7
|
+
}
|
|
8
|
+
loadCLIBinPath(__dirname).then(
|
|
9
|
+
() => {
|
|
10
|
+
process.exit(0);
|
|
11
|
+
},
|
|
12
|
+
(err) => {
|
|
13
|
+
console.error(err);
|
|
14
|
+
process.exit(1);
|
|
15
|
+
}
|
|
16
|
+
);
|
|
17
|
+
} else if (process.env.DEBUG) {
|
|
18
|
+
console.debug(`[DEBUG] skipping debug`);
|
|
19
|
+
}
|