feat(plugins): add aixplain Marketplace and Agent Builder - #1058
Open
nurhamdan1987 wants to merge 10 commits into
Open
feat(plugins): add aixplain Marketplace and Agent Builder#1058nurhamdan1987 wants to merge 10 commits into
nurhamdan1987 wants to merge 10 commits into
Conversation
Adds a `plugins/` tree as a sibling to `skills/`, plus the first plugin:
`aixplain-marketplace`. A plugin bundles a skill together with the MCP
servers it needs, so one install gives a coding agent both the knowledge
and the live connection.
`aixplain-marketplace` wires up the first-party Marketplace Search MCP
server (tool 6960f934f316da19e5f22494, stable across environments) and
ships a `marketplace-search` skill that drives it: find agents, models,
tools, and integrations in one call, filter by category/developer/
supplier/host/function, read pricing and hosting, then turn a hit into
working code — SDK call, REST call, MCP config, or an
`aix.Agent(tools=[...])` attach block.
The skill builds snippets from each asset's real input schema
(`list_inputs_*`) rather than placeholders, and uses keyword arguments
on `run()` — verified against Cloud Translation on PROD:
aix.Model.get("66aa869f6eb56342c26057e1").run(
text="Good morning", sourcelanguage="en", targetlanguage="ar")
It also records two paths that do not work today, so an agent does not
retry them: the MCP `run_*` actions (a single `input` string cannot
express multi-field inputs) and sorting (`search` has no sort parameter,
so ordering requires paging and sorting locally). Execution is routed
through generated SDK code instead.
No secrets are committed — `.mcp.json` references ${AIXPLAIN_API_KEY}.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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.
Problem
Claude Code users cannot install aixplain marketplace search or the SDK-v2 Agent Builder from the official
aixplain/aiXplainrepository.Why it matters
Users must manually copy skills and configure integrations, making the verified marketplace and agent-building workflows harder to discover, install, and maintain.
Fix (symptoms → root cause → change)
The repository had no published Claude marketplace catalog or plugin packages on
development. This PR adds the catalog and plugin index, then packages two independently installable plugins: aixplain Marketplace for live marketplace discovery and aixplain Agent Builder for SDK-v2 agent creation, connection, deployment, verification, debugging, updates, and export. Agent Builder includes its reviewed references and reusable validation, scope, integration, and live-test utilities.Tests
aixplain==0.2.47environment.validate_sdk.py: SDK version, public constructor signatures, and inspector payload serialization passed.git diff --checkand a credential/workspace-ID scan.Manual verification
scripts/ignore rule.claude plugin validatewas not run because the Claude CLI is unavailable in this environment.