@zixt/host 0.0.52 → 0.0.54
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/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -31,7 +31,7 @@ import { homedir } from "node:os";
|
|
|
31
31
|
// package.json
|
|
32
32
|
var package_default = {
|
|
33
33
|
name: "@zixt/host",
|
|
34
|
-
version: "0.0.
|
|
34
|
+
version: "0.0.54",
|
|
35
35
|
type: "module",
|
|
36
36
|
exports: {
|
|
37
37
|
".": "./src/client.ts",
|
|
@@ -16143,7 +16143,7 @@ var TaskGitSummary = external_exports.object({
|
|
|
16143
16143
|
githubRepository: external_exports.string().regex(/^[A-Za-z0-9_.-]{1,100}\/[A-Za-z0-9_.-]{1,100}$/).optional(),
|
|
16144
16144
|
/** True only when this repository was an isolated Git worktree. */
|
|
16145
16145
|
isWorktree: external_exports.boolean().optional(),
|
|
16146
|
-
/** False means the Task used this repository
|
|
16146
|
+
/** False means the Task used this repository and its checkout no longer exists. */
|
|
16147
16147
|
available: external_exports.boolean().optional(),
|
|
16148
16148
|
/** False preserves the Task branch after a shared checkout switches back. */
|
|
16149
16149
|
checkedOut: external_exports.boolean().optional(),
|
|
@@ -18085,7 +18085,7 @@ var ConversationEventProjection = external_exports.discriminatedUnion("kind", [
|
|
|
18085
18085
|
/** A Manager loop failure a person should see (provider outage, refusal). */
|
|
18086
18086
|
external_exports.object({ ...conversationEventBase, kind: external_exports.literal("error"), message: external_exports.string() }).strict()
|
|
18087
18087
|
]);
|
|
18088
|
-
var ManagerIntegrationProvider = external_exports.enum(["slack"]);
|
|
18088
|
+
var ManagerIntegrationProvider = external_exports.enum(["slack", "github"]);
|
|
18089
18089
|
var ManagerIntegrationOperation = external_exports.enum(["connect", "reconnect", "check", "remove"]);
|
|
18090
18090
|
var ManagerIntegrationActionStatus = external_exports.enum([
|
|
18091
18091
|
"awaiting_confirmation",
|
|
@@ -36091,7 +36091,7 @@ function workspaceSystemPrompt(existing, workspacePath, siblings, gitDetected =
|
|
|
36091
36091
|
"",
|
|
36092
36092
|
"Unless the human explicitly asked you to stop for review before merging, Git work is not complete merely because files, a branch, or a pull request exist. Update from the latest default branch, resolve ordinary conflicts yourself, run the relevant validation, commit, push, open or update the pull request when the repository uses them, wait for required checks, merge it, and verify the merged state. Clean up temporary worktrees after integration. Do not strand finished work on an unmerged branch.",
|
|
36093
36093
|
"",
|
|
36094
|
-
"If repository policy, unavailable authority, an ambiguous product decision, or a
|
|
36094
|
+
"If anything prevents merge, including missing clarification or verification, tests or CI you cannot fix, a merge conflict, repository policy, unavailable authority, an ambiguous product decision, or a release-boundary gate, raise a prominent blocker immediately. Use `ask_user` with the exact blocker and required decision when a person can unblock it, and also use `message_manager` so the organization front door sees it. Start both the alert and your final report with `BLOCKED: Changes are not merged to main.` Then name the blocker and preserve the branch and pull-request references when available. Never represent an accepted delegation or open pull request as merged, and never report the Task as done while integration is pending."
|
|
36095
36095
|
);
|
|
36096
36096
|
}
|
|
36097
36097
|
if (siblings.length > 0) {
|