Conversation
Add root plugin.json and mcp.json so clients that implement the open Agent Plugins standard can discover skills and the stdio MCP server without harness-specific manifests. Keep Claude/Codex packages as additive compatibility layers, honor PLUGIN_ROOT/PLUGIN_DATA in the launcher, and lock the portable version into release bump verification.
Address Sol/xhigh adversarial findings: drop tomllib so 3.10 CI can collect tests, verify manifests before pushing release tags, lock schema URL rewrites, and cover version-selector + local-fallback cases.
crmapj
marked this pull request as ready for review
August 6, 2026 18:40
CI pre-commit failed because ruff-format rewrote tests/test_agent_plugins.py.
nmartorell
reviewed
Aug 7, 2026
| "command": "sh", | ||
| "args": ["${PLUGIN_ROOT}/bin/launcher.sh"], | ||
| "env": { | ||
| "UV_CACHE_DIR": "${PLUGIN_DATA}/uv-cache" |
Contributor
There was a problem hiding this comment.
@crmapj do we not need the env vars that are present in the Codex/Claude plugin jsons?
Contributor
There was a problem hiding this comment.
Checked - this isn't supported by the Agent Plugin standard atm.
Contributor
|
@hanneshapke would you be able to review the changes to bump.yml, RELEASE.md and pyproject.toml? |
nmartorell
force-pushed
the
agent/agent-plugins-standard
branch
from
August 17, 2026 22:04
f4a79f1 to
1e27d17
Compare
2 tasks
Add root plugin.json and mcp.json so clients that implement the open Agent Plugins standard can discover skills and the stdio MCP server without harness-specific manifests. Keep Claude/Codex packages as additive compatibility layers, honor PLUGIN_ROOT/PLUGIN_DATA in the launcher, and lock the portable version into release bump verification.
Address Sol/xhigh adversarial findings: drop tomllib so 3.10 CI can collect tests, verify manifests before pushing release tags, lock schema URL rewrites, and cover version-selector + local-fallback cases.
CI pre-commit failed because ruff-format rewrote tests/test_agent_plugins.py.
7 tasks
…' into pr-91 # Conflicts: # AGENTS.md
…to pr-91 # Conflicts: # AGENTS.md # CODING_STANDARDS_AND_STRUCTURE.md # README.md # mcp.json # plugin.json # tests/test_agent_plugins.py
ludwigehlert-gif
force-pushed
the
agent/agent-plugins-standard
branch
2 times, most recently
from
September 14, 2026 21:36
c0e11c1 to
d1cb7e2
Compare
ludwigehlert-gif
added a commit
that referenced
this pull request
Sep 14, 2026
Kiro's IDE installs Agent Plugins v1.0.0 packages as powers, so make the
repository root one: root plugin.json and mcp.json alongside the existing
skills/. Kiro copies the whole package to ~/.kiro/powers/<name>/ minus .git,
so ${PLUGIN_ROOT}/runtime/run_mcp.py resolves after install. ${PLUGIN_ROOT} is
expanded in args and cwd but never in command, so the command stays a plain
PATH lookup.
Keep .kiro/settings/mcp.json for Kiro CLI, which has no power install and no
skill loader: it reads the workspace MCP config and takes context from
steering and AGENTS.md instead.
Add the portable manifest to Commitizen version_files with a "version" key
selector; the plain form rewrites the 1.0.0 schema URLs once [project].version
reaches 1.0.0.
Note: root plugin.json, mcp.json and tests/test_agent_plugins.py duplicate #91,
which ships the same portable package. Whichever lands first makes the other a
trivial resolution.
ludwigehlert-gif
added a commit
that referenced
this pull request
Sep 15, 2026
The Kiro IDE installs Agent Plugins v1.0.0 packages as powers, so make the
repository root one: root plugin.json and mcp.json alongside the existing
skills/. Kiro copies the whole package to ~/.kiro/powers/<name>/ minus .git,
so ${PLUGIN_ROOT}/runtime/run_mcp.py resolves after install. ${PLUGIN_ROOT} is
expanded in args and cwd but never in command, so the command stays a plain
PATH lookup.
Kiro CLI is out of scope: it has no power install and no skill loader.
Add the portable manifest to Commitizen version_files with a "version" key
selector; the plain form rewrites the 1.0.0 schema URLs once [project].version
reaches 1.0.0.
Note: root plugin.json, mcp.json and tests/test_agent_plugins.py duplicate #91,
which ships the same portable package. Whichever lands first makes the other a
trivial resolution.
ludwigehlert-gif
added a commit
that referenced
this pull request
Sep 15, 2026
Stacked on #91, which ships the portable Agent Plugins package. Kiro's IDE installs that package as a power, so this adds only what is Kiro-specific. - README: how to install the power, where Kiro puts it, and that Kiro CLI cannot install one. Record that Kiro passes only HOME, PATH, SHELL, TERM, USER and LOGNAME to an MCP subprocess, so shell exports of DKU_DSS_URL / DKU_API_KEY never reach the server and ~/.dataiku/config.json is the path that works. - plugin.json: add displayName so the Powers panel shows a real name, and narrow keywords to dataiku and cobuild — Kiro activates a power on keyword match, and mcp/agent are broad enough to trigger it on unrelated work. - Allow displayName in the manifest contract test; Kiro's loader accepts it.
This was referenced Sep 18, 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.
Summary
Adds portable Agent Plugins v1.0.0 packaging so any conforming client can load this repo as a plugin without harness-specific manifests.
plugin.json+ rootmcp.json(stdiodataiku→sh ${PLUGIN_ROOT}/bin/launcher.sh) + existingskills/.claude-plugin/,.codex-plugin/, and.mcp.jsonas parallel legacy packaging (not reverse-domain Agent Plugins extensions)PLUGIN_ROOT/PLUGIN_DATA, fall back to Claude vars, then local checkout.deps/plugin.jsonin Commitizenversion_files(version-key selector so schema1.0.0URLs are not rewritten) and bump.yml verificationpush: false, verify manifests +$schemaURLs, then push commit/tagsHow we ship plugins today vs after this PR
.claude-plugin/.codex-plugin/.mcp.jsonplugin.json+mcp.json+skills/Reviews
Adversarial review — GPT-5.6 Sol @ xhigh (cbrain job
414bbe8c-…)Verdict on first pass: REQUEST CHANGES. Findings addressed in the follow-up commit:
tomllibimport breaks Python 3.10 CI collectionimportlib.metadata.versioninsteadpush: false→ verify → explicit push~/.dataiku, notPLUGIN_DATAPLUGIN_DATAshSpec checklist from Sol: portable manifest, skills discovery, closed stdio MCP, placeholders, reserved env names, schema-version match — Pass. Release atomicity and partial PLUGIN_DATA state were the only fail/partial items; atomicity is fixed, credential path is deferred.
Thermo-nuclear code quality review
Thermonuclear verdict: approve structure as-is for an additive packaging PR; no restructure required before merge.
Test plan
uv run pytest(161 passed)uv run pytest tests/test_agent_plugins.pysh -n bin/launcher.shuv run ruff check tests/test_agent_plugins.pyuv run cz check --rev-range origin/main..HEADResidual risks (not blocking)
~/.dataiku/config.jsonrather than${PLUGIN_DATA}/config.json. Uninstall does not remove profiles. Follow-up if portable clients need sandboxed lifecycle-bound config..claude-plugin/, etc.). Intentional parallel packaging until those clients load root Agent Plugins natively.sh, matching existing Claude/Codex launchers.