fabiana 0.2.0 → 0.3.0
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 +15 -0
- package/ascii.txt +10 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -57,6 +57,21 @@ She's built on [Pi SDK](https://github.com/mariozechner/pi) — which means she
|
|
|
57
57
|
|
|
58
58
|
Memory is tiered — hot files load every session, warm files load when relevant, cold files sit in the archive, searchable when needed. She writes and organizes it herself. You can read any of it any time.
|
|
59
59
|
|
|
60
|
+
### Everything lives in `~/.fabiana`
|
|
61
|
+
|
|
62
|
+
Your data, config, and even her system prompt all live in one place:
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
~/.fabiana/
|
|
66
|
+
├── data/memory/ ← everything she remembers about you
|
|
67
|
+
├── config/system.md ← her base personality and instructions
|
|
68
|
+
├── config/system-chat.md ← how she behaves in conversation
|
|
69
|
+
├── config/manifest.json ← what files she's allowed to touch
|
|
70
|
+
└── .env ← your API keys
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
No black boxes. Open `~/.fabiana/config/system.md` to see exactly what she's been told to do — or edit it to change how she thinks, speaks, or behaves. Want her to be more terse? More philosophical? Less likely to roast you at 1am? That's the file.
|
|
74
|
+
|
|
60
75
|
---
|
|
61
76
|
|
|
62
77
|
## Installation
|
package/ascii.txt
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
________ ____ _______ .-./`) ____ ,---. .--. ____
|
|
2
|
+
| | .' __ `. \ ____ \\ .-.') .' __ `. | \ | | .' __ `.
|
|
3
|
+
| .----'/ ' \ \| | \ |/ `-' \/ ' \ \| , \ | |/ ' \ \
|
|
4
|
+
| _|____ |___| / || |____/ / `-'`"`|___| / || |\_ \| ||___| / |
|
|
5
|
+
|_( )_ | _.-` || _ _ '. .---. _.-` || _( )_\ | _.-` |
|
|
6
|
+
(_ o._)__|.' _ || ( ' ) \| | .' _ || (_ o _) |.' _ |
|
|
7
|
+
|(_,_) | _( )_ || (_{;}_) || | | _( )_ || (_,_)\ || _( )_ |
|
|
8
|
+
| | \ (_ o _) /| (_,_) /| | \ (_ o _) /| | | |\ (_ o _) /
|
|
9
|
+
'---' '.(_,_).' /_______.' '---' '.(_,_).' '--' '--' '.(_,_).'
|
|
10
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fabiana",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Personal AI assistant that actually feels personal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"bin/",
|
|
20
|
-
"dist/"
|
|
20
|
+
"dist/",
|
|
21
|
+
"ascii.txt"
|
|
21
22
|
],
|
|
22
23
|
"keywords": [
|
|
23
24
|
"ai",
|