@sireai/optimus 0.1.20 → 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 +3 -0
- package/dist/cli/optimus.js +3 -1
- 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-failure-classifier.js +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 +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/embedded-skills/task/bugfix/android-debug-protocol/SKILL.md +10 -0
- package/embedded-skills/task/bugfix/android-debug-protocol/skill.json +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -102,9 +102,12 @@ Jira intake:
|
|
|
102
102
|
|
|
103
103
|
```bash
|
|
104
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
|
|
105
106
|
optimus jira-refresh-auth --issue-key MICARAPPI-13178
|
|
106
107
|
```
|
|
107
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
|
+
|
|
108
111
|
Sentry intake:
|
|
109
112
|
|
|
110
113
|
```bash
|
package/dist/cli/optimus.js
CHANGED
|
@@ -476,7 +476,8 @@ function renderCommandHelp(command) {
|
|
|
476
476
|
" --branch <name> Override target branch",
|
|
477
477
|
" --task-type <type> Task type, default bugfix",
|
|
478
478
|
" --allow-duplicate Allow duplicate submission",
|
|
479
|
-
" --
|
|
479
|
+
" --with-comments Include recent Jira comments in submit context",
|
|
480
|
+
" --comment-limit <n> Comment lines fetched from Jira when --with-comments is set, default 3",
|
|
480
481
|
" --dry-run Preview without creating a task",
|
|
481
482
|
"",
|
|
482
483
|
"Example:",
|
|
@@ -493,6 +494,7 @@ function renderCommandHelp(command) {
|
|
|
493
494
|
" --repo <alias> Target registered repository alias",
|
|
494
495
|
" --projects-filter <csv> Restrict Jira projects",
|
|
495
496
|
" --limit <n> Max issues to submit, default 50",
|
|
497
|
+
" --with-comments Include recent Jira comments in submit context",
|
|
496
498
|
" --allow-duplicate Allow duplicate submission",
|
|
497
499
|
" --dry-run Preview without creating tasks"
|
|
498
500
|
].join("\n"),
|