@sireai/optimus 0.1.18 → 0.1.21
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 +7 -5
- package/dist/cli/optimus.js +377 -283
- package/dist/cli/optimus.js.map +1 -1
- package/dist/config/load-config.js +1 -0
- package/dist/config/load-config.js.map +1 -1
- package/dist/integrations/jira/jira-access-manager.d.ts +34 -0
- package/dist/integrations/jira/jira-access-manager.js +140 -0
- package/dist/integrations/jira/jira-access-manager.js.map +1 -0
- package/dist/integrations/jira/jira-cli.js +13 -23
- package/dist/integrations/jira/jira-cli.js.map +1 -1
- package/dist/integrations/jira/jira-client.js +2 -0
- package/dist/integrations/jira/jira-client.js.map +1 -1
- package/dist/integrations/jira/jira-submit.d.ts +2 -1
- package/dist/integrations/jira/jira-submit.js +15 -14
- package/dist/integrations/jira/jira-submit.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/problem-solving-core/codex/codex-failure-classifier.js +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/delivery/task-publication-service.d.ts +1 -0
- package/dist/task-environment/delivery/task-publication-service.js +52 -44
- package/dist/task-environment/delivery/task-publication-service.js.map +1 -1
- package/dist/task-environment/intake/triage-rejection-feedback-service.d.ts +0 -1
- package/dist/task-environment/intake/triage-rejection-feedback-service.js +38 -32
- package/dist/task-environment/intake/triage-rejection-feedback-service.js.map +1 -1
- package/dist/task-environment/orchestration/task-orchestrator.js +4 -2
- package/dist/task-environment/orchestration/task-orchestrator.js.map +1 -1
- package/dist/task-environment/orchestration/triage-runner.d.ts +1 -0
- package/dist/task-environment/orchestration/triage-runner.js +10 -2
- package/dist/task-environment/orchestration/triage-runner.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
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,16 +96,18 @@ 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:
|
|
103
102
|
|
|
104
103
|
```bash
|
|
105
104
|
optimus jira-submit-issue --issue-key MICARAPPI-13178 --repo mobile-app
|
|
105
|
+
optimus jira-submit-issue --issue-key MICARAPPI-13178 --repo mobile-app --with-comments
|
|
106
106
|
optimus jira-refresh-auth --issue-key MICARAPPI-13178
|
|
107
107
|
```
|
|
108
108
|
|
|
109
|
+
`jira-submit-issue` now excludes Jira comments by default. Add `--with-comments` when recent comments should be included in the submit context. `--comment-limit` only applies when `--with-comments` is set.
|
|
110
|
+
|
|
109
111
|
Sentry intake:
|
|
110
112
|
|
|
111
113
|
```bash
|