@aitne-sh/aitne 0.1.1 → 0.1.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 +1010 -277
- package/package.json +39 -22
- package/scripts/check-redaction-coverage.mjs +0 -0
- package/scripts/message-discipline-digest.mjs +0 -0
- package/scripts/remint-roadmap-ids.mjs +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aitne-sh/aitne",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Aitne — a local-first, proactive personal AI agent. A long-running TypeScript daemon is the nervous system; Claude Code (or Codex / Gemini CLI) is the brain. All persistent memory lives in local Markdown files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -37,10 +37,28 @@
|
|
|
37
37
|
"LICENSE",
|
|
38
38
|
"README.md"
|
|
39
39
|
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "turbo run build",
|
|
42
|
+
"start": "node bin/aitne.mjs start",
|
|
43
|
+
"stop": "node bin/aitne.mjs stop",
|
|
44
|
+
"restart": "node bin/aitne.mjs restart",
|
|
45
|
+
"status": "node bin/aitne.mjs status",
|
|
46
|
+
"logs": "node bin/aitne.mjs logs",
|
|
47
|
+
"dev": "node bin/aitne.mjs dev",
|
|
48
|
+
"doctor": "node bin/aitne.mjs doctor",
|
|
49
|
+
"audit": "node bin/aitne.mjs audit",
|
|
50
|
+
"test": "node scripts/check-redaction-coverage.mjs && vitest run --coverage",
|
|
51
|
+
"test:watch": "vitest",
|
|
52
|
+
"check:redaction": "node scripts/check-redaction-coverage.mjs",
|
|
53
|
+
"lint": "turbo run lint",
|
|
54
|
+
"typecheck:tests": "turbo run typecheck:tests",
|
|
55
|
+
"clean": "turbo run clean && node scripts/rm-paths.mjs node_modules .buildstamp",
|
|
56
|
+
"prepublishOnly": "pnpm run build"
|
|
57
|
+
},
|
|
40
58
|
"dependencies": {
|
|
41
|
-
"@aitne/daemon": "
|
|
42
|
-
"@aitne/dashboard": "
|
|
43
|
-
"@aitne/shared": "
|
|
59
|
+
"@aitne/daemon": "workspace:*",
|
|
60
|
+
"@aitne/dashboard": "workspace:*",
|
|
61
|
+
"@aitne/shared": "workspace:*"
|
|
44
62
|
},
|
|
45
63
|
"devDependencies": {
|
|
46
64
|
"@typescript-eslint/eslint-plugin": "^8.58.1",
|
|
@@ -52,27 +70,26 @@
|
|
|
52
70
|
"typescript-eslint": "^8.58.1",
|
|
53
71
|
"vitest": "^3.2.0"
|
|
54
72
|
},
|
|
73
|
+
"packageManager": "pnpm@10.12.1",
|
|
74
|
+
"pnpm": {
|
|
75
|
+
"onlyBuiltDependencies": [
|
|
76
|
+
"esbuild",
|
|
77
|
+
"better-sqlite3",
|
|
78
|
+
"ffmpeg-static",
|
|
79
|
+
"onnxruntime-node",
|
|
80
|
+
"protobufjs"
|
|
81
|
+
],
|
|
82
|
+
"overrides": {
|
|
83
|
+
"dompurify": ">=3.4.0",
|
|
84
|
+
"vite": "7.3.2",
|
|
85
|
+
"@anthropic-ai/sdk": ">=0.81.0",
|
|
86
|
+
"@whiskeysockets/baileys>protobufjs": ">=7.5.5"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
55
89
|
"publishConfig": {
|
|
56
90
|
"access": "public"
|
|
57
91
|
},
|
|
58
92
|
"engines": {
|
|
59
93
|
"node": ">=22.0.0"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"build": "turbo run build",
|
|
63
|
-
"start": "node bin/aitne.mjs start",
|
|
64
|
-
"stop": "node bin/aitne.mjs stop",
|
|
65
|
-
"restart": "node bin/aitne.mjs restart",
|
|
66
|
-
"status": "node bin/aitne.mjs status",
|
|
67
|
-
"logs": "node bin/aitne.mjs logs",
|
|
68
|
-
"dev": "node bin/aitne.mjs dev",
|
|
69
|
-
"doctor": "node bin/aitne.mjs doctor",
|
|
70
|
-
"audit": "node bin/aitne.mjs audit",
|
|
71
|
-
"test": "node scripts/check-redaction-coverage.mjs && vitest run --coverage",
|
|
72
|
-
"test:watch": "vitest",
|
|
73
|
-
"check:redaction": "node scripts/check-redaction-coverage.mjs",
|
|
74
|
-
"lint": "turbo run lint",
|
|
75
|
-
"typecheck:tests": "turbo run typecheck:tests",
|
|
76
|
-
"clean": "turbo run clean && node scripts/rm-paths.mjs node_modules .buildstamp"
|
|
77
94
|
}
|
|
78
|
-
}
|
|
95
|
+
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|