refactor: deferred architecture extractions (#202, #203, #204)#207
Merged
imran-siddique merged 3 commits intomainfrom Mar 12, 2026
Merged
refactor: deferred architecture extractions (#202, #203, #204)#207imran-siddique merged 3 commits intomainfrom
imran-siddique merged 3 commits intomainfrom
Conversation
…ts (#202) Remove 8 optional external package re-exports (agent_primitives, cmvk, caas, emk, amb_core, atr, agent_kernel, mute_agent) from the agent-os facade. Users should import these directly from their source packages. - Keep AVAILABLE_PACKAGES via lightweight __import__ checks - Fix duplicate AgentSignal import (context_budget was shadowing control_plane) - Fix stale _IATP_AVAILABLE reference in AVAILABLE_PACKAGES dict - Reduce __all__ from 134 to 82 symbols - All 2541 tests pass Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…ge (#203) Move 6 marketplace modules from agentmesh/marketplace/ into the new packages/agent-marketplace/ package with its own pyproject.toml. - Create standalone MarketplaceError (no longer inherits AgentMeshError) - Rewrite internal imports to agent_marketplace namespace - Leave backward-compat shim in agentmesh/marketplace/__init__.py - Add smoke tests (4 pass) - agent-mesh 1634 tests still pass Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…kage (#204) Move 4 RL integration modules (runner, reward, environment, emitter) from agent_os/integrations/agent_lightning/ into packages/agent-lightning/ as the agent_lightning_gov namespace. - Zero runtime dependencies on agent-os (duck-typed kernel interface) - Leave backward-compat shim in agent_os/integrations/agent_lightning/ - Add smoke tests (4 pass) - agent-os 2541 tests still pass Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Dependency ReviewThe following issues were found:
License Issuespackages/agent-marketplace/pyproject.toml
OpenSSF Scorecard
Scanned Files
|
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
Implements the 3 deferred architecture items from the naming/architecture review (PR #206).
Changes
*refactor: slim down agent-os __init__.py umbrella re-exports #202 — Slim agent-os _init_.py*
refactor: move marketplace out of agent-mesh into separate package #203 — Extract marketplace into standalone \�gent-marketplace\ package
refactor: move Agent Lightning RL integration out of agent-os core #204 — Extract Agent Lightning into standalone \�gent-lightning\ package
Tests
Closes #202, #203, #204