@kynver-app/runtime 0.1.106 → 0.1.108

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.
@@ -0,0 +1,7 @@
1
+ export interface EnsureGitHubCliAuthResult {
2
+ source: "env" | "gh-cli" | "missing";
3
+ configured: boolean;
4
+ reason: string;
5
+ }
6
+ /** Mirror of server ready-pr-landing.cli-auth — resolve gh token from env or local CLI. */
7
+ export declare function ensureGitHubTokenFromCliAuth(): EnsureGitHubCliAuthResult;
@@ -0,0 +1,12 @@
1
+ import type { LandPrCompletionReport } from "./land-pr.js";
2
+ export declare function postLandPrHarnessCompletion(input: {
3
+ baseUrl: string;
4
+ secret?: string;
5
+ agentOsId: string;
6
+ runId: string;
7
+ task: Record<string, unknown>;
8
+ report: LandPrCompletionReport;
9
+ }): Promise<{
10
+ ok: boolean;
11
+ status: number;
12
+ }>;
@@ -0,0 +1,20 @@
1
+ import type { PrHandoffExec } from "../pr-handoff/pr-handoff-gh.js";
2
+ export type LandPrOutcome = "merged" | "blocked" | "skipped";
3
+ export interface LandPrCompletionReport {
4
+ prUrl: string;
5
+ outcome: LandPrOutcome;
6
+ mergeCommit?: string | null;
7
+ reason: string;
8
+ }
9
+ export interface ExecuteLandPrMergeInput {
10
+ prUrl: string;
11
+ repo?: string | null;
12
+ cwd?: string;
13
+ dryRun?: boolean;
14
+ skipNotReady?: boolean;
15
+ exec?: PrHandoffExec;
16
+ }
17
+ /**
18
+ * Daemon-local PR merge — live readiness, squash merge, branch delete, worktree cleanup.
19
+ */
20
+ export declare function executeLandPrMerge(input: ExecuteLandPrMergeInput): Promise<LandPrCompletionReport>;
@@ -0,0 +1,2 @@
1
+ /** Instruction block appended to verify_live harness dispatch tasks. */
2
+ export declare function formatVerifyLiveCompletionContract(): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kynver-app/runtime",
3
- "version": "0.1.106",
3
+ "version": "0.1.108",
4
4
  "description": "Kynver AgentOS local execution runtime and CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",