feat(orcareplay): add OrcaReplay feature - #243
Closed
xizhuomengcontin wants to merge 1 commit into
Closed
xizhuomengcontin wants to merge 1 commit into
xizhuomengcontin wants to merge 1 commit into
Conversation
Member
|
Hi @xizhuomengcontin! I have to close this PR as I don't consider OrcaReplay a core feature, please see #244 for more info |
Author
|
Completely fair — thanks for saying it plainly rather than letting it sit in the queue, and for writing #244. Reading that, the timing was just unlucky on my part: I opened this the same day you decided to scope the project down, and a per-tool feature is exactly the kind of thing you are pruning. No argument from me. Your point that specific tools belong in Good luck with the scope-down; keeping the largest feature collection alive for two years was a real service. |
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.
Adds a Dev Container Feature for OrcaReplay, an Apache-2.0 npm CLI (
orcareplay→ binaryorca, Node 20+).Tests pass in my fork before opening this
CONTRIBUTING asks for that, so here is the run:
https://github.com/xizhuomengcontin/features/actions/runs/34737655136 —
Features - Test,test (orcareplay)✅ onmcr.microsoft.com/devcontainers/base:debian.The scenario is a bare Debian base with no node feature, because
npm-packagebootstraps Node LTS itself when npm is missing — same astypescript,prettierandrenovate-clido.What the feature installs
It records an AI coding agent's session at the boundary between the agent and its model provider — from outside the agent process — and can replay that recording so the same run happens again with no provider call and no API key:
Why it fits this registry in particular:
claude-code,opencode,codename-goose-cli,codebuddy-codeandarchonare already features here, and those are exactly the CLIsorca recordwraps. A dev container is a natural place to run an agent under a recorder — the recording is a file in the workspace, so a session captured in the container can be replayed anywhere without credentials.Authoring notes
just add orcareplay;library_scripts.shis the untouched template copy.install.shis thenpm-packagehelper path, pinned tonpm-package:1.0.4— matchingcodebuddy-code, the most recently added npm-based agent CLI feature. (aws-cdkstill pins1.0.3; I followed the newer one deliberately rather than copying a stale pin.)installsAfterlists thenpm-packagehelper anddevcontainers/features/node.1.0.0;version-checker.pyskips the bump check for a feature absent from the base branch, which is the case here.test.shchecksorca --version(the binary isorca, notorcareplay— worth knowing if you review the test).src/orcareplay/README.mdfollows the generated shape of the other npm-package features.One thing I did not do: I left
on_changes_onlyfiltering and the release workflow alone, and touched no file outsidesrc/orcareplay/andtest/orcareplay/.Happy to adjust the description, the pinned helper version, or the test scenario if you would rather they match a different exemplar.