mini-code-cli 0.0.1__tar.gz → 0.0.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mini-code-cli
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: Minimal Coding CLI
5
5
  Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -28,10 +28,11 @@ Purpose: no bloat, minimal coding cli, to enjoy experimenting and researching th
28
28
  pip3 install mini-code-cli
29
29
  ```
30
30
 
31
- 2. Run agent: (get LLM running via SGLang or Vllm, expect)
31
+ 2. Run agent: (get LLM running via SGLang or Vllm)
32
32
  ```bash
33
- mini_code_cli #run the agent loop
34
- mini_code_cli --url "0.0.0.0" --allowed-dir ./experiments/ --api-key "sk-dummy" #localhost and 30000 is default, allowed_dir ./ is default
33
+ mini-code #run the agent loop
34
+ mini-code --url "https://api.deepseek.com" --model "deepseek-v4-flash" --api-key "sk-dummy" --allowed-dir ./experiments/
35
35
  ```
36
36
 
37
+
37
38
  ## (C) Nikolai Rozanov, 2026 - Present
@@ -0,0 +1,18 @@
1
+ # A minimal coding agent cli
2
+
3
+ Purpose: no bloat, minimal coding cli, to enjoy experimenting and researching things...
4
+
5
+ ## Getting started:
6
+ 1. Installation (from pypi)
7
+ ```bash
8
+ pip3 install mini-code-cli
9
+ ```
10
+
11
+ 2. Run agent: (get LLM running via SGLang or Vllm)
12
+ ```bash
13
+ mini-code #run the agent loop
14
+ mini-code --url "https://api.deepseek.com" --model "deepseek-v4-flash" --api-key "sk-dummy" --allowed-dir ./experiments/
15
+ ```
16
+
17
+
18
+ ## (C) Nikolai Rozanov, 2026 - Present
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mini-code-cli
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: Minimal Coding CLI
5
5
  Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -28,10 +28,11 @@ Purpose: no bloat, minimal coding cli, to enjoy experimenting and researching th
28
28
  pip3 install mini-code-cli
29
29
  ```
30
30
 
31
- 2. Run agent: (get LLM running via SGLang or Vllm, expect)
31
+ 2. Run agent: (get LLM running via SGLang or Vllm)
32
32
  ```bash
33
- mini_code_cli #run the agent loop
34
- mini_code_cli --url "0.0.0.0" --allowed-dir ./experiments/ --api-key "sk-dummy" #localhost and 30000 is default, allowed_dir ./ is default
33
+ mini-code #run the agent loop
34
+ mini-code --url "https://api.deepseek.com" --model "deepseek-v4-flash" --api-key "sk-dummy" --allowed-dir ./experiments/
35
35
  ```
36
36
 
37
+
37
38
  ## (C) Nikolai Rozanov, 2026 - Present
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ mini_code_cli/mini_code_cli.egg-info/PKG-INFO
5
+ mini_code_cli/mini_code_cli.egg-info/SOURCES.txt
6
+ mini_code_cli/mini_code_cli.egg-info/dependency_links.txt
7
+ mini_code_cli/mini_code_cli.egg-info/entry_points.txt
8
+ mini_code_cli/mini_code_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mini-code = mini_code_cli.agent_loop:main
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "mini-code-cli"
3
- version = "0.0.1"
3
+ version = "0.0.3"
4
4
  description = "Minimal Coding CLI"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -13,14 +13,14 @@ license = {file = "LICENSE"}
13
13
  urls = {"Homepage" = "https://github.com/ai-nikolai/mini-code-cli"}
14
14
 
15
15
 
16
- [project.scripts]
17
- mini-code-cli = "agent_loop:main"
18
-
19
16
  [build-system]
20
17
  requires = ["setuptools>=61.0"]
21
18
  build-backend = "setuptools.build_meta"
22
19
 
23
20
  [tool.setuptools.packages.find]
24
- where = ["src"]
21
+ where = ["mini_code_cli"]
25
22
  include = ["*"]
26
23
 
24
+ [project.scripts]
25
+ mini-code = "mini_code_cli.agent_loop:main"
26
+
@@ -1,17 +0,0 @@
1
- # A minimal coding agent cli
2
-
3
- Purpose: no bloat, minimal coding cli, to enjoy experimenting and researching things...
4
-
5
- ## Getting started:
6
- 1. Installation (from pypi)
7
- ```bash
8
- pip3 install mini-code-cli
9
- ```
10
-
11
- 2. Run agent: (get LLM running via SGLang or Vllm, expect)
12
- ```bash
13
- mini_code_cli #run the agent loop
14
- mini_code_cli --url "0.0.0.0" --allowed-dir ./experiments/ --api-key "sk-dummy" #localhost and 30000 is default, allowed_dir ./ is default
15
- ```
16
-
17
- ## (C) Nikolai Rozanov, 2026 - Present
@@ -1,8 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- src/mini_code_cli.egg-info/PKG-INFO
5
- src/mini_code_cli.egg-info/SOURCES.txt
6
- src/mini_code_cli.egg-info/dependency_links.txt
7
- src/mini_code_cli.egg-info/entry_points.txt
8
- src/mini_code_cli.egg-info/top_level.txt
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- mini-code-cli = agent_loop:main
File without changes
File without changes