Merged
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)
Add 19 new models (30 → 49 total): - Claude Opus 4.6 (flagship, 128K output) and Opus 4.1 - Nova 2 Sonic, Mistral Ministral 3B/8B/14B, Pixtral Large, Voxtral Mini 3B/Small 24B - Qwen3 32B, Coder 30B, Next 80B, VL 235B - Gemma 3 12B/4B, DeepSeek V3.2, Kimi K2.5 Fix output token limits for Claude 3.7 Sonnet, Haiku 4.5, and Opus 4.5 (all corrected to 64K per Anthropic docs). Breaking: rename DeepSeekV3 → DeepSeekV3_1 to match actual version. Also includes mixtape-server (experimental) with AG-UI protocol support, and version bump to 0.3.0.
* 'main' of github.com:adlio/mixtape: feat: release 0.3.0 — comprehensive model catalog update # Conflicts: # CHANGELOG.md
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3 +/- ##
==========================================
- Coverage 88.64% 88.61% -0.04%
==========================================
Files 100 101 +1
Lines 22839 23016 +177
==========================================
+ Hits 20246 20395 +149
- Misses 2593 2621 +28 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Allow 1% project coverage drop and 80% patch target. Exclude experimental mixtape-server from coverage checks.
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.gitignoreTest plan
cargo fmt --all -- --checkpassescargo clippy --workspace --all-targets --all-featurespassescargo build --workspace --all-targets --all-featurespassescargo nextest run --workspace --all-features)