Skip to content

docs: clarify agentplugins quick start - #48

Merged
777genius merged 2 commits into
mainfrom
docs/clarify-agentplugins-quickstart
Aug 9, 2026
Merged

docs: clarify agentplugins quick start#48
777genius merged 2 commits into
mainfrom
docs/clarify-agentplugins-quickstart

Conversation

@777genius

@777genius 777genius commented Aug 9, 2026

Copy link
Copy Markdown
Owner

Makes the standard-first Agent Plugins CLI the default user quick start. Adds the Node.js 22 prerequisite and the exact supported platform matrix proven by the 0.1.5 release, while keeping legacy plugin-kit-ai authoring clearly separate.\n\nValidation: npm tests 26/26, README contracts, and diff check.

Summary by CodeRabbit

  • Documentation
    • Clarified which plugin manifest is portable and which is generated for OpenAI hosts.
    • Updated the Quick Start guidance for trying and authoring Agent Plugins.
    • Documented the Node.js 22+ requirement.
    • Added native bootstrap validation coverage for supported macOS, Linux, and Windows platforms and architectures.
    • Noted that unsupported environments are rejected before the binary runs.

@coderabbitai

coderabbitai Bot commented Aug 9, 2026

Copy link
Copy Markdown

Review Change Stack

Warning

Review limit reached

@777genius, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 56 minutes

You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository.

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 989006de-1de3-4fb9-84ab-d6f9b4cdc4c0

📥 Commits

Reviewing files that changed from the base of the PR and between 47f485b and 02722dc.

📒 Files selected for processing (1)
  • README.md
📝 Walkthrough

Walkthrough

The README files update plugin source and authoring guidance, replace the Quick Start command, require Node.js 22 or newer, and document release 0.1.5 bootstrap validation across supported platforms.

Changes

Documentation updates

Layer / File(s) Summary
Plugin source and Quick Start guidance
README.md
The README identifies the portable root plugin.json, the generated .codex-plugin/plugin.json, and updated installation and authoring commands.
CLI prerequisites and bootstrap validation
npm/agentplugins/README.md
The package README requires Node.js 22 or newer and documents bootstrap validation for six OS and architecture combinations. Unsupported combinations fail before binary execution.

Estimated code review effort: 2 (Simple) | ~10 minutes

Possibly related PRs

Poem

A rabbit reads the plugin guide,
“Portable paths are clear,” it cried.
Node twenty-two hops in line,
Six platforms boot and binaries shine.
context7 joins the start,
While authoring keeps its separate art.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly describes the main documentation change to the Agent Plugins quick start.
Description check ✅ Passed The description summarizes the documentation changes and verification results, but it omits the template's explicit release impact section.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch docs/clarify-agentplugins-quickstart

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@README.md`:
- Around line 134-138: Update the root README Quick Start setup before the npx
universal-agent-plugins examples to state the Node.js 22+ prerequisite, while
preserving the existing command examples and other runtime requirements.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: bb42c6b2-e314-4fdd-ade7-ece1d5bdf2c6

📥 Commits

Reviewing files that changed from the base of the PR and between 38656ef and 47f485b.

📒 Files selected for processing (2)
  • README.md
  • npm/agentplugins/README.md

Comment thread README.md
Comment on lines +134 to 138
Want to try a real Agent Plugin without installing a CLI permanently?

```bash
npx plugin-kit-ai@latest add notion
npx universal-agent-plugins add context7
```

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎯 Functional Correctness | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

rg -n -C 3 'Node\.js|Node |node|Prerequisite|universal-agent-plugins' README.md

Repository: 777genius/plugin-kit-ai

Length of output: 2659


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo '--- repo package manifests ---'
git ls-files | grep -E '(^|/)package\.json$' | sed -n '1,120p'

echo '--- universal-agent-plugins package ---'
for f in $(git ls-files | grep -E 'npm/.*/package\.json$|agentplugins/package\.json$|package\.json$'); do
  grep -l 'universal-agent-plugins\|agentplugins' "$f" || true
done

echo '--- package.json snippets ---'
fd -a 'package\.json$' . | while read -r f; do
  rel="${f#"$PWD"/}"
  echo "### $rel"
  python3 - <<'PY' "$rel"
import json, sys
path=sys.argv[1]
try:
    data=json.load(open(path))
except Exception as e:
    print(f"error: {e}")
    raise SystemExit
print({"name": data.get("name"), "version": data.get("version"), "type": data.get("type"), "engines": data.get("engines"), "scripts": list(data.get("scripts", {}).keys())})
PY
done

Repository: 777genius/plugin-kit-ai

Length of output: 3142


🌐 Web query:

npm universal-agent-plugins node >=22 README

💡 Result:

There is no single, official npm package exclusively named universal-agent-plugins that functions as a standalone standard library. Instead, the term refers to a ecosystem of tools and repositories related to the Agent Plugins standard [1][2][3]. Regarding Node.js version requirements: The repository maintained by 777genius (which uses the universal-agent-plugins catalog) specifies that its upstream components require Node.js versions ^20.19.0, ^22.12.0, or >=23 [4]. This confirms that Node.js 22 is supported, specifically at version 22.12.0 or higher [4]. Key Context: 1. Standard Definition: Agent Plugins is an open, vendor-neutral standard for packaging AI agent components (including skills and MCP servers) [3]. It is managed via repositories like the Agent Plugins specification [3] and various implementation tools [2][5]. 2. Installation: While some tools allow installation via npm (e.g., npx), it is frequently recommended to use modern, cross-platform installers like uvx or native CLI tools provided by specific agent frameworks to avoid common issues with symlinks or environment management, particularly on Windows [6][5]. 3. Repository Confusion: Several repositories use similar naming conventions (e.g., 777genius/universal-plugins-for-ai-agents, richfrem/agent-plugins-skills). Users are advised to consult the official documentation for the specific AI agent harness they are using (e.g., Claude Code, Cursor) to identify the correct plugin catalog [7][5][8]. If you are following a specific tutorial, ensure you are referencing the documentation associated with that specific repository, as installation methods and requirements may vary [5][8].

Citations:


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo '--- README Node/Prerequisite evidence ---'
sed -n '1,220p' README.md | nl -ba | sed -n '1,220p' | grep -n -E 'Node|node|Prerequisite|prerequisite|requirements|requirement|install|install node|npx universal-agent-plugins' -C 3 || true

echo '--- npm/agentplugins README Node evidence ---'
sed -n '1,200p' npm/agentplugins/README.md | nl -ba | sed -n '1,200p' | grep -n -E 'Node|node|Prerequisite|prerequisite|requirements|requirement|install node|npx universal-agent-plugins' -C 3 || true

Repository: 777genius/plugin-kit-ai

Length of output: 321


Add the Node.js prerequisite before the npx command.

universal-agent-plugins declares engines.node >=22, but the root README only mentions Node.js requirements for runtime/non-Go paths. Add Node.js 22+ to the root Quick Start setup before the npx universal-agent-plugins add context7 examples so users on Node 20 or older do not run an unsupported command path.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@README.md` around lines 134 - 138, Update the root README Quick Start setup
before the npx universal-agent-plugins examples to state the Node.js 22+
prerequisite, while preserving the existing command examples and other runtime
requirements.

@777genius
777genius merged commit 2404e01 into main Aug 9, 2026
14 checks passed
@777genius
777genius deleted the docs/clarify-agentplugins-quickstart branch August 9, 2026 20:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant