@zixt/host 0.0.53 → 0.0.55

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.
Files changed (2) hide show
  1. package/dist/index.js +12 -3
  2. 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.53",
34
+ version: "0.0.55",
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, then removed its checkout after integration. */
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(),
@@ -19659,6 +19659,15 @@ var RetryGithubAppRemovalRequest = external_exports.object({
19659
19659
  installationId: GithubInstallationId
19660
19660
  }).strict();
19661
19661
 
19662
+ // ../../packages/contracts/src/browser-oauth.ts
19663
+ var GithubAppSlug = external_exports.string().regex(/^[a-z0-9](?:[a-z0-9-]{0,98}[a-z0-9])?$/);
19664
+ var BrowserOAuthConfig = external_exports.object({
19665
+ /** Exact origin a provider callback posts its result back from. */
19666
+ callbackOrigin: HttpOrigin2.nullable(),
19667
+ /** Slug of the GitHub App this cloud installs; null when GitHub is unconfigured. */
19668
+ githubAppSlug: GithubAppSlug.nullable()
19669
+ }).strict();
19670
+
19662
19671
  // ../../packages/contracts/src/platform.ts
19663
19672
  var JournalEntry = external_exports.object({
19664
19673
  id: external_exports.string(),
@@ -36091,7 +36100,7 @@ function workspaceSystemPrompt(existing, workspacePath, siblings, gitDetected =
36091
36100
  "",
36092
36101
  "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
36102
  "",
36094
- "If repository policy, unavailable authority, an ambiguous product decision, or a conflict you cannot safely resolve prevents completion, use `ask_user` with the exact blocker and required decision. Do not report the Task as done while integration is still pending."
36103
+ "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
36104
  );
36096
36105
  }
36097
36106
  if (siblings.length > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zixt/host",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./src/client.ts",