pzero-operator 0.1.0 → 0.1.2

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.
Files changed (3) hide show
  1. package/LICENSE +20 -4
  2. package/README.md +117 -17
  3. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,5 +1,21 @@
1
- All rights reserved.
1
+ MIT License
2
2
 
3
- This software is provided as a packaged product release.
4
- No permission is granted to copy, modify, redistribute, sublicense, or publish
5
- this software without explicit permission from the author.
3
+ Copyright (c) 2026 Yernur
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.
package/README.md CHANGED
@@ -1,6 +1,40 @@
1
1
  # Operator
2
2
 
3
- `operator` is a terminal AI agent for coding, shell work, and technical workflows.
3
+ `operator` is a coding-first terminal AI agent from the `ProjectZero` ecosystem.
4
+
5
+ It starts with software development, repository work, shell execution, and technical workflows, but it is not meant to stop there. The longer direction is a stronger operator layer for your machine: local projects, execution flows, infrastructure-style tasks, model routing, and broader on-device control.
6
+
7
+ This is the path toward a more capable `operator` surface, not just another chat wrapper.
8
+
9
+ ## What it is
10
+
11
+ - coding-first terminal intelligence
12
+ - real CLI, installed through npm
13
+ - built for repository work, patching, shell execution, and session continuity
14
+ - supports hosted and local model rails
15
+ - keeps user state in a hidden local directory instead of polluting the package itself
16
+
17
+ ## Product direction
18
+
19
+ `operator` begins as a serious coding agent.
20
+
21
+ That means:
22
+
23
+ - reading code
24
+ - editing files
25
+ - running commands
26
+ - resuming technical sessions
27
+ - working across local repositories
28
+
29
+ But the broader direction is larger than coding alone:
30
+
31
+ - terminal execution
32
+ - technical operations
33
+ - localhost project control
34
+ - dev workflows
35
+ - model-flexible runtime selection
36
+
37
+ The long-term goal is a stronger device-level operator surface inside the `ProjectZero` ecosystem.
4
38
 
5
39
  ## Install
6
40
 
@@ -10,34 +44,100 @@ From npm:
10
44
  npm install -g pzero-operator
11
45
  ```
12
46
 
13
- From a release tarball:
14
-
15
- ```bash
16
- npm install -g ./pzero-operator-0.1.0.tgz
17
- ```
18
-
19
47
  After install:
20
48
 
21
49
  ```bash
22
50
  operator
23
51
  ```
24
52
 
25
- ## First Run
53
+ ## Platform status
54
+
55
+ - Linux: primary supported path
56
+ - macOS: expected path, should be validated per environment
57
+ - Windows: install path exists, but runtime support should currently be treated as experimental until the Windows startup path is fully hardened
58
+
59
+ ## Model rails
60
+
61
+ `operator` currently works with two main runtime paths:
62
+
63
+ ### Alem AI Plus
64
+
65
+ Hosted path for fast startup.
66
+
67
+ - site: `https://plus.alem.ai/`
68
+ - services: `https://plus.alem.ai/services`
69
+ - current hosted profiles in `operator`:
70
+ - `gpt-oss`
71
+ - `qwen3.6 27b`
72
+ - `gemma4`
73
+
74
+ The first time a hosted model is selected, `operator` asks for the relevant API key and stores local state in the hidden agent directory.
26
75
 
27
- - `alem ai plus` models ask for an API key the first time you select them
28
- - `ollama` is optional and can be selected with:
76
+ ### Ollama
77
+
78
+ Optional local or cloud model path.
79
+
80
+ You can switch into Ollama with:
29
81
 
30
82
  ```bash
31
83
  operator use ollama
32
84
  ```
33
85
 
34
- ## Data Layout
86
+ This path is useful when you want a more local-first runtime or want to move between local and cloud Ollama models.
87
+
88
+ ## First-run flow
89
+
90
+ Typical first use:
91
+
92
+ 1. install the package from npm
93
+ 2. run `operator`
94
+ 3. choose a runtime rail
95
+ 4. if using `Alem AI Plus`, enter the API key when asked
96
+ 5. start working inside the terminal
97
+
98
+ ## What `operator` can do now
99
+
100
+ - inspect repositories
101
+ - patch and write files
102
+ - execute shell commands
103
+ - continue prior sessions
104
+ - route between hosted and local model paths
105
+ - work as a coding-first assistant for technical workflows
106
+
107
+ ## Data layout
108
+
109
+ Package runtime:
110
+
111
+ - installed by npm
112
+
113
+ User state:
114
+
115
+ - stored in the hidden directory `~/.operator/agent`
116
+
117
+ This includes:
118
+
119
+ - sessions
120
+ - model settings
121
+ - local auth state
122
+
123
+ That separation keeps the package cleaner and makes user state easier to manage independently.
124
+
125
+ ## ProjectZero
126
+
127
+ `operator` is part of `ProjectZero`, a Kazakhstan startup building a broader ecosystem around AI products, AI agents, execution layers, and technical operator surfaces.
128
+
129
+ `operator` is the public terminal command layer inside that ecosystem.
130
+
131
+ ## Release posture
132
+
133
+ This package is intended to be installed as a real product surface, not just read as source.
134
+
135
+ Release packages do not ship:
35
136
 
36
- - package runtime is installed by npm
37
- - user state lives in the hidden directory `~/.operator/agent`
38
- - sessions, model settings, and local auth stay outside the package itself
137
+ - local sessions
138
+ - local auth files
139
+ - user machine state
39
140
 
40
- ## Release Notes
141
+ ## License
41
142
 
42
- - release tarballs are built as self-contained npm packages
43
- - source maps, local sessions, and local auth files are not shipped
143
+ MIT
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "pzero-operator",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "private": false,
5
5
  "type": "module",
6
- "description": "Operator is a coding-first terminal AI agent for vibe coding, software development, shell execution, and broader technical work.",
7
- "license": "UNLICENSED",
6
+ "description": "Operator is a coding-first terminal AI agent from ProjectZero for software development, shell execution, local project workflows, and broader device-level operator control.",
7
+ "license": "MIT",
8
8
  "engines": {
9
9
  "node": ">=20"
10
10
  },