Merge feat/json-render: server crate, release workflow, CI configs#2
Closed
Merge feat/json-render: server crate, release workflow, CI configs#2
Conversation
Adds HTTP server support for mixtape agents via the AG-UI protocol, enabling integration with CopilotKit and other AG-UI compatible frontends. mixtape-server features: - SSE streaming endpoint for real-time agent events - AG-UI event mapping (RUN_STARTED, TEXT_MESSAGE_*, TOOL_CALL_*, etc.) - Interrupt endpoint for human-in-the-loop permission handling - Router builder pattern for flexible endpoint configuration mixtape-core changes: - Add HookId for hook lifecycle management (add_hook returns ID, remove_hook by ID) - Add test-utils feature with MockProvider and EventCollector for testing Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
- Add release workflow for tag-triggered GitHub releases and cargo publish - Backfill CHANGELOG entries for v0.2.0 and v0.2.1 with comparison links - Add homepage, exclude to all crate Cargo.toml publishing metadata - Add clippy, clippy-fix, coverage-ci targets to Makefile - Use exec in pre-commit hook - Add standard README badges (crates.io, docs.rs) - Add missing .gitignore patterns (*.rs.bk, *.pdb, mutants.out)
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
Merges remaining
feat/json-renderbranch content into main (the model catalog update was already merged via #1).This brings over:
.github/workflows/release.yml: Automated GitHub releases and crates.io publishing on tag pushMakefilewithcoverage-ci,clippy,clippy-fixtargets.gitignoreFollow-up
After merging, CHANGELOG.md and README.md need updating to reference mixtape-server. Then re-tag v0.3.0 on the merged main and push the tag to trigger the release workflow.