@h-rig/cli-surface-plugin 0.0.6-alpha.157 → 0.0.6-alpha.158
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/dist/src/app/drone-ui.d.ts +0 -11
- package/dist/src/app/drone-ui.js +0 -114
- package/dist/src/commands/_async-ui.d.ts +1 -1
- package/dist/src/commands/_cli-format.d.ts +0 -29
- package/dist/src/commands/_cli-format.js +59 -113
- package/dist/src/commands/_connection-state.d.ts +6 -33
- package/dist/src/commands/_connection-state.js +654 -138
- package/dist/src/commands/_doctor-checks.d.ts +2 -5
- package/dist/src/commands/_doctor-checks.js +10 -9
- package/dist/src/commands/_help-catalog.d.ts +2 -1
- package/dist/src/commands/_help-catalog.js +654 -7
- package/dist/src/commands/_inprocess-services.d.ts +5 -5
- package/dist/src/commands/_inprocess-services.js +1 -1
- package/dist/src/commands/_parsers.js +651 -12
- package/dist/src/commands/_paths.d.ts +0 -2
- package/dist/src/commands/_paths.js +2 -10
- package/dist/src/commands/_pi-install.d.ts +2 -12
- package/dist/src/commands/_pi-install.js +3 -36
- package/dist/src/commands/_policy.js +659 -20
- package/dist/src/commands/agent.d.ts +1 -1
- package/dist/src/commands/agent.js +675 -24
- package/dist/src/commands/config.d.ts +1 -1
- package/dist/src/commands/config.js +656 -21
- package/dist/src/commands/dist.d.ts +1 -1
- package/dist/src/commands/dist.js +828 -102
- package/dist/src/commands/doctor.d.ts +1 -1
- package/dist/src/commands/doctor.js +658 -12
- package/dist/src/commands/github.d.ts +1 -1
- package/dist/src/commands/github.js +658 -19
- package/dist/src/commands/inbox.d.ts +12 -8
- package/dist/src/commands/inbox.js +741 -22
- package/dist/src/commands/init.d.ts +17 -19
- package/dist/src/commands/init.js +836 -306
- package/dist/src/commands/inspect.d.ts +5 -6
- package/dist/src/commands/inspect.js +754 -42
- package/dist/src/commands/pi.d.ts +1 -1
- package/dist/src/commands/pi.js +655 -16
- package/dist/src/commands/plugin.d.ts +9 -9
- package/dist/src/commands/plugin.js +652 -13
- package/dist/src/commands/profile-and-review.d.ts +1 -1
- package/dist/src/commands/profile-and-review.js +655 -16
- package/dist/src/commands/queue.d.ts +1 -1
- package/dist/src/commands/queue.js +871 -12
- package/dist/src/commands/remote-client.d.ts +152 -0
- package/dist/src/commands/remote-client.js +475 -0
- package/dist/src/commands/remote.d.ts +1 -1
- package/dist/src/commands/remote.js +1100 -29
- package/dist/src/commands/repo-git-harness.d.ts +1 -1
- package/dist/src/commands/repo-git-harness.js +2321 -47
- package/dist/src/commands/run.d.ts +10 -6
- package/dist/src/commands/run.js +830 -50
- package/dist/src/commands/server.d.ts +1 -1
- package/dist/src/commands/server.js +649 -11
- package/dist/src/commands/setup.d.ts +2 -2
- package/dist/src/commands/setup.js +829 -18
- package/dist/src/commands/stats.d.ts +2 -4
- package/dist/src/commands/stats.js +1299 -20
- package/dist/src/commands/test.d.ts +1 -1
- package/dist/src/commands/test.js +648 -9
- package/dist/src/commands/triage.d.ts +2 -3
- package/dist/src/commands/triage.js +657 -11
- package/dist/src/commands/workspace.d.ts +1 -1
- package/dist/src/commands/workspace.js +1280 -15
- package/dist/src/control-plane/agent-binary-build.d.ts +9 -0
- package/dist/src/control-plane/agent-binary-build.js +88 -0
- package/dist/src/control-plane/embedded-native-assets.d.ts +7 -0
- package/dist/src/control-plane/embedded-native-assets.js +6 -0
- package/dist/src/control-plane/guard.d.ts +17 -0
- package/dist/src/control-plane/guard.js +684 -0
- package/dist/src/control-plane/harness-cli.d.ts +12 -0
- package/dist/src/control-plane/harness-cli.js +1623 -0
- package/dist/src/control-plane/native/git-ops.d.ts +67 -0
- package/dist/src/control-plane/native/git-ops.js +1381 -0
- package/dist/src/control-plane/native/github-auth-env.d.ts +1 -0
- package/dist/src/control-plane/native/github-auth-env.js +21 -0
- package/dist/src/control-plane/native/host-git.d.ts +4 -0
- package/dist/src/control-plane/native/host-git.js +51 -0
- package/dist/src/control-plane/priority-queue.d.ts +22 -0
- package/dist/src/control-plane/priority-queue.js +212 -0
- package/dist/src/control-plane/rigfig.d.ts +9 -0
- package/dist/src/control-plane/rigfig.js +70 -0
- package/dist/src/control-plane/scope.d.ts +3 -0
- package/dist/src/control-plane/scope.js +58 -0
- package/dist/src/control-plane/setup-status.d.ts +44 -0
- package/dist/src/control-plane/setup-status.js +164 -0
- package/dist/src/control-plane/task-data.d.ts +2 -0
- package/dist/src/control-plane/task-data.js +12 -0
- package/dist/src/control-plane/workspace-ops.d.ts +79 -0
- package/dist/src/control-plane/workspace-ops.js +639 -0
- package/dist/src/help-catalog-data.d.ts +7 -0
- package/dist/src/help-catalog-data.js +660 -0
- package/dist/src/kernel-dispatch.js +1 -3
- package/dist/src/plugin.js +10072 -30
- package/dist/src/runner.d.ts +7 -9
- package/dist/src/runner.js +750 -30
- package/package.json +12 -13
- package/dist/src/commands/_json-output.d.ts +0 -11
- package/dist/src/commands/_json-output.js +0 -54
- package/dist/src/commands/_pi-frontend.d.ts +0 -35
- package/dist/src/commands/_pi-frontend.js +0 -64
- package/dist/src/commands/_run-driver-helpers.d.ts +0 -26
- package/dist/src/commands/_run-driver-helpers.js +0 -132
- package/dist/src/commands/task-run-driver.d.ts +0 -93
- package/dist/src/commands/task-run-driver.js +0 -136
- package/dist/src/commands/task.d.ts +0 -46
- package/dist/src/commands/task.js +0 -555
- package/dist/src/provider-model.d.ts +0 -34
- package/dist/src/provider-model.js +0 -56
- package/dist/src/rig-config-package-deps.d.ts +0 -10
- package/dist/src/rig-config-package-deps.js +0 -272
- package/dist/src/version.d.ts +0 -8
- package/dist/src/version.js +0 -47
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
export declare function shouldScopeGitCommit(args: string[], hasTaskContext: boolean): boolean;
|
|
2
|
+
export declare function gitStatus(projectRoot: string, taskId?: string): void;
|
|
3
|
+
export declare function gitChanged(projectRoot: string, taskId: string | undefined, scoped: boolean): string[];
|
|
4
|
+
export declare function gitPreflight(projectRoot: string, taskId: string | undefined, strict: boolean): boolean;
|
|
5
|
+
export declare function gitSyncBranch(projectRoot: string, taskId?: string, targetRepo?: "monorepo" | "project"): void;
|
|
6
|
+
export declare function gitCommit(options: {
|
|
7
|
+
projectRoot: string;
|
|
8
|
+
taskId?: string;
|
|
9
|
+
target: "monorepo" | "project" | "both";
|
|
10
|
+
message?: string;
|
|
11
|
+
allowEmpty: boolean;
|
|
12
|
+
scoped?: boolean;
|
|
13
|
+
}): void;
|
|
14
|
+
export declare function gitSnapshot(projectRoot: string, taskId?: string, outputPath?: string): string;
|
|
15
|
+
type ReviewerSource = "flag" | "task-config" | "changed-files" | "env";
|
|
16
|
+
export type GitOpenPrOptions = {
|
|
17
|
+
projectRoot: string;
|
|
18
|
+
taskId?: string;
|
|
19
|
+
target?: "monorepo" | "project";
|
|
20
|
+
reviewer?: string;
|
|
21
|
+
base?: string;
|
|
22
|
+
title?: string;
|
|
23
|
+
body?: string;
|
|
24
|
+
draft?: boolean;
|
|
25
|
+
};
|
|
26
|
+
export type GitOpenPrResult = {
|
|
27
|
+
url: string;
|
|
28
|
+
reviewer?: string;
|
|
29
|
+
reviewerSource?: ReviewerSource;
|
|
30
|
+
target: "monorepo" | "project";
|
|
31
|
+
repoLabel: string;
|
|
32
|
+
branch: string;
|
|
33
|
+
base: string;
|
|
34
|
+
};
|
|
35
|
+
export type GitMergePrOptions = {
|
|
36
|
+
projectRoot: string;
|
|
37
|
+
pr: GitOpenPrResult;
|
|
38
|
+
method?: "squash" | "merge" | "rebase";
|
|
39
|
+
deleteBranch?: boolean;
|
|
40
|
+
/** Raw 40-char head SHA the merge must match (derived upstream by the lifecycle gate). */
|
|
41
|
+
matchHeadCommit: string;
|
|
42
|
+
};
|
|
43
|
+
export type GitMergePrResult = {
|
|
44
|
+
status: "already-merged" | "merged";
|
|
45
|
+
url: string;
|
|
46
|
+
};
|
|
47
|
+
export declare function gitOpenPr(options: GitOpenPrOptions): GitOpenPrResult;
|
|
48
|
+
export declare function resolveTaskBranchRef(projectRoot: string, taskId: string): string;
|
|
49
|
+
export declare function gitMergePr(options: GitMergePrOptions): GitMergePrResult;
|
|
50
|
+
export declare function readPrMetadata(projectRoot: string, taskId: string): GitOpenPrResult[];
|
|
51
|
+
declare function readChangedFilesManifest(projectRoot: string, taskId: string): string[];
|
|
52
|
+
declare function refreshChangedFilesManifest(projectRoot: string, taskId: string): string;
|
|
53
|
+
declare function buildStageAddArgs(repoRoot: string, files: string[], scoped: boolean): string[] | null;
|
|
54
|
+
declare function resolveScopedStageFilesForRepo(projectRoot: string, repoRoot: string, taskId: string | undefined, files: string[]): string[];
|
|
55
|
+
declare function resolveScopedFilesForRepo(projectRoot: string, repoRoot: string, files: string[]): string[];
|
|
56
|
+
declare function resolveChangedTaskArtifactFiles(projectRoot: string, repoRoot: string, taskId: string): string[];
|
|
57
|
+
declare function stageExcludePathspecs(repoRoot: string): string[];
|
|
58
|
+
export declare const __testOnly: {
|
|
59
|
+
buildStageAddArgs: typeof buildStageAddArgs;
|
|
60
|
+
refreshChangedFilesManifest: typeof refreshChangedFilesManifest;
|
|
61
|
+
readChangedFilesManifest: typeof readChangedFilesManifest;
|
|
62
|
+
resolveChangedTaskArtifactFiles: typeof resolveChangedTaskArtifactFiles;
|
|
63
|
+
resolveScopedStageFilesForRepo: typeof resolveScopedStageFilesForRepo;
|
|
64
|
+
resolveScopedFilesForRepo: typeof resolveScopedFilesForRepo;
|
|
65
|
+
stageExcludePathspecs: typeof stageExcludePathspecs;
|
|
66
|
+
};
|
|
67
|
+
export {};
|