@aether-agent/cli 0.1.7 → 0.1.9

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/CHANGELOG.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [aether-agent-cli-v0.1.7] - 2026-04-13
5
+ ## [aether-agent-cli-v0.1.9] - 2026-04-15
package/README.md CHANGED
@@ -102,18 +102,23 @@ The `mcp.json` file configures MCP tool servers:
102
102
  {
103
103
  "servers": {
104
104
  "coding": {
105
- "type": "in-memory"
105
+ "type": "in-memory",
106
+ "args": ["--rules-dir", ".aether/skills", "--rules-dir", ".claude/rules"]
106
107
  },
107
108
  "skills": {
108
109
  "type": "in-memory",
109
- "args": ["--dir", "$HOME/.aether"]
110
+ "args": [
111
+ "--dir", ".aether/skills",
112
+ "--dir", ".claude/skills",
113
+ "--notes-dir", ".aether/notes"
114
+ ]
110
115
  }
111
116
  }
112
117
  }
113
118
  ```
114
119
 
115
- - **coding** — Filesystem tools (read, write, bash, etc.)
116
- - **skills** — Slash commands and reusable skill prompts from `~/.aether/`
120
+ - **coding** — Filesystem tools (read, write, bash, etc.) + optional automatic read rules from configured `--rules-dir` paths
121
+ - **skills** — Slash commands and reusable prompts from configured prompt directories
117
122
 
118
123
  ## Slash Commands
119
124
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "@aether-agent/cli",
26
- "version": "0.1.7"
26
+ "version": "0.1.9"
27
27
  },
28
28
  "node_modules/@isaacs/cliui": {
29
29
  "engines": {
@@ -542,5 +542,5 @@
542
542
  }
543
543
  },
544
544
  "requires": true,
545
- "version": "0.1.7"
545
+ "version": "0.1.9"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/jcarver989/aether/releases/download/aether-agent-cli-v0.1.7"
3
+ "https://github.com/jcarver989/aether/releases/download/aether-agent-cli-v0.1.9"
4
4
  ],
5
5
  "bin": {
6
6
  "aether": "run-aether.js"
@@ -66,7 +66,7 @@
66
66
  "zipExt": ".tar.xz"
67
67
  }
68
68
  },
69
- "version": "0.1.7",
69
+ "version": "0.1.9",
70
70
  "volta": {
71
71
  "node": "18.14.1",
72
72
  "npm": "9.5.0"