Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix prepared a fix for the issue found in the latest run.
- ✅ Fixed:
docker-basetarget is now identical todocker- Removed the redundant docker-base target which was identical to the docker target and not referenced anywhere else in the codebase.
Or push these changes by commenting:
@cursor push d973df12c2
Preview (d973df12c2)
diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -83,14 +83,6 @@
@cd docker && make docker-build
@cd docker && make docker-run
-.PHONY: docker-base
-docker-base: ## Build and run the Docker container
- @echo "🚀 Building lib packages..."
- @make full-dist
- @echo "🚀 Building Docker image"
- @cd docker && make docker-build
- @cd docker && make docker-run
-
.PHONY: publish-ghcr
publish-ghcr: ## Publish to the GHCR
@cd docker && make publish-ghcr
Member
Author
Applied via @cursor push command
jottakka
approved these changes
Feb 26, 2026
Contributor
|
I like this one! |
byrro
approved these changes
Feb 26, 2026
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.

These are being moved to monorepo. This repository already has plenty of examples at
examples/mcp_servers/Sister PR: https://github.com/ArcadeAI/monorepo/pull/449
Note
Medium Risk
Primarily repo/CI/build wiring changes with large deletions; risk is mainly broken workflows or missing packaging/build steps due to removed toolkit-specific logic.
Overview
Removes the
toolkits/packages (code, tests, evals, and per-toolkit configs) as they’re being moved to a separate monorepo.Simplifies automation accordingly: the
setup-uv-envcomposite action no longer has toolkit/contrib/lib modes or working-directory handling and always runs a singleuv sync,release-on-version-changestops passing toolkit flags and no longer skips toolkit tests, and the rootMakefiledrops toolkit install/check/test/build/dist/clean targets plus collapses GHCR publishing to a single flow.Written by Cursor Bugbot for commit ca9e4aa. This will update automatically on new commits. Configure here.