@aemi-cli/aemi 0.0.14 → 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/README.md +6 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# AEMI
|
|
2
2
|
|
|
3
|
+
[한국어](README_KO.md)
|
|
4
|
+
|
|
3
5
|
Agent Mirror - AI agent routing tool with Telegram and Discord bot integration.
|
|
4
6
|
|
|
5
7
|
A CLI tool that relays AI agent responses through Telegram/Discord bots.
|
|
@@ -90,6 +92,10 @@ Each agent requires its own CLI tool to be installed:
|
|
|
90
92
|
- **Codex**: `npm install -g @openai/codex`
|
|
91
93
|
- **OpenCode**: `npm install -g opencode` (or see [opencode.ai](https://opencode.ai/docs/) for other methods)
|
|
92
94
|
|
|
95
|
+
## Slash Commands
|
|
96
|
+
|
|
97
|
+
See [docs/slash_commands.md](docs/slash_commands.md) for the full list of bot commands.
|
|
98
|
+
|
|
93
99
|
## Supported Platforms
|
|
94
100
|
|
|
95
101
|
- macOS (Apple Silicon & Intel)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aemi-cli/aemi",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "LLM CLI routing tool with Telegram and Discord bot integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"aemi": "bin/aemi"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@aemi-cli/linux-x64": "0.0
|
|
27
|
-
"@aemi-cli/linux-arm64": "0.0
|
|
28
|
-
"@aemi-cli/darwin-x64": "0.0
|
|
29
|
-
"@aemi-cli/darwin-arm64": "0.0
|
|
26
|
+
"@aemi-cli/linux-x64": "0.1.0",
|
|
27
|
+
"@aemi-cli/linux-arm64": "0.1.0",
|
|
28
|
+
"@aemi-cli/darwin-x64": "0.1.0",
|
|
29
|
+
"@aemi-cli/darwin-arm64": "0.1.0"
|
|
30
30
|
}
|
|
31
31
|
}
|