@aitne-sh/aitne 0.1.1 → 0.1.3

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.
Files changed (3) hide show
  1. package/README.md +1010 -277
  2. package/bin/aitne.mjs +1 -1
  3. package/package.json +4 -4
package/bin/aitne.mjs CHANGED
@@ -734,7 +734,7 @@ async function cmdStatus() {
734
734
 
735
735
  if (!daemonPid && !dashPid) {
736
736
  console.log("Not running.");
737
- process.exit(1);
737
+ return;
738
738
  }
739
739
 
740
740
  const health = daemonPid ? await fetchHealth() : null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aitne-sh/aitne",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
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",
@@ -38,9 +38,9 @@
38
38
  "README.md"
39
39
  ],
40
40
  "dependencies": {
41
- "@aitne/daemon": "0.1.1",
42
- "@aitne/dashboard": "0.1.0",
43
- "@aitne/shared": "0.1.0"
41
+ "@aitne/daemon": "0.1.3",
42
+ "@aitne/dashboard": "0.1.3",
43
+ "@aitne/shared": "0.1.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@typescript-eslint/eslint-plugin": "^8.58.1",