feat(plugins): add aixplain-marketplace Claude Code plugin - #1057
Closed
nurhamdan1987 wants to merge 1 commit into
Closed
feat(plugins): add aixplain-marketplace Claude Code plugin#1057nurhamdan1987 wants to merge 1 commit into
nurhamdan1987 wants to merge 1 commit 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>
nurhamdan1987
requested review from
ayberkjs and
hadi-aix
and removed request for
hadi-aix
August 18, 2026 21:28
Collaborator
Author
|
Superseded by the combined Marketplace and Agent Builder PR: #1058 |
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.
Adds a
plugins/tree as a sibling toskills/, 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:
What it does
Wires up the first-party Marketplace Search MCP server (tool
6960f934f316da19e5f22494, stable across environments) and ships amarketplace-searchskill 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 anaix.Agent(tools=[...])attach block.The skill builds snippets from each asset's real input schema via
list_inputs_*rather than emitting placeholders, and uses keyword arguments onrun(). Verified against Cloud Translation on PROD:Known-broken paths are documented, not retried
Two things do not work today, and the skill says so explicitly so an agent does not waste calls on them:
run_*actions — a singleinputstring cannot express multi-field inputs. Execution is routed through generated SDK code instead.searchhas no sort parameter, so "cheapest" requires paging the filtered set and sorting locally.Both are filed separately with reproductions.
Notes for review
.mcp.jsonreferences${AIXPLAIN_API_KEY}.SKILL.mdto~/.claude/skills/) for clients that read skills but not Claude Code plugins. The plugin README documents the Codex and Claude Desktop config too.skills/README.mdsays to open PRs intomain; this one targetsdevelopmentas requested. Say if it should be retargeted.🤖 Generated with Claude Code