@pithosai/pithosai 1.0.0 → 1.0.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/README.md +82 -382
- package/dist/935.cjs +2 -2
- package/dist/cosai.cjs +73 -73
- package/dist/heartbeat.cjs +73 -73
- package/dist/init-pithosai-db.cjs +2 -0
- package/dist/mktai.cjs +73 -73
- package/dist/pithosai.cjs +73 -73
- package/dist/pmsai.cjs +73 -73
- package/dist/qasai.cjs +73 -73
- package/dist/rdsai.cjs +73 -73
- package/dist/render-markdown.cjs +11 -11
- package/dist/wrsai.cjs +73 -73
- package/package.json +28 -23
- package/pithosai.sql +177 -0
- package/scripts/npm-global-install.cjs +12 -0
- package/scripts/postinstall-init-db.cjs +21 -0
- package/shims/chalk-cjs-shim.cjs +45 -0
- package/shims/package-root.cjs +9 -0
package/package.json
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pithosai/pithosai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Pithos AI CLI — multi-role coding and product agents (bundled distribution).",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai",
|
|
7
|
+
"pithosai",
|
|
8
|
+
"agent",
|
|
9
|
+
"automation"
|
|
10
|
+
],
|
|
11
|
+
"author": "lidh04@gmail.com",
|
|
12
|
+
"license": "ISC",
|
|
13
|
+
"type": "module",
|
|
5
14
|
"main": "./dist/pithosai.cjs",
|
|
6
15
|
"bin": {
|
|
7
16
|
"pithosai": "./dist/pithosai.cjs",
|
|
@@ -12,36 +21,26 @@
|
|
|
12
21
|
"mktai": "./dist/mktai.cjs",
|
|
13
22
|
"email-monitor": "./dist/heartbeat.cjs",
|
|
14
23
|
"wrsai": "./dist/wrsai.cjs",
|
|
15
|
-
"render-markdown": "./dist/render-markdown.cjs"
|
|
24
|
+
"render-markdown": "./dist/render-markdown.cjs",
|
|
25
|
+
"pithosai-init-db": "./dist/init-pithosai-db.cjs"
|
|
16
26
|
},
|
|
17
27
|
"files": [
|
|
18
28
|
"dist",
|
|
19
|
-
"patches"
|
|
29
|
+
"patches",
|
|
30
|
+
"shims",
|
|
31
|
+
"pithosai.sql",
|
|
32
|
+
"scripts/npm-global-install.cjs",
|
|
33
|
+
"scripts/postinstall-init-db.cjs"
|
|
20
34
|
],
|
|
21
|
-
"engines": {
|
|
22
|
-
"node": ">=18.12.0"
|
|
23
|
-
},
|
|
24
|
-
"publishConfig": {
|
|
25
|
-
"access": "public"
|
|
26
|
-
},
|
|
27
35
|
"scripts": {
|
|
28
|
-
"build": "rm -rf dist && rspack build --config rspack.config.cjs &&
|
|
36
|
+
"build": "rm -rf dist && rspack build --config rspack.config.cjs && npm run finalize-dist",
|
|
37
|
+
"finalize-dist": "node scripts/prefix-bin-shebang.cjs",
|
|
29
38
|
"prepublishOnly": "npm run build",
|
|
30
|
-
"start": "node examples/index.js",
|
|
31
|
-
"reasoner": "node examples/reasoner-example.js",
|
|
32
|
-
"start:agent": "node examples/index-agent.js",
|
|
33
|
-
"reasoner:agent": "node examples/reasoner-agent.js",
|
|
34
|
-
"pithosai": "node pithos-ai.js",
|
|
35
39
|
"test": "vitest run",
|
|
36
40
|
"test:watch": "vitest",
|
|
37
|
-
"
|
|
38
|
-
"postinstall": "patch-package",
|
|
41
|
+
"postinstall": "patch-package && node scripts/postinstall-init-db.cjs",
|
|
39
42
|
"playwright:install": "playwright install chromium"
|
|
40
43
|
},
|
|
41
|
-
"keywords": [],
|
|
42
|
-
"author": "",
|
|
43
|
-
"license": "ISC",
|
|
44
|
-
"type": "module",
|
|
45
44
|
"dependencies": {
|
|
46
45
|
"@clack/prompts": "^1.0.1",
|
|
47
46
|
"@mariozechner/pi-agent-core": "^0.52.5",
|
|
@@ -59,17 +58,23 @@
|
|
|
59
58
|
"mailparser": "^3.7.1",
|
|
60
59
|
"marked": "^17.0.2",
|
|
61
60
|
"nodemailer": "^6.9.16",
|
|
61
|
+
"patch-package": "^8.0.0",
|
|
62
62
|
"pdf-parse": "^1.1.1",
|
|
63
63
|
"playwright": "^1.58.2",
|
|
64
64
|
"proper-lockfile": "^4.1.2",
|
|
65
65
|
"readdirp": "^5.0.0",
|
|
66
|
-
"uuid": "^13.0.0"
|
|
67
|
-
"patch-package": "^8.0.0"
|
|
66
|
+
"uuid": "^13.0.0"
|
|
68
67
|
},
|
|
69
68
|
"devDependencies": {
|
|
70
69
|
"@rspack/cli": "^1.7.6",
|
|
71
70
|
"@rspack/core": "^1.7.6",
|
|
72
71
|
"vitest": "^4.0.18",
|
|
73
72
|
"webpack-node-externals": "^3.0.0"
|
|
73
|
+
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=18.12.0"
|
|
76
|
+
},
|
|
77
|
+
"publishConfig": {
|
|
78
|
+
"access": "public"
|
|
74
79
|
}
|
|
75
80
|
}
|