simulai-cli 0.1.1__tar.gz → 2.0.1__tar.gz
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.
- simulai_cli-2.0.1/PKG-INFO +88 -0
- simulai_cli-2.0.1/README.md +62 -0
- {simulai_cli-0.1.1 → simulai_cli-2.0.1}/pyproject.toml +47 -45
- simulai_cli-2.0.1/simulai_cli/__init__.py +1 -0
- simulai_cli-2.0.1/simulai_cli/api.py +475 -0
- simulai_cli-2.0.1/simulai_cli/config.py +144 -0
- simulai_cli-2.0.1/simulai_cli/discovery.py +295 -0
- simulai_cli-2.0.1/simulai_cli/main.py +1005 -0
- simulai_cli-2.0.1/simulai_cli/render.py +219 -0
- simulai_cli-2.0.1/simulai_cli.egg-info/PKG-INFO +88 -0
- simulai_cli-2.0.1/simulai_cli.egg-info/SOURCES.txt +14 -0
- {simulai_cli-0.1.1 → simulai_cli-2.0.1}/simulai_cli.egg-info/requires.txt +0 -1
- simulai_cli-0.1.1/PKG-INFO +0 -71
- simulai_cli-0.1.1/README.md +0 -44
- simulai_cli-0.1.1/simulai_cli/__init__.py +0 -0
- simulai_cli-0.1.1/simulai_cli/main.py +0 -690
- simulai_cli-0.1.1/simulai_cli.egg-info/PKG-INFO +0 -71
- simulai_cli-0.1.1/simulai_cli.egg-info/SOURCES.txt +0 -16
- {simulai_cli-0.1.1 → simulai_cli-2.0.1}/setup.cfg +0 -0
- {simulai_cli-0.1.1 → simulai_cli-2.0.1}/simulai_cli.egg-info/dependency_links.txt +0 -0
- {simulai_cli-0.1.1 → simulai_cli-2.0.1}/simulai_cli.egg-info/entry_points.txt +0 -0
- {simulai_cli-0.1.1 → simulai_cli-2.0.1}/simulai_cli.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: simulai-cli
|
|
3
|
+
Version: 2.0.1
|
|
4
|
+
Summary: SimulAI CLI — persistent AI chat in your terminal. SmartRoute across 20+ models, Naira billing, and import your Claude Code / Codex sessions.
|
|
5
|
+
Author-email: Simul AI <hello@trysimulai.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://trysimulai.com
|
|
8
|
+
Project-URL: Documentation, https://docs.trysimulai.com
|
|
9
|
+
Project-URL: Repository, https://github.com/Gracemansam/simulai_client
|
|
10
|
+
Keywords: ai,llm,cli,nigeria,openai,claude,gemini,claude-code,codex,coding-agent,smartroute
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Environment :: Console
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: typer>=0.9.0
|
|
24
|
+
Requires-Dist: rich>=13.0.0
|
|
25
|
+
Requires-Dist: httpx>=0.24.0
|
|
26
|
+
|
|
27
|
+
# SimulAI CLI v2
|
|
28
|
+
|
|
29
|
+
Persistent AI chat in your terminal. SmartRoute across 20+ models, Naira
|
|
30
|
+
billing, and one-command import of your Claude Code / Codex CLI sessions.
|
|
31
|
+
|
|
32
|
+
## Install
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
pip install simulai-cli
|
|
36
|
+
simulai login
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Core ideas
|
|
40
|
+
|
|
41
|
+
**Your conversation follows you.** Every exchange is saved server-side, so
|
|
42
|
+
a thread started in the terminal continues in the web app and vice versa.
|
|
43
|
+
Inside a repo, `simulai chat` resumes that repo's conversation automatically.
|
|
44
|
+
|
|
45
|
+
**SmartRoute by default, your call any time.** The same router the web
|
|
46
|
+
dashboard uses picks a model per message. `/model anthropic/claude-sonnet-4`
|
|
47
|
+
takes over whenever you want, and the choice persists.
|
|
48
|
+
|
|
49
|
+
**Hit a limit in another tool? Bring the session with you.**
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
cd ~/code/my-api
|
|
53
|
+
simulai import claude-code
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Shows *this repo's* sessions from the last two weeks — not a month of every
|
|
57
|
+
project you've touched. Pick one, and it lands in SimulAI as a normal
|
|
58
|
+
conversation you can continue on any model.
|
|
59
|
+
|
|
60
|
+
## Commands
|
|
61
|
+
|
|
62
|
+
| Command | What it does |
|
|
63
|
+
|---|---|
|
|
64
|
+
| `simulai login` | Log in (unlocks everything) |
|
|
65
|
+
| `simulai chat` | Resume this directory's conversation |
|
|
66
|
+
| `simulai chat "msg"` | One-shot |
|
|
67
|
+
| `simulai chat -m <model>` | Force a specific model |
|
|
68
|
+
| `simulai chat --web` | Live web search |
|
|
69
|
+
| `simulai chat -f file.py` | Attach a file |
|
|
70
|
+
| `simulai chats` | List conversations |
|
|
71
|
+
| `simulai resume` | Pick one and bind it here |
|
|
72
|
+
| `simulai import claude-code` | Import a Claude Code session from this repo |
|
|
73
|
+
| `simulai import codex` | Same for Codex CLI |
|
|
74
|
+
| `simulai import scan` | Check every supported agent |
|
|
75
|
+
| `simulai import file x.jsonl` | Import an exported transcript |
|
|
76
|
+
| `simulai import link <url>` | Import a ChatGPT/Claude share link |
|
|
77
|
+
| `simulai analyze file.py` | Review a file |
|
|
78
|
+
| `simulai models [query]` | Browse models |
|
|
79
|
+
| `simulai wallet` | Credit balance |
|
|
80
|
+
| `simulai usage` | Credit ledger — what you spent, on what |
|
|
81
|
+
| `simulai config effort max` | Change a default |
|
|
82
|
+
|
|
83
|
+
## In-chat slash commands
|
|
84
|
+
|
|
85
|
+
`/model` `/models` `/smart` `/effort` `/web` `/mode` `/project` `/new`
|
|
86
|
+
`/title` `/code` `/save` `/file` `/cost` `/usage` `/trim` `/clear` `/exit`
|
|
87
|
+
|
|
88
|
+
Run `/help` for the full list.
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# SimulAI CLI v2
|
|
2
|
+
|
|
3
|
+
Persistent AI chat in your terminal. SmartRoute across 20+ models, Naira
|
|
4
|
+
billing, and one-command import of your Claude Code / Codex CLI sessions.
|
|
5
|
+
|
|
6
|
+
## Install
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
pip install simulai-cli
|
|
10
|
+
simulai login
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Core ideas
|
|
14
|
+
|
|
15
|
+
**Your conversation follows you.** Every exchange is saved server-side, so
|
|
16
|
+
a thread started in the terminal continues in the web app and vice versa.
|
|
17
|
+
Inside a repo, `simulai chat` resumes that repo's conversation automatically.
|
|
18
|
+
|
|
19
|
+
**SmartRoute by default, your call any time.** The same router the web
|
|
20
|
+
dashboard uses picks a model per message. `/model anthropic/claude-sonnet-4`
|
|
21
|
+
takes over whenever you want, and the choice persists.
|
|
22
|
+
|
|
23
|
+
**Hit a limit in another tool? Bring the session with you.**
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
cd ~/code/my-api
|
|
27
|
+
simulai import claude-code
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Shows *this repo's* sessions from the last two weeks — not a month of every
|
|
31
|
+
project you've touched. Pick one, and it lands in SimulAI as a normal
|
|
32
|
+
conversation you can continue on any model.
|
|
33
|
+
|
|
34
|
+
## Commands
|
|
35
|
+
|
|
36
|
+
| Command | What it does |
|
|
37
|
+
|---|---|
|
|
38
|
+
| `simulai login` | Log in (unlocks everything) |
|
|
39
|
+
| `simulai chat` | Resume this directory's conversation |
|
|
40
|
+
| `simulai chat "msg"` | One-shot |
|
|
41
|
+
| `simulai chat -m <model>` | Force a specific model |
|
|
42
|
+
| `simulai chat --web` | Live web search |
|
|
43
|
+
| `simulai chat -f file.py` | Attach a file |
|
|
44
|
+
| `simulai chats` | List conversations |
|
|
45
|
+
| `simulai resume` | Pick one and bind it here |
|
|
46
|
+
| `simulai import claude-code` | Import a Claude Code session from this repo |
|
|
47
|
+
| `simulai import codex` | Same for Codex CLI |
|
|
48
|
+
| `simulai import scan` | Check every supported agent |
|
|
49
|
+
| `simulai import file x.jsonl` | Import an exported transcript |
|
|
50
|
+
| `simulai import link <url>` | Import a ChatGPT/Claude share link |
|
|
51
|
+
| `simulai analyze file.py` | Review a file |
|
|
52
|
+
| `simulai models [query]` | Browse models |
|
|
53
|
+
| `simulai wallet` | Credit balance |
|
|
54
|
+
| `simulai usage` | Credit ledger — what you spent, on what |
|
|
55
|
+
| `simulai config effort max` | Change a default |
|
|
56
|
+
|
|
57
|
+
## In-chat slash commands
|
|
58
|
+
|
|
59
|
+
`/model` `/models` `/smart` `/effort` `/web` `/mode` `/project` `/new`
|
|
60
|
+
`/title` `/code` `/save` `/file` `/cost` `/usage` `/trim` `/clear` `/exit`
|
|
61
|
+
|
|
62
|
+
Run `/help` for the full list.
|
|
@@ -1,45 +1,47 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools>=61.0"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "simulai-cli"
|
|
7
|
-
version = "0.1
|
|
8
|
-
description = "
|
|
9
|
-
readme = "README.md"
|
|
10
|
-
license = { text = "MIT" }
|
|
11
|
-
authors = [
|
|
12
|
-
{ name = "Simul AI", email = "hello@trysimulai.com" }
|
|
13
|
-
]
|
|
14
|
-
keywords = [
|
|
15
|
-
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"Programming Language :: Python :: 3
|
|
24
|
-
"Programming Language :: Python :: 3.
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "simulai-cli"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
description = "SimulAI CLI — persistent AI chat in your terminal. SmartRoute across 20+ models, Naira billing, and import your Claude Code / Codex sessions."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Simul AI", email = "hello@trysimulai.com" }
|
|
13
|
+
]
|
|
14
|
+
keywords = [
|
|
15
|
+
"ai", "llm", "cli", "nigeria", "openai", "claude", "gemini",
|
|
16
|
+
"claude-code", "codex", "coding-agent", "smartroute",
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 4 - Beta",
|
|
20
|
+
"Environment :: Console",
|
|
21
|
+
"Intended Audience :: Developers",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
29
|
+
]
|
|
30
|
+
requires-python = ">=3.9"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"typer>=0.9.0",
|
|
33
|
+
"rich>=13.0.0",
|
|
34
|
+
"httpx>=0.24.0",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.scripts]
|
|
38
|
+
simulai = "simulai_cli.main:app"
|
|
39
|
+
|
|
40
|
+
[project.urls]
|
|
41
|
+
Homepage = "https://trysimulai.com"
|
|
42
|
+
Documentation = "https://docs.trysimulai.com"
|
|
43
|
+
Repository = "https://github.com/Gracemansam/simulai_client"
|
|
44
|
+
|
|
45
|
+
[tool.setuptools.packages.find]
|
|
46
|
+
where = ["."]
|
|
47
|
+
include = ["simulai_cli*"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|