@skrr-ai/cli 0.1.21 → 0.1.23
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 +83 -73
- package/bin/dev-fallback.js +221 -0
- package/bin/run.js +43 -0
- package/dist/base-command.d.ts +15 -0
- package/dist/base-command.js +71 -10
- package/dist/commands/agents/attach-harness.d.ts +37 -0
- package/dist/commands/agents/attach-harness.js +102 -3
- package/dist/commands/agents/chat.d.ts +69 -1
- package/dist/commands/agents/chat.js +202 -22
- package/dist/commands/agents/create.d.ts +38 -0
- package/dist/commands/agents/create.js +95 -2
- package/dist/commands/agents/schedule-trace.js +11 -0
- package/dist/commands/agents/show.js +29 -1
- package/dist/commands/api-keys/create.d.ts +24 -0
- package/dist/commands/api-keys/create.js +80 -0
- package/dist/commands/api-keys/list.d.ts +11 -0
- package/dist/commands/api-keys/list.js +42 -0
- package/dist/commands/api-keys/revoke.d.ts +14 -0
- package/dist/commands/api-keys/revoke.js +33 -0
- package/dist/commands/api-keys/rotate.d.ts +19 -0
- package/dist/commands/api-keys/rotate.js +42 -0
- package/dist/commands/balance/index.d.ts +18 -0
- package/dist/commands/balance/index.js +29 -0
- package/dist/commands/balance/show.d.ts +25 -0
- package/dist/commands/balance/show.js +60 -0
- package/dist/commands/balance/statement.d.ts +19 -0
- package/dist/commands/balance/statement.js +52 -0
- package/dist/commands/browser/doctor.d.ts +11 -0
- package/dist/commands/browser/doctor.js +11 -0
- package/dist/commands/code/jobs/approve.d.ts +25 -0
- package/dist/commands/code/jobs/approve.js +52 -0
- package/dist/commands/code/jobs/cancel.d.ts +12 -0
- package/dist/commands/code/jobs/cancel.js +39 -0
- package/dist/commands/code/jobs/index.d.ts +19 -0
- package/dist/commands/code/jobs/index.js +38 -0
- package/dist/commands/code/jobs/list.d.ts +12 -0
- package/dist/commands/code/jobs/list.js +87 -0
- package/dist/commands/code/jobs/run.d.ts +32 -0
- package/dist/commands/code/jobs/run.js +151 -0
- package/dist/commands/code/jobs/show.d.ts +12 -0
- package/dist/commands/code/jobs/show.js +86 -0
- package/dist/commands/commitments/create.d.ts +1 -0
- package/dist/commands/commitments/create.js +19 -5
- package/dist/commands/commitments/preflight.js +18 -4
- package/dist/commands/commitments/receipt-metrics.d.ts +39 -0
- package/dist/commands/commitments/receipt-metrics.js +78 -0
- package/dist/commands/convos/search.js +5 -5
- package/dist/commands/harnesses/leases/list.d.ts +3 -0
- package/dist/commands/harnesses/leases/list.js +59 -12
- package/dist/commands/harnesses/leases/show.js +36 -0
- package/dist/commands/harnesses/list.d.ts +18 -0
- package/dist/commands/harnesses/list.js +30 -0
- package/dist/commands/harnesses/products.js +48 -3
- package/dist/commands/harnesses/quota.d.ts +16 -0
- package/dist/commands/harnesses/quota.js +26 -1
- package/dist/commands/harnesses/usage.js +17 -0
- package/dist/commands/inbox/index.d.ts +2 -1
- package/dist/commands/inbox/index.js +27 -4
- package/dist/commands/login.js +4 -1
- package/dist/commands/machines/list.d.ts +1 -0
- package/dist/commands/machines/list.js +33 -5
- package/dist/commands/memory/approvals/issue.d.ts +18 -0
- package/dist/commands/memory/approvals/issue.js +63 -0
- package/dist/commands/memory/commit.js +5 -2
- package/dist/commands/memory/context.d.ts +3 -2
- package/dist/commands/memory/context.js +9 -11
- package/dist/commands/memory/delete.d.ts +1 -1
- package/dist/commands/memory/list.d.ts +1 -1
- package/dist/commands/memory/list.js +1 -1
- package/dist/commands/memory/mounts/resolve.d.ts +10 -0
- package/dist/commands/memory/mounts/resolve.js +27 -0
- package/dist/commands/memory/proposals/commit.d.ts +18 -0
- package/dist/commands/memory/proposals/commit.js +32 -0
- package/dist/commands/memory/proposals/create.d.ts +18 -0
- package/dist/commands/memory/proposals/create.js +56 -0
- package/dist/commands/memory/proposals/list.d.ts +13 -0
- package/dist/commands/memory/proposals/list.js +31 -0
- package/dist/commands/memory/proposals/promote.d.ts +22 -0
- package/dist/commands/memory/proposals/promote.js +33 -0
- package/dist/commands/memory/proposals/reject.d.ts +16 -0
- package/dist/commands/memory/proposals/reject.js +28 -0
- package/dist/commands/memory/rebuild-index.d.ts +20 -0
- package/dist/commands/memory/rebuild-index.js +25 -0
- package/dist/commands/memory/save.d.ts +1 -1
- package/dist/commands/memory/save.js +1 -1
- package/dist/commands/memory/search.d.ts +6 -3
- package/dist/commands/memory/search.js +27 -3
- package/dist/commands/memory/show.d.ts +1 -1
- package/dist/commands/memory/stores/archive.d.ts +14 -0
- package/dist/commands/memory/stores/archive.js +31 -0
- package/dist/commands/memory/stores/create.d.ts +12 -0
- package/dist/commands/memory/stores/create.js +30 -0
- package/dist/commands/memory/stores/delete.d.ts +15 -0
- package/dist/commands/memory/stores/delete.js +38 -0
- package/dist/commands/memory/stores/list.d.ts +10 -0
- package/dist/commands/memory/stores/list.js +29 -0
- package/dist/commands/memory/stores/show.d.ts +12 -0
- package/dist/commands/memory/stores/show.js +14 -0
- package/dist/commands/memory/stores/update.d.ts +15 -0
- package/dist/commands/memory/stores/update.js +39 -0
- package/dist/commands/memory/sync/delete.d.ts +13 -0
- package/dist/commands/memory/sync/delete.js +35 -0
- package/dist/commands/memory/sync/pull.d.ts +19 -0
- package/dist/commands/memory/sync/pull.js +52 -0
- package/dist/commands/memory/sync/push.d.ts +18 -0
- package/dist/commands/memory/sync/push.js +115 -0
- package/dist/commands/memory/sync/resolve.d.ts +23 -0
- package/dist/commands/memory/sync/resolve.js +27 -0
- package/dist/commands/memory/sync/status.d.ts +9 -0
- package/dist/commands/memory/sync/status.js +22 -0
- package/dist/commands/memory/topics/archive.d.ts +20 -0
- package/dist/commands/memory/topics/archive.js +29 -0
- package/dist/commands/memory/topics/create.d.ts +23 -0
- package/dist/commands/memory/topics/create.js +46 -0
- package/dist/commands/memory/topics/delete.d.ts +22 -0
- package/dist/commands/memory/topics/delete.js +30 -0
- package/dist/commands/memory/topics/forget.d.ts +22 -0
- package/dist/commands/memory/topics/forget.js +29 -0
- package/dist/commands/memory/topics/list.d.ts +13 -0
- package/dist/commands/memory/topics/list.js +22 -0
- package/dist/commands/memory/topics/move.d.ts +22 -0
- package/dist/commands/memory/topics/move.js +26 -0
- package/dist/commands/memory/topics/show.d.ts +17 -0
- package/dist/commands/memory/topics/show.js +21 -0
- package/dist/commands/memory/topics/update.d.ts +23 -0
- package/dist/commands/memory/topics/update.js +27 -0
- package/dist/commands/memory/tree.d.ts +5 -2
- package/dist/commands/memory/tree.js +20 -2
- package/dist/commands/memory/update.d.ts +1 -1
- package/dist/commands/memory/versions/list.d.ts +16 -0
- package/dist/commands/memory/versions/list.js +22 -0
- package/dist/commands/memory/versions/redact.d.ts +21 -0
- package/dist/commands/memory/versions/redact.js +22 -0
- package/dist/commands/memory/versions/restore.d.ts +20 -0
- package/dist/commands/memory/versions/restore.js +16 -0
- package/dist/commands/memory/versions/show.d.ts +15 -0
- package/dist/commands/memory/versions/show.js +17 -0
- package/dist/commands/messages/list.js +25 -8
- package/dist/commands/messages/show.js +10 -0
- package/dist/commands/store/install.js +5 -1
- package/dist/commands/store/releases.js +1 -1
- package/dist/commands/store/update.js +5 -1
- package/dist/commands/subscriptions/cancel.js +5 -1
- package/dist/commands/subscriptions/health.js +5 -1
- package/dist/commands/subscriptions/status.js +5 -1
- package/dist/commands/subscriptions/subscribe.js +5 -1
- package/dist/commands/tasks/activity.d.ts +2 -3
- package/dist/commands/tasks/activity.js +15 -5
- package/dist/commands/tasks/complete.d.ts +18 -150
- package/dist/commands/tasks/complete.js +161 -600
- package/dist/commands/tasks/create.d.ts +5 -0
- package/dist/commands/tasks/create.js +107 -4
- package/dist/commands/tasks/deliverable/add.d.ts +8 -0
- package/dist/commands/tasks/deliverable/add.js +41 -8
- package/dist/commands/tasks/deliverable/confirm.d.ts +5 -5
- package/dist/commands/tasks/deliverable/confirm.js +9 -18
- package/dist/commands/tasks/deliverable/list.d.ts +12 -0
- package/dist/commands/tasks/deliverable/list.js +37 -0
- package/dist/commands/tasks/events/append.d.ts +2 -0
- package/dist/commands/tasks/events/append.js +11 -4
- package/dist/commands/tasks/events/list.d.ts +1 -0
- package/dist/commands/tasks/events/list.js +1 -0
- package/dist/commands/tasks/events/tail.d.ts +1 -0
- package/dist/commands/tasks/events/tail.js +1 -0
- package/dist/commands/tasks/expectations/assess.d.ts +21 -0
- package/dist/commands/tasks/expectations/assess.js +77 -0
- package/dist/commands/tasks/expectations.js +14 -18
- package/dist/commands/tasks/judge.d.ts +1 -0
- package/dist/commands/tasks/judge.js +2 -1
- package/dist/commands/tasks/output.d.ts +2 -11
- package/dist/commands/tasks/output.js +64 -145
- package/dist/commands/tasks/report.d.ts +3 -3
- package/dist/commands/tasks/report.js +64 -41
- package/dist/commands/tasks/resource/add.d.ts +23 -0
- package/dist/commands/tasks/resource/add.js +76 -0
- package/dist/commands/tasks/resource/list.d.ts +13 -0
- package/dist/commands/tasks/resource/list.js +41 -0
- package/dist/commands/tasks/result/show.d.ts +13 -0
- package/dist/commands/tasks/result/show.js +46 -0
- package/dist/commands/tasks/result/submit.d.ts +26 -0
- package/dist/commands/tasks/result/submit.js +134 -0
- package/dist/commands/tasks/resume/save.d.ts +16 -0
- package/dist/commands/tasks/resume/save.js +59 -0
- package/dist/commands/tasks/resume/show.d.ts +13 -0
- package/dist/commands/tasks/resume/show.js +35 -0
- package/dist/commands/tasks/review.d.ts +17 -0
- package/dist/commands/tasks/review.js +54 -0
- package/dist/commands/tasks/runs.js +5 -0
- package/dist/commands/tasks/timeline.d.ts +2 -2
- package/dist/commands/tasks/timeline.js +10 -23
- package/dist/commands/tasks/updates/add.d.ts +22 -0
- package/dist/commands/tasks/updates/add.js +101 -0
- package/dist/commands/tasks/updates/list.d.ts +15 -0
- package/dist/commands/tasks/updates/list.js +57 -0
- package/dist/commands/tasks/waive.d.ts +1 -0
- package/dist/commands/tasks/waive.js +2 -1
- package/dist/lib/agentic-stream.d.ts +257 -0
- package/dist/lib/agentic-stream.js +490 -33
- package/dist/lib/balance.d.ts +8 -0
- package/dist/lib/commitment-product.d.ts +10 -1
- package/dist/lib/commitment-product.js +66 -2
- package/dist/lib/commitments.d.ts +4 -1
- package/dist/lib/commitments.js +32 -1
- package/dist/lib/conversation-search.d.ts +3 -0
- package/dist/lib/conversation-search.js +75 -0
- package/dist/lib/execution-target.d.ts +21 -0
- package/dist/lib/execution-target.js +22 -6
- package/dist/lib/harnesses.d.ts +82 -6
- package/dist/lib/harnesses.js +30 -2
- package/dist/lib/hosted-machines.js +9 -0
- package/dist/lib/inbox.d.ts +2 -1
- package/dist/lib/machines.d.ts +17 -0
- package/dist/lib/machines.js +29 -0
- package/dist/lib/managed-agent-keys.d.ts +104 -0
- package/dist/lib/managed-agent-keys.js +50 -0
- package/dist/lib/memory-scope.d.ts +4 -3
- package/dist/lib/memory-scope.js +9 -9
- package/dist/lib/memory-sync.d.ts +114 -0
- package/dist/lib/memory-sync.js +730 -0
- package/dist/lib/message-provenance.d.ts +42 -0
- package/dist/lib/message-provenance.js +89 -0
- package/dist/lib/scoped-memory-command.d.ts +68 -0
- package/dist/lib/scoped-memory-command.js +183 -0
- package/dist/lib/session-task-endpoints.d.ts +1 -1
- package/dist/lib/session-task-endpoints.js +7 -0
- package/dist/lib/sky-code-broker.d.ts +47 -0
- package/dist/lib/sky-code-broker.js +50 -0
- package/dist/lib/sky-code-doctor.js +10 -1
- package/dist/lib/task-artifact-flags.d.ts +2 -0
- package/dist/lib/task-artifact-flags.js +7 -0
- package/dist/lib/task-execution.d.ts +4 -5
- package/dist/lib/task-execution.js +4 -5
- package/dist/lib/task-extras.d.ts +1 -5
- package/dist/lib/task-extras.js +1 -5
- package/dist/lib/task-transcript.d.ts +5 -7
- package/dist/lib/task-transcript.js +8 -16
- package/dist/lib/tasks.d.ts +7 -21
- package/dist/lib/tasks.js +17 -20
- package/dist/lib/triggers.d.ts +39 -1
- package/dist/lib/triggers.js +70 -2
- package/dist/lib/usage-discovery.d.ts +17 -1
- package/dist/lib/usage-discovery.js +17 -1
- package/dist/node_modules/@skrr-ai/data-provider/index.js +3733 -3618
- package/oclif.manifest.json +25726 -19886
- package/package.json +26 -5
|
@@ -1,144 +1,10 @@
|
|
|
1
|
-
import { dataService } from '@skrr-ai/data-provider';
|
|
2
|
-
import type { TaskReport } from '@skrr-ai/data-provider';
|
|
3
1
|
import { BaseCommand } from '../../base-command';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
type TaskCommentResult = Awaited<ReturnType<typeof dataService.addTaskComment>>;
|
|
7
|
-
type MovedTaskResult = Awaited<ReturnType<typeof dataService.moveTask>>;
|
|
8
|
-
/** Wire shape of POST /api/tasks/:taskId/complete (OSK-1969). */
|
|
9
|
-
/** One thing a completion did not have. Never a refusal — `done` has none. */
|
|
10
|
-
export interface CompletionAdvisory {
|
|
11
|
-
code: string;
|
|
12
|
-
message: string;
|
|
13
|
-
}
|
|
14
|
-
export interface CompleteEndpointResponse {
|
|
15
|
-
task: MovedTaskResult | null;
|
|
16
|
-
comment: TaskCommentResult | null;
|
|
17
|
-
commentFailed?: boolean;
|
|
18
|
-
/** What the completion was missing. `done` has no preconditions, so every
|
|
19
|
-
* condition that used to refuse one now travels with it instead. The task
|
|
20
|
-
* reached the requested terminal state regardless. */
|
|
21
|
-
advisories?: CompletionAdvisory[];
|
|
22
|
-
}
|
|
23
|
-
export interface CompleteTransport {
|
|
24
|
-
/** POST /api/tasks/:taskId/complete — atomic move + TASK_OUTPUT comment. */
|
|
25
|
-
postComplete: (taskId: string, payload: {
|
|
26
|
-
status: CompletionStatus;
|
|
27
|
-
summary: string;
|
|
28
|
-
deliverables: string;
|
|
29
|
-
verdict: string;
|
|
30
|
-
report?: TaskReport;
|
|
31
|
-
deliveryReceipt?: TaskDeliveryReceipt;
|
|
32
|
-
}) => Promise<CompleteEndpointResponse>;
|
|
33
|
-
/** Legacy step 1 — POST /api/tasks/:taskId/comments. */
|
|
34
|
-
addComment: (taskId: string, body: string) => Promise<TaskCommentResult>;
|
|
35
|
-
/** Legacy step 2 — PATCH /api/tasks/:taskId/move. */
|
|
36
|
-
moveTask: (taskId: string, status: 'done' | 'failed') => Promise<MovedTaskResult>;
|
|
37
|
-
/** Session credentials must never fall back to broad user-grain endpoints. */
|
|
38
|
-
allowLegacyFallback?: boolean;
|
|
39
|
-
}
|
|
40
|
-
export interface DurableCompletionResult {
|
|
41
|
-
comment: TaskCommentResult | null;
|
|
42
|
-
movedTask: MovedTaskResult | null;
|
|
43
|
-
moved: boolean;
|
|
44
|
-
commentFailed: boolean;
|
|
45
|
-
advisories?: CompletionAdvisory[];
|
|
46
|
-
/** true when the atomic /complete endpoint handled the finalization. */
|
|
47
|
-
usedAtomicEndpoint: boolean;
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Mutation endpoints require the task's canonical UUID even though the CLI
|
|
51
|
-
* accepts human-readable refs and titles. Resolve the display reference before
|
|
52
|
-
* writing anything so a 404 from `POST /complete` cannot be mistaken for an
|
|
53
|
-
* old server and fall through to the legacy comment-first path.
|
|
54
|
-
*/
|
|
55
|
-
export declare function resolveCanonicalCompletionTaskId(taskRef: string, lookup: (taskRef: string) => Promise<unknown>): Promise<string>;
|
|
56
|
-
/**
|
|
57
|
-
* The canonical id AND the status it is in.
|
|
58
|
-
*
|
|
59
|
-
* The status comes free: this lookup already happens on the user path, so the
|
|
60
|
-
* re-completion guard below costs no extra round trip on the common case. It is
|
|
61
|
-
* also the only way to make the success line honest — `tasks complete` printed
|
|
62
|
-
* "Moved task X to done" unconditionally, so a task that was ALREADY done got a
|
|
63
|
-
* report of a state transition that did not happen.
|
|
64
|
-
*/
|
|
65
|
-
export declare function resolveCompletionTarget(taskRef: string, lookup: (taskRef: string) => Promise<unknown>): Promise<{
|
|
66
|
-
id: string;
|
|
67
|
-
status: string | null;
|
|
68
|
-
}>;
|
|
69
|
-
/**
|
|
70
|
-
* What a second `tasks complete` on an already-closed task should do.
|
|
71
|
-
*
|
|
72
|
-
* The repo contract calls this "the only terminal closeout", and a task has one
|
|
73
|
-
* canonical outcome — but a second run used to succeed silently, post another
|
|
74
|
-
* TASK_OUTPUT block, and leave `tasks output` rendering the throwaway one as
|
|
75
|
-
* authoritative. The real summary and its deliverables link were still on the task
|
|
76
|
-
* but no longer canonical, which is the worst of the available failures: no
|
|
77
|
-
* error, no warning, exit 0, and a record that now says something different.
|
|
78
|
-
*
|
|
79
|
-
* Refusing outright would break the case that makes retries safe. A completion
|
|
80
|
-
* whose response is lost — a flaky connection, a re-run script — SHOULD be able
|
|
81
|
-
* to run again, and today it collapses server-side on the shared
|
|
82
|
-
* `X-Idempotency-Key`. Turning that into a hard failure would force every
|
|
83
|
-
* caller to write its own is-it-already-done check.
|
|
84
|
-
*
|
|
85
|
-
* So the axis is not "again or not", it is "the SAME again, or something
|
|
86
|
-
* different":
|
|
87
|
-
*
|
|
88
|
-
* - identical report → `noop`, exit 0. Nothing to do, and saying so is more
|
|
89
|
-
* honest than re-posting an identical block.
|
|
90
|
-
* - differing report → `refuse`. Superseding a canonical outcome is a real
|
|
91
|
-
* decision, so it takes `--amend` and says so.
|
|
92
|
-
* - not yet terminal → `proceed`, unchanged.
|
|
93
|
-
*
|
|
94
|
-
* Pure, so the rule is testable without a server.
|
|
95
|
-
*/
|
|
96
|
-
export declare function decideRecompletion(opts: {
|
|
97
|
-
priorStatus: string | null;
|
|
98
|
-
canonicalBody: string | null;
|
|
99
|
-
incomingBody: string;
|
|
100
|
-
amend: boolean;
|
|
101
|
-
}): 'proceed' | 'noop' | 'refuse';
|
|
102
|
-
/** A 404 from the /complete endpoint means an old server without the route. */
|
|
103
|
-
export declare function isCompleteEndpointMissing(err: unknown): boolean;
|
|
104
|
-
/**
|
|
105
|
-
* The server finalized a different task than the one we were asked to finalize.
|
|
106
|
-
*
|
|
107
|
-
* The session-scoped completion endpoint derives its task from the run claim
|
|
108
|
-
* and deliberately ignores any client-supplied id — that is what stops a
|
|
109
|
-
* compromised agent process finishing a sibling task. The corollary is that the
|
|
110
|
-
* id resolved on this side is not necessarily the one that moved, so reporting
|
|
111
|
-
* ours would print a success line (and a `--json` `taskId`) for a task that is
|
|
112
|
-
* still open.
|
|
113
|
-
*/
|
|
114
|
-
export declare class TaskCompletionMismatchError extends Error {
|
|
115
|
-
readonly requestedTaskId: string;
|
|
116
|
-
readonly completedTaskId: string;
|
|
117
|
-
constructor(requestedTaskId: string, completedTaskId: string);
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* Finalize a task durably (OSK-1969).
|
|
121
|
-
*
|
|
122
|
-
* Prefers the server's atomic POST /:taskId/complete (CAS move first, then
|
|
123
|
-
* the TASK_OUTPUT comment — no half-finished state if this process dies).
|
|
124
|
-
* Falls back to the legacy client-side two-step (comment, then move) when the
|
|
125
|
-
* server predates the endpoint (HTTP 404). `noMove` keeps the historical
|
|
126
|
-
* comment-only behavior and never touches the endpoint. All transport errors
|
|
127
|
-
* other than the endpoint-missing 404 are rethrown for the caller's uniform
|
|
128
|
-
* error handling.
|
|
129
|
-
*/
|
|
130
|
-
export declare function completeTaskDurably(opts: {
|
|
2
|
+
export declare function describePendingReview({ statusType, taskId, resultId, bin, }: {
|
|
3
|
+
statusType: unknown;
|
|
131
4
|
taskId: string;
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
deliverables: string;
|
|
136
|
-
verdict: string;
|
|
137
|
-
report?: TaskReport;
|
|
138
|
-
deliveryReceipt?: TaskDeliveryReceipt;
|
|
139
|
-
noMove: boolean;
|
|
140
|
-
transport: CompleteTransport;
|
|
141
|
-
}): Promise<DurableCompletionResult>;
|
|
5
|
+
resultId?: string;
|
|
6
|
+
bin: string;
|
|
7
|
+
}): string | null;
|
|
142
8
|
export default class TasksComplete extends BaseCommand {
|
|
143
9
|
static description: string;
|
|
144
10
|
static examples: string[];
|
|
@@ -146,21 +12,23 @@ export default class TasksComplete extends BaseCommand {
|
|
|
146
12
|
id: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>;
|
|
147
13
|
};
|
|
148
14
|
static flags: {
|
|
149
|
-
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
150
15
|
task: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
151
|
-
|
|
152
|
-
amend: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
153
|
-
status: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
16
|
+
status: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
154
17
|
summary: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
155
|
-
|
|
18
|
+
body: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
19
|
+
'conclusion-type': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
20
|
+
'conclusion-json': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
21
|
+
'structured-schema': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
22
|
+
'structured-json': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
156
23
|
deliverable: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
157
|
-
verdict: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
158
|
-
outcome: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
159
|
-
finding: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
160
24
|
evidence: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
161
|
-
|
|
162
|
-
'
|
|
25
|
+
remaining: import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
26
|
+
'source-run': import("@oclif/core/lib/interfaces").OptionFlag<string[] | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
27
|
+
'run-id': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
28
|
+
'spec-version': import("@oclif/core/lib/interfaces").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
29
|
+
'idempotency-key': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
30
|
+
'from-json': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>;
|
|
31
|
+
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
|
|
163
32
|
};
|
|
164
33
|
run(): Promise<void>;
|
|
165
34
|
}
|
|
166
|
-
export {};
|