Add durable extension client methods - #56
Open
IlyaasK wants to merge 1 commit into
Open
Conversation
IlyaasK
requested review from
Sayan- and
tnsardesai
and removed request for
Sayan- and
tnsardesai
July 11, 2026 03:29
IlyaasK
force-pushed
the
hypeship/extension-schema-model
branch
from
July 13, 2026 13:34
ffc4199 to
96b446b
Compare
IlyaasK
force-pushed
the
hypeship/extension-client-crud
branch
from
July 13, 2026 13:34
a5e67a0 to
5a68610
Compare
IlyaasK
force-pushed
the
hypeship/extension-schema-model
branch
from
July 13, 2026 14:32
96b446b to
9f6a486
Compare
IlyaasK
force-pushed
the
hypeship/extension-client-crud
branch
2 times, most recently
from
July 13, 2026 15:39
770d29a to
c77fb07
Compare
IlyaasK
force-pushed
the
hypeship/extension-schema-model
branch
from
July 13, 2026 15:39
9f6a486 to
c82fb95
Compare
IlyaasK
force-pushed
the
hypeship/extension-schema-model
branch
from
July 20, 2026 19:38
c82fb95 to
e55300c
Compare
IlyaasK
force-pushed
the
hypeship/extension-client-crud
branch
3 times, most recently
from
July 21, 2026 18:10
88de2e6 to
4b9da7f
Compare
IlyaasK
force-pushed
the
hypeship/extension-schema-model
branch
from
July 21, 2026 19:51
13eafa5 to
a6bc3cf
Compare
IlyaasK
force-pushed
the
hypeship/extension-client-crud
branch
from
July 21, 2026 19:51
4b9da7f to
1c82564
Compare
IlyaasK
force-pushed
the
hypeship/extension-schema-model
branch
from
July 21, 2026 20:15
a6bc3cf to
598f3b6
Compare
IlyaasK
force-pushed
the
hypeship/extension-client-crud
branch
from
July 21, 2026 20:15
1c82564 to
2daf666
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
internal/kernelclientWhy this is v1 work
This is the thin durable SDK boundary needed by the planned
kernel_extensionresource. It adds no Terraform resource registration or lifecycle behavior yet, keeping the stacked change independently reviewable.Intentionally unsupported
Verification
gofmt -l cmd internalgo test -count=20 ./internal/kernelclientgo test -race -count=1 ./internal/kernelclientgo test -count=1 -short -timeout=2m ./...go vet ./...go mod verifygo mod tidy -diffterraform fmt -check -recursive examplesbash scripts/check-docs.shbash scripts/check-examples.shbash scripts/check-markdown-links.shgit diff --check HEADNo live acceptance test is needed for this client-boundary slice; request behavior is verified with an in-process HTTP transport.
Note
Low Risk
Client-wrapper and test-only changes with no Terraform resources or auth/data-path changes; mutation no-retry behavior matches existing patterns.
Overview
Adds project-scoped extension upload and delete on
internal/kernelclient.Clients, mirroring other durable mutations (e.g. browser pools).UploadExtensionposts to/extensionswithExtensionUploadParams;DeleteExtensiondeletes/extensions/{id}. Both usescope(projectID, noMutationRetries())so ambiguous failures cannot trigger duplicate uploads or repeated deletes.Extends the mutation contract table test for method, path, project header, retry count
0, and single-request behavior. Adds a reflect test thatDownloadExtensionandDownloadExtensionFromChromeStoreare not exposed onClients, keeping archive/Chrome Web Store download off this boundary for the plannedkernel_extensionresource slice.Reviewed by Cursor Bugbot for commit 2daf666. Bugbot is set up for automated code reviews on this repo. Configure here.