mini-code-cli 0.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.
@@ -0,0 +1,9 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright © 2026 Nikolai Rozanov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: mini-code-cli
3
+ Version: 0.0.1
4
+ Summary: Minimal Coding CLI
5
+ Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
+ License: The MIT License (MIT)
7
+
8
+ Copyright © 2026 Nikolai Rozanov
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
+ Project-URL: Homepage, https://github.com/ai-nikolai/mini-code-cli
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ Dynamic: license-file
20
+
21
+ # A minimal coding agent cli
22
+
23
+ Purpose: no bloat, minimal coding cli, to enjoy experimenting and researching things...
24
+
25
+ ## Getting started:
26
+ 1. Installation (from pypi)
27
+ ```bash
28
+ pip3 install mini-code-cli
29
+ ```
30
+
31
+ 2. Run agent: (get LLM running via SGLang or Vllm, expect)
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
35
+ ```
36
+
37
+ ## (C) Nikolai Rozanov, 2026 - Present
@@ -0,0 +1,17 @@
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
@@ -0,0 +1,26 @@
1
+ [project]
2
+ name = "mini-code-cli"
3
+ version = "0.0.1"
4
+ description = "Minimal Coding CLI"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ # dependencies = [
8
+ # ]
9
+ authors = [
10
+ {name = "Nikolai Rozanov", email = "nikolai.rozanov@gmail.com"},
11
+ ]
12
+ license = {file = "LICENSE"}
13
+ urls = {"Homepage" = "https://github.com/ai-nikolai/mini-code-cli"}
14
+
15
+
16
+ [project.scripts]
17
+ mini-code-cli = "agent_loop:main"
18
+
19
+ [build-system]
20
+ requires = ["setuptools>=61.0"]
21
+ build-backend = "setuptools.build_meta"
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
25
+ include = ["*"]
26
+
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: mini-code-cli
3
+ Version: 0.0.1
4
+ Summary: Minimal Coding CLI
5
+ Author-email: Nikolai Rozanov <nikolai.rozanov@gmail.com>
6
+ License: The MIT License (MIT)
7
+
8
+ Copyright © 2026 Nikolai Rozanov
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15
+ Project-URL: Homepage, https://github.com/ai-nikolai/mini-code-cli
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+ License-File: LICENSE
19
+ Dynamic: license-file
20
+
21
+ # A minimal coding agent cli
22
+
23
+ Purpose: no bloat, minimal coding cli, to enjoy experimenting and researching things...
24
+
25
+ ## Getting started:
26
+ 1. Installation (from pypi)
27
+ ```bash
28
+ pip3 install mini-code-cli
29
+ ```
30
+
31
+ 2. Run agent: (get LLM running via SGLang or Vllm, expect)
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
35
+ ```
36
+
37
+ ## (C) Nikolai Rozanov, 2026 - Present
@@ -0,0 +1,8 @@
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
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mini-code-cli = agent_loop:main