mycode-cli 0.4.0__py3-none-any.whl → 0.4.2__py3-none-any.whl

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,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mycode-cli
3
- Version: 0.4.0
3
+ Version: 0.4.2
4
4
  Summary: Minimal coding agent CLI and web UI built on mycode-sdk.
5
5
  Project-URL: Homepage, https://github.com/legibet/mycode
6
6
  Project-URL: Repository, https://github.com/legibet/mycode
7
7
  Project-URL: Issues, https://github.com/legibet/mycode/issues
8
8
  Author-email: LeGibet <legibetpeng@gmail.com>
9
9
  License-Expression: MIT
10
+ License-File: LICENSE
10
11
  Keywords: agent,cli,coding-agent,fastapi,llm
11
12
  Classifier: Development Status :: 3 - Alpha
12
13
  Classifier: Environment :: Console
@@ -21,7 +22,7 @@ Classifier: Programming Language :: Python :: 3.13
21
22
  Classifier: Topic :: Software Development
22
23
  Requires-Python: >=3.12
23
24
  Requires-Dist: fastapi>=0.115.0
24
- Requires-Dist: mycode-sdk==0.4.0
25
+ Requires-Dist: mycode-sdk==0.4.2
25
26
  Requires-Dist: prompt-toolkit>=3.0.52
26
27
  Requires-Dist: pyyaml>=6.0.0
27
28
  Requires-Dist: rich>=14.2.0
@@ -43,11 +44,6 @@ A minimal coding agent. Inspired by [pi](https://github.com/badlogic/pi-mono).
43
44
  - Mobile-friendly web UI.
44
45
  - Lightweight `mycode-sdk` for embedding the agent in other Python apps.
45
46
 
46
- Two PyPI packages live in this workspace:
47
-
48
- - `mycode-sdk` (import name `mycode`) — the runtime: agent loop, providers, tools, session store. Lightweight.
49
- - `mycode-cli` (import name `mycode_cli`) — interactive CLI and web server. Depends on `mycode-sdk`.
50
-
51
47
  ## Quick Start
52
48
 
53
49
  Requires Python 3.12+. Install via [uv](https://docs.astral.sh/uv/):
@@ -180,7 +176,7 @@ uv build --package mycode-sdk
180
176
  uv build --package mycode-cli
181
177
  ```
182
178
 
183
- ## Embedding (mycode-sdk)
179
+ ## mycode-sdk
184
180
 
185
181
  ```python
186
182
  import asyncio
@@ -201,7 +197,7 @@ async def main() -> None:
201
197
  asyncio.run(main())
202
198
  ```
203
199
 
204
- See `docs/sdk.md` for the full SDK surface.
200
+ See `mycode/README.md` for details.
205
201
 
206
202
  ## License
207
203
 
@@ -381,7 +381,8 @@ mycode_cli/tui/__init__.py,sha256=5sPlJS3c8HdNEBwcF0bUuj8f8brAD-_6MNmF4Q_1Edg,69
381
381
  mycode_cli/tui/chat.py,sha256=BkyEsFgSrcekwvVMBnoaANIsDMoywvFEVJC-jO4_Cjw,25443
382
382
  mycode_cli/tui/render.py,sha256=Wf6FyPd5SAymG_5Ry6hZwSxvASdFo9Ai76l6vOITLmU,27073
383
383
  mycode_cli/tui/theme.py,sha256=HS3C1kSoIONrSaiSx22AWRLk1n6-T-Tn5iohCMewAg4,3455
384
- mycode_cli-0.4.0.dist-info/METADATA,sha256=65YulTQe0N_43e7wmtecVtSs47jDwM4rsc_S6VGNfcM,6975
385
- mycode_cli-0.4.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
386
- mycode_cli-0.4.0.dist-info/entry_points.txt,sha256=1R7YN8dxJUy5AMC4q2J5Ly9xuEom3ZbTaa8xXwxuZyk,48
387
- mycode_cli-0.4.0.dist-info/RECORD,,
384
+ mycode_cli-0.4.2.dist-info/METADATA,sha256=11gGYpfVLbQKpuocB7W-aPX_uqxyEE20VfruMLW6Qw4,6717
385
+ mycode_cli-0.4.2.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
386
+ mycode_cli-0.4.2.dist-info/entry_points.txt,sha256=1R7YN8dxJUy5AMC4q2J5Ly9xuEom3ZbTaa8xXwxuZyk,48
387
+ mycode_cli-0.4.2.dist-info/licenses/LICENSE,sha256=DSE6T-B9WhrWypr6H7y2kTZzoF1tef5xf7veUyImQsM,1064
388
+ mycode_cli-0.4.2.dist-info/RECORD,,
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 LeGibet
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.