ottili-coder 1.0.0__tar.gz → 1.0.2__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,83 @@
1
+ Metadata-Version: 2.4
2
+ Name: ottili-coder
3
+ Version: 1.0.2
4
+ Summary: Ottili ONE Coder — autonomous AI coding agent CLI for the terminal
5
+ Project-URL: Homepage, https://ottili.one/coder
6
+ Project-URL: Documentation, https://ottili.one/coder/docs
7
+ Project-URL: Repository, https://github.com/Ottili-ONE/coder-cli
8
+ Project-URL: Issues, https://github.com/Ottili-ONE/coder-cli/issues
9
+ Author-email: Ottili ONE <hello@ottili.one>
10
+ License: MIT
11
+ Keywords: agent,ai,cli,coder,coding-agent,ottili,ottili-one
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Environment :: Console
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Topic :: Software Development
19
+ Requires-Python: >=3.9
20
+ Description-Content-Type: text/markdown
21
+
22
+ # Ottili ONE Coder
23
+
24
+ **Ottili ONE Coder** is the open-source AI coding agent for the [Ottili ONE](https://ottili.one) platform. This Python package installs the `ottili-coder` CLI and downloads the matching native binary for your platform on first use.
25
+
26
+ ## Install
27
+
28
+ ```bash
29
+ pip install ottili-coder
30
+ ```
31
+
32
+ Or with pipx for an isolated CLI:
33
+
34
+ ```bash
35
+ pipx install ottili-coder
36
+ ```
37
+
38
+ ## Quick start
39
+
40
+ ```bash
41
+ cd your-project
42
+ ottili-coder
43
+ ```
44
+
45
+ ## What you get
46
+
47
+ - Terminal agent with **build** and **plan** modes
48
+ - MCP and skills support
49
+ - Optional Ottili ONE cloud integration
50
+ - Cross-platform CLI via native GitHub release binaries
51
+
52
+ ## Other install options
53
+
54
+ ```bash
55
+ # npm
56
+ npm i -g ottili-coder@latest
57
+
58
+ # Install script
59
+ curl -fsSL https://ottili.one/coder/install | bash
60
+
61
+ # GitHub release binaries
62
+ curl -fsSL https://github.com/Ottili-ONE/coder-cli/releases/latest/download/install | bash
63
+ ```
64
+
65
+ ## Configuration
66
+
67
+ | Variable | Purpose |
68
+ | --- | --- |
69
+ | `OTTILI_CODER_BIN_PATH` | Use a custom CLI binary path |
70
+ | `OTTILI_CODER_INSTALL_DIR` | Override install directory for downloaded binaries |
71
+ | `OTTILI_CODER_VERSION` | Pin downloaded release version |
72
+ | `OTTILI_CODER_RELEASE_REPO` | Override GitHub release source repo |
73
+
74
+ ## Links
75
+
76
+ - Website: https://ottili.one/coder
77
+ - Docs: https://ottili.one/coder/docs
78
+ - Repository: https://github.com/Ottili-ONE/coder-cli
79
+ - Issues: https://github.com/Ottili-ONE/coder-cli/issues
80
+
81
+ ## License
82
+
83
+ MIT
@@ -0,0 +1,62 @@
1
+ # Ottili ONE Coder
2
+
3
+ **Ottili ONE Coder** is the open-source AI coding agent for the [Ottili ONE](https://ottili.one) platform. This Python package installs the `ottili-coder` CLI and downloads the matching native binary for your platform on first use.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install ottili-coder
9
+ ```
10
+
11
+ Or with pipx for an isolated CLI:
12
+
13
+ ```bash
14
+ pipx install ottili-coder
15
+ ```
16
+
17
+ ## Quick start
18
+
19
+ ```bash
20
+ cd your-project
21
+ ottili-coder
22
+ ```
23
+
24
+ ## What you get
25
+
26
+ - Terminal agent with **build** and **plan** modes
27
+ - MCP and skills support
28
+ - Optional Ottili ONE cloud integration
29
+ - Cross-platform CLI via native GitHub release binaries
30
+
31
+ ## Other install options
32
+
33
+ ```bash
34
+ # npm
35
+ npm i -g ottili-coder@latest
36
+
37
+ # Install script
38
+ curl -fsSL https://ottili.one/coder/install | bash
39
+
40
+ # GitHub release binaries
41
+ curl -fsSL https://github.com/Ottili-ONE/coder-cli/releases/latest/download/install | bash
42
+ ```
43
+
44
+ ## Configuration
45
+
46
+ | Variable | Purpose |
47
+ | --- | --- |
48
+ | `OTTILI_CODER_BIN_PATH` | Use a custom CLI binary path |
49
+ | `OTTILI_CODER_INSTALL_DIR` | Override install directory for downloaded binaries |
50
+ | `OTTILI_CODER_VERSION` | Pin downloaded release version |
51
+ | `OTTILI_CODER_RELEASE_REPO` | Override GitHub release source repo |
52
+
53
+ ## Links
54
+
55
+ - Website: https://ottili.one/coder
56
+ - Docs: https://ottili.one/coder/docs
57
+ - Repository: https://github.com/Ottili-ONE/coder-cli
58
+ - Issues: https://github.com/Ottili-ONE/coder-cli/issues
59
+
60
+ ## License
61
+
62
+ MIT
@@ -4,10 +4,10 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "ottili-coder"
7
- version = "1.0.0"
7
+ version = "1.0.2"
8
8
  description = "Ottili ONE Coder — autonomous AI coding agent CLI for the terminal"
9
9
  readme = "README.md"
10
- license = "MIT"
10
+ license = { text = "MIT" }
11
11
  requires-python = ">=3.9"
12
12
  authors = [{ name = "Ottili ONE", email = "hello@ottili.one" }]
13
13
  keywords = ["ottili", "ottili-one", "coder", "ai", "cli", "agent", "coding-agent"]
@@ -1,3 +1,3 @@
1
1
  """Ottili ONE Coder Python distribution."""
2
2
 
3
- __version__ = "1.0.0"
3
+ __version__ = "1.0.2"
@@ -1,38 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: ottili-coder
3
- Version: 1.0.0
4
- Summary: Ottili ONE Coder — autonomous AI coding agent CLI for the terminal
5
- Project-URL: Homepage, https://ottili.one/coder
6
- Project-URL: Documentation, https://ottili.one/coder/docs
7
- Project-URL: Repository, https://github.com/Ottili-ONE/coder-cli
8
- Project-URL: Issues, https://github.com/Ottili-ONE/coder-cli/issues
9
- Author-email: Ottili ONE <hello@ottili.one>
10
- License-Expression: MIT
11
- Keywords: agent,ai,cli,coder,coding-agent,ottili,ottili-one
12
- Classifier: Development Status :: 4 - Beta
13
- Classifier: Environment :: Console
14
- Classifier: Intended Audience :: Developers
15
- Classifier: License :: OSI Approved :: MIT License
16
- Classifier: Operating System :: OS Independent
17
- Classifier: Programming Language :: Python :: 3
18
- Classifier: Topic :: Software Development
19
- Requires-Python: >=3.9
20
- Description-Content-Type: text/markdown
21
-
22
- # ottili-coder (Python)
23
-
24
- Python distribution for [Ottili ONE Coder](https://ottili.one/coder).
25
-
26
- Install:
27
-
28
- ```bash
29
- pip install ottili-coder
30
- ```
31
-
32
- Run:
33
-
34
- ```bash
35
- ottili-coder --help
36
- ```
37
-
38
- The package downloads the platform-native CLI binary on first use and delegates to it.
@@ -1,17 +0,0 @@
1
- # ottili-coder (Python)
2
-
3
- Python distribution for [Ottili ONE Coder](https://ottili.one/coder).
4
-
5
- Install:
6
-
7
- ```bash
8
- pip install ottili-coder
9
- ```
10
-
11
- Run:
12
-
13
- ```bash
14
- ottili-coder --help
15
- ```
16
-
17
- The package downloads the platform-native CLI binary on first use and delegates to it.
File without changes