Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jsr.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bounded-systems/door-kit",
"version": "0.5.2",
"version": "0.6.0",
"license": "PolyForm-Noncommercial-1.0.0",
"exports": {
"./keeper": "./lib/keeper.ts",
Expand Down
5 changes: 5 additions & 0 deletions lib/keeper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,10 @@ export async function push(options: PushOptions): Promise<PushResult> {

/** Options for import-and-push: the host builds commits locally (keyless) and keeperd signs the push. */
export type ImportAndPushOptions = {
/** The repo keeperd imports the bundle into and pushes from (the daemon-side
* keeper clone; path-translated like `commit`/`push` via CLAUDE_BOX_HOST_REPO).
* Required — the daemon has no implicit repo. */
repo: string;
/** Commit-range git bundle (base64) carrying the new commits the host built. */
bundleBase64: string;
/** The already-materialized commit the daemon imports as the tip and pushes. */
Expand Down Expand Up @@ -314,6 +318,7 @@ export async function importAndPush(
): Promise<ImportAndPushResult> {
return request<ImportAndPushResult>("import-and-push", {
kind: "import-and-push",
repo: translateRepoPath(options.repo),
bundleBase64: options.bundleBase64,
commitSha: options.commitSha,
branch: options.branch,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bounded-systems/door-kit",
"version": "0.5.2",
"version": "0.6.0",
"private": true,
"type": "module",
"description": "In-box door-client SDK for claude-box's capability doors (keeper/scout/concierge/spawn), over the guest-room protocol.",
Expand Down
Loading