This repository packages the RTK command-rewrite tool as an Ora
Hook Plugin .orax artifact. It is the build-and-release host for the
official/rtk-ai.rtk marketplace listing; the marketplace repository itself only carries the
listing, README, and logo.
- RTK
v0.45.0Windows x86_64 executable (rtk.exe), downloaded and SHA-256 verified from the upstreamrtk-ai/rtkv0.45.0 release. - The Ora
orax.tomlinstalled manifest declaringkind = "hook"and thex86_64-pc-windows-msvcartifact target. - The immutable
assets/config.jsonHook Configuration declaring thertk-rewrite-v1protocol, the barertkcommand alias, the package-relative executable, and the embedded tool version. - The upstream Apache-2.0
LICENSE, a user-facingREADME.md, and a safe SVGlogo.svg.
The package contains no main.js, no RTK source, and no Rust toolchain: installation never
executes the payload, and runnability is proven by this repository's release workflow and isolated
end-to-end tests.
The release workflow (.github/workflows/release.yml) is pinned to:
- Upstream RTK tag:
v0.45.0 - Upstream commit:
b34be37caf3796b69a50952a28e60e32b5daad43 - Upstream asset:
rtk-x86_64-pc-windows-msvc.zip - Upstream asset SHA-256:
34cea9009a8099acdaf85147b971d95f65efabfa63fb3aea7d3e2b73e6f517c3
It downloads and verifies the upstream archive, extracts rtk.exe, assembles the .orax zip
from the immutable declaration files plus the executable, computes the final .orax SHA-256,
runs Windows smoke tests on the exact produced archive, and only then publishes the release.
{
"schemaVersion": 1,
"hook": {
"protocol": "rtk-rewrite-v1",
"executable": "assets/rtk.exe",
"command": "rtk",
"toolVersion": "0.45.0"
}
}The Hook Plugin version is 0.1.0, independent from the embedded RTK tool version 0.45.0.
RTK 0.45.0 stores local command-tracking data in a SQLite database and does not honor its
declared tracking-disable setting. This Hook is inert in the installation-only milestone, but a
future Agent Plugin consumer must redirect RTK's database to Ora-managed data, disable tee and
telemetry, and disclose the local retention of original commands and project paths.