uybai 0.1.0__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.
- uybai-0.1.0/.github/workflows/python-publish.yml +65 -0
- uybai-0.1.0/.gitignore +1 -0
- uybai-0.1.0/LICENSE +21 -0
- uybai-0.1.0/PKG-INFO +74 -0
- uybai-0.1.0/README.md +51 -0
- uybai-0.1.0/pyproject.toml +37 -0
- uybai-0.1.0/src/uybai/__init__.py +3 -0
- uybai-0.1.0/src/uybai/main.py +578 -0
- uybai-0.1.0/uyb.py +578 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# This workflow will upload a Python Package to PyPI when a release is created
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
|
|
3
|
+
|
|
4
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
5
|
+
# They are provided by a third-party and are governed by
|
|
6
|
+
# separate terms of service, privacy policy, and support
|
|
7
|
+
# documentation.
|
|
8
|
+
|
|
9
|
+
name: Upload Python Package
|
|
10
|
+
|
|
11
|
+
on:
|
|
12
|
+
release:
|
|
13
|
+
types: [published]
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: read
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
release-build:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
|
|
22
|
+
steps:
|
|
23
|
+
- uses: actions/checkout@v4
|
|
24
|
+
|
|
25
|
+
- uses: actions/setup-python@v5
|
|
26
|
+
with:
|
|
27
|
+
python-version: "3.x"
|
|
28
|
+
|
|
29
|
+
- name: Build release distributions
|
|
30
|
+
run: |
|
|
31
|
+
# NOTE: put your own distribution build steps here.
|
|
32
|
+
python -m pip install build
|
|
33
|
+
python -m build
|
|
34
|
+
|
|
35
|
+
- name: Upload distributions
|
|
36
|
+
uses: actions/upload-artifact@v4
|
|
37
|
+
with:
|
|
38
|
+
name: release-dists
|
|
39
|
+
path: dist/
|
|
40
|
+
|
|
41
|
+
pypi-publish:
|
|
42
|
+
runs-on: ubuntu-latest
|
|
43
|
+
needs:
|
|
44
|
+
- release-build
|
|
45
|
+
permissions:
|
|
46
|
+
# IMPORTANT: this permission is mandatory for trusted publishing
|
|
47
|
+
id-token: write
|
|
48
|
+
|
|
49
|
+
# Dedicated environments with protections for publishing are strongly recommended.
|
|
50
|
+
# For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules
|
|
51
|
+
environment:
|
|
52
|
+
name: pypi
|
|
53
|
+
url: https://pypi.org/p/uybai
|
|
54
|
+
|
|
55
|
+
steps:
|
|
56
|
+
- name: Retrieve release distributions
|
|
57
|
+
uses: actions/download-artifact@v4
|
|
58
|
+
with:
|
|
59
|
+
name: release-dists
|
|
60
|
+
path: dist/
|
|
61
|
+
|
|
62
|
+
- name: Publish release distributions to PyPI
|
|
63
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
64
|
+
with:
|
|
65
|
+
packages-dir: dist/
|
uybai-0.1.0/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dist
|
uybai-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 UYB Contributors
|
|
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.
|
uybai-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: uybai
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Zero Token Architecture™ — Thinks deeply. Helps never.
|
|
5
|
+
Project-URL: Homepage, https://github.com/yourusername/uybai
|
|
6
|
+
Project-URL: Issues, https://github.com/yourusername/uybai/issues
|
|
7
|
+
License: MIT
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Keywords: ai,cli,reasoning,terminal
|
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
|
11
|
+
Classifier: Environment :: Console
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Topic :: Terminals
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Requires-Dist: prompt-toolkit>=3.0
|
|
21
|
+
Requires-Dist: rich>=13.0
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# UYB AI
|
|
25
|
+
|
|
26
|
+
**Zero Token Architecture™** — Thinks deeply. Helps never.
|
|
27
|
+
|
|
28
|
+
A CLI that mimics the look and feel of AI coding assistants — thinking animations,
|
|
29
|
+
usage panels, effort levels — and then tells you to figure it out yourself.
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
╭─ UYB AI v0.1.0 ───────────────────────────────────────────────────╮
|
|
33
|
+
│ ~/your/project │
|
|
34
|
+
│ uyb-cortex-1.0 · effort: maximum · Autonomous Reasoning Platform™ │
|
|
35
|
+
╰─────────────────────────────────────────────────────────────────────╯
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Install
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pipx install uybai
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Or with pip:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install uybai
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
## Usage
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
uyb # 60-second deliberation mode
|
|
54
|
+
uyb --fast # 10-second mode
|
|
55
|
+
uyb --think-time 30 # custom duration
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### Commands
|
|
59
|
+
|
|
60
|
+
| Command | Description |
|
|
61
|
+
|-----------|-------------|
|
|
62
|
+
| `/fast` | Switch to 10-second think mode |
|
|
63
|
+
| `/slow` | Switch to 60-second think mode |
|
|
64
|
+
| `/usage` | Show token usage and cost (all zero) |
|
|
65
|
+
| `/effort` | Show effort level and thinking budget |
|
|
66
|
+
| `/clear` | Clear the screen |
|
|
67
|
+
| `/help` | Show all commands |
|
|
68
|
+
| `/exit` | Exit |
|
|
69
|
+
|
|
70
|
+
Type `/` to see command suggestions with autocomplete.
|
|
71
|
+
|
|
72
|
+
## License
|
|
73
|
+
|
|
74
|
+
MIT
|
uybai-0.1.0/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# UYB AI
|
|
2
|
+
|
|
3
|
+
**Zero Token Architecture™** — Thinks deeply. Helps never.
|
|
4
|
+
|
|
5
|
+
A CLI that mimics the look and feel of AI coding assistants — thinking animations,
|
|
6
|
+
usage panels, effort levels — and then tells you to figure it out yourself.
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
╭─ UYB AI v0.1.0 ───────────────────────────────────────────────────╮
|
|
10
|
+
│ ~/your/project │
|
|
11
|
+
│ uyb-cortex-1.0 · effort: maximum · Autonomous Reasoning Platform™ │
|
|
12
|
+
╰─────────────────────────────────────────────────────────────────────╯
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pipx install uybai
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or with pip:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install uybai
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Usage
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
uyb # 60-second deliberation mode
|
|
31
|
+
uyb --fast # 10-second mode
|
|
32
|
+
uyb --think-time 30 # custom duration
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### Commands
|
|
36
|
+
|
|
37
|
+
| Command | Description |
|
|
38
|
+
|-----------|-------------|
|
|
39
|
+
| `/fast` | Switch to 10-second think mode |
|
|
40
|
+
| `/slow` | Switch to 60-second think mode |
|
|
41
|
+
| `/usage` | Show token usage and cost (all zero) |
|
|
42
|
+
| `/effort` | Show effort level and thinking budget |
|
|
43
|
+
| `/clear` | Clear the screen |
|
|
44
|
+
| `/help` | Show all commands |
|
|
45
|
+
| `/exit` | Exit |
|
|
46
|
+
|
|
47
|
+
Type `/` to see command suggestions with autocomplete.
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "uybai"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Zero Token Architecture™ — Thinks deeply. Helps never."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
keywords = ["ai", "cli", "terminal", "reasoning"]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 3 - Alpha",
|
|
15
|
+
"Environment :: Console",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Topic :: Terminals",
|
|
23
|
+
]
|
|
24
|
+
dependencies = [
|
|
25
|
+
"rich>=13.0",
|
|
26
|
+
"prompt_toolkit>=3.0",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.scripts]
|
|
30
|
+
uyb = "uybai.main:cli"
|
|
31
|
+
|
|
32
|
+
[project.urls]
|
|
33
|
+
Homepage = "https://github.com/yourusername/uybai"
|
|
34
|
+
Issues = "https://github.com/yourusername/uybai/issues"
|
|
35
|
+
|
|
36
|
+
[tool.hatch.build.targets.wheel]
|
|
37
|
+
packages = ["src/uybai"]
|