refactor: ecosystem surfaces — publish prep, transcript format spec (slice I)#533
Open
CSRessel wants to merge 1 commit into
Open
refactor: ecosystem surfaces — publish prep, transcript format spec (slice I)#533CSRessel wants to merge 1 commit into
CSRessel wants to merge 1 commit into
Conversation
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
…slice I) Prepare the Layer-0 crates for eventual crates.io publication and document the transcript format for external ACP/harness-ecosystem builders, per docs/specs/crate-layering.md slice I: - nori-acp-host, mock-acp-agent: add description/license/repository/ keywords/categories metadata (workspace gains a repository key). Actual publication is deferred: the workspace dep tree is unpublished and publishing is a user-gated action. - docs/reference/transcript-format.md: the on-disk session transcript format (nori home layout, JSONL envelope, all seven entry types with examples, compatibility rules), verified against harness/src/transcript. - delete mock-acp-agent/Cargo.lock — tracked since the workspace rename but unused; workspace members resolve from the root lock. - delete the deprecated discover_transcript_for_agent stub (always returned NoSessionsFound, zero callers) and its re-export. - fix transcript/project.rs doc comments that claimed project ids are SHA-256 — the implementation uses DefaultHasher; the format doc documents ids as opaque. Headless exec/RPC mode from the slice-I design row is deferred: it is a new feature, not logic-preserving cleanup, and this train is constrained to the latter. Validation: full workspace suite green; tui-pty-e2e green (23 suites); elizacp close-the-loop TUI drive green; just fmt + just fix clean. Part of the crate-layering refactor (docs/specs/crate-layering.md). 🤖 Generated with [Nori](https://noriagentic.com) Co-Authored-By: Nori <contact@tilework.tech>
f95f618 to
79b0926
Compare
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
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.
Slice I (final) of the crate-layering refactor (design doc). Stacked on #532 (harness rename).
What
nori-acp-hostandmock-acp-agentgaindescription/license/repository/keywords/categories; the workspace gains arepositorykey. Actual crates.io publication is deferred —cargo publish --dry-runconfirms the workspace dep tree (codex-protocol, codex-rmcp-client, nori-config) must publish first, and publishing is an outward-facing action for a human to trigger.docs/reference/transcript-format.md— the on-disk session transcript format for external builders: nori-home layout, the JSONL envelope, all seven entry types with example objects, and the actual compatibility rules (unknown fields ignored, unknown/corrupt lines skipped, first line must besession_meta). Verified againstharness/src/transcript/.mock-acp-agent/Cargo.lock(tracked since the workspace rename, unused — members resolve from the root lock); deleted the deprecateddiscover_transcript_for_agentstub (always errored, zero callers); fixedtranscript/project.rsdoc comments that claimed project ids are SHA-256 (the implementation usesDefaultHasher— the format doc documents ids as opaque).Net −659 lines.
Deferred from the slice-I design row
Validation
tui-pty-e2egreen (23 suites).just fmt,just fix -p nori-harnessclean.