@thesashadev/girl-agent 0.1.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/LICENSE +31 -0
- package/README.md +170 -0
- package/dist/cli.js +5242 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thesashadev/girl-agent",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Telegram AI persona engine with memory, schedule, relationship state and MTProto userbot mode.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"girl-agent": "dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "dist/cli.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"templates",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"dev": "tsx src/cli.tsx",
|
|
19
|
+
"start": "node dist/cli.js",
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"prepublishOnly": "npm run typecheck && npm run build"
|
|
22
|
+
},
|
|
23
|
+
"author": "TheSashaDev (void)",
|
|
24
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"telegram",
|
|
27
|
+
"ai",
|
|
28
|
+
"agent",
|
|
29
|
+
"tui",
|
|
30
|
+
"ink",
|
|
31
|
+
"mcp",
|
|
32
|
+
"userbot",
|
|
33
|
+
"llm",
|
|
34
|
+
"persona",
|
|
35
|
+
"anthropic",
|
|
36
|
+
"openai"
|
|
37
|
+
],
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=20"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@anthropic-ai/sdk": "^0.32.1",
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
44
|
+
"grammy": "^1.30.0",
|
|
45
|
+
"ink": "^5.0.1",
|
|
46
|
+
"ink-big-text": "^2.0.0",
|
|
47
|
+
"ink-gradient": "^3.0.0",
|
|
48
|
+
"ink-select-input": "^6.0.0",
|
|
49
|
+
"ink-spinner": "^5.0.0",
|
|
50
|
+
"ink-text-input": "^6.0.0",
|
|
51
|
+
"input": "^1.0.1",
|
|
52
|
+
"mri": "^1.2.0",
|
|
53
|
+
"openai": "^4.77.0",
|
|
54
|
+
"react": "^18.3.1",
|
|
55
|
+
"telegram": "^2.26.16"
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/node": "^22.10.2",
|
|
59
|
+
"@types/react": "^18.3.18",
|
|
60
|
+
"tsup": "^8.3.5",
|
|
61
|
+
"tsx": "^4.19.2",
|
|
62
|
+
"typescript": "^5.7.2"
|
|
63
|
+
}
|
|
64
|
+
}
|