aela-ai 1.0.0 → 1.0.1
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 +10 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -19,19 +19,26 @@ Whether you need to analyze a Git repository, refactor an entire directory, or s
|
|
|
19
19
|
|
|
20
20
|
## 🚀 Installation
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
Install Aela globally using npm:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm install -g
|
|
25
|
+
npm install -g aela-ai
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
Or run directly without installing:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx aela-ai <your prompt>
|
|
32
|
+
```
|
|
29
33
|
|
|
30
34
|
## 💻 Usage
|
|
31
35
|
|
|
32
36
|
Simply type `aela` followed by your prompt for one-shot execution, or type `aela repl` to drop into a continuous chat session with persistent memory. No flags necessary.
|
|
33
37
|
|
|
34
38
|
```bash
|
|
39
|
+
# One-shot command
|
|
40
|
+
aela your prompt here
|
|
41
|
+
|
|
35
42
|
# Start an interactive REPL session
|
|
36
43
|
aela repl
|
|
37
44
|
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aela-ai",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "An agentic, terminal-based AI assistant with file access, web search, and persistent REPL mode.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/ABHIGYAN-MOHANTA/aela.git"
|
|
9
|
+
"url": "git+https://github.com/ABHIGYAN-MOHANTA/aela.git"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"cli",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
25
|
"bin": {
|
|
26
|
-
"aela": "
|
|
26
|
+
"aela": "dist/main.js"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"dev": "bun run app/main.ts",
|
|
@@ -38,4 +38,4 @@
|
|
|
38
38
|
"@types/node": "latest",
|
|
39
39
|
"typescript": "latest"
|
|
40
40
|
}
|
|
41
|
-
}
|
|
41
|
+
}
|