@sireai/optimus 0.1.18 → 0.1.20
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.
- package/README.md +4 -5
- package/dist/cli/optimus.js +374 -282
- package/dist/cli/optimus.js.map +1 -1
- package/dist/problem-solving-core/codex/codex-auth-resolver.js +1 -1
- package/dist/problem-solving-core/codex/codex-auth-resolver.js.map +1 -1
- package/dist/task-environment/delivery/task-delivery-service.d.ts +5 -0
- package/dist/task-environment/delivery/task-delivery-service.js +7 -2
- package/dist/task-environment/delivery/task-delivery-service.js.map +1 -1
- package/dist/task-environment/orchestration/task-orchestrator.js +3 -1
- package/dist/task-environment/orchestration/task-orchestrator.js.map +1 -1
- package/package.json +1 -1
- package/embedded-skills/task/bugfix/android-debug-protocol/SKILL.md +0 -10
- package/embedded-skills/task/bugfix/android-debug-protocol/skill.json +0 -6
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ npx playwright install chromium
|
|
|
35
35
|
optimus setup
|
|
36
36
|
```
|
|
37
37
|
|
|
38
|
-
Setup creates the `~/.optimus` runtime home,
|
|
38
|
+
Setup creates the `~/.optimus` runtime home, configures Codex authentication, and records optional repository, Jira, Sentry, and Feishu delivery settings. Repository registration can be skipped during setup and added later with `optimus repo add`. Optimus always includes its built-in Feishu app for message delivery and analysis-document publishing. A Feishu webhook can be added during setup when group delivery should take priority. When Jira and Sentry are both enabled, setup also stores the Jira project key used to auto-create Jira issues for Sentry-origin patch publication.
|
|
39
39
|
|
|
40
40
|
Supported Codex auth modes:
|
|
41
41
|
|
|
@@ -43,10 +43,10 @@ Supported Codex auth modes:
|
|
|
43
43
|
- `codex_cli_login`
|
|
44
44
|
- `model_provider`
|
|
45
45
|
|
|
46
|
-
### 3.
|
|
46
|
+
### 3. Check machine readiness
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
optimus doctor
|
|
49
|
+
optimus doctor
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
### 4. Start the runtime
|
|
@@ -74,7 +74,7 @@ optimus version
|
|
|
74
74
|
optimus upgrade --check
|
|
75
75
|
optimus upgrade
|
|
76
76
|
optimus setup
|
|
77
|
-
optimus doctor
|
|
77
|
+
optimus doctor
|
|
78
78
|
optimus start
|
|
79
79
|
optimus submit --title "..." --description "..."
|
|
80
80
|
optimus feedback --title "..." --description "..."
|
|
@@ -96,7 +96,6 @@ Repository management:
|
|
|
96
96
|
```bash
|
|
97
97
|
optimus repo add /path/to/repo --alias mobile-app
|
|
98
98
|
optimus repo list
|
|
99
|
-
optimus repo doctor
|
|
100
99
|
```
|
|
101
100
|
|
|
102
101
|
Jira intake:
|