Skip to content

Update skills README#38

Merged
khaliqgant merged 7 commits into
mainfrom
codex/update-skills-readme
May 13, 2026
Merged

Update skills README#38
khaliqgant merged 7 commits into
mainfrom
codex/update-skills-readme

Conversation

@khaliqgant
Copy link
Copy Markdown
Member

Summary

  • Refresh the top-level README to match current skills, slash commands, and plugin contents
  • Document scoped prpm package installs as @agent-relay/${skillName}
  • Add direct npx skills add examples for repo-based skill installs

Verification

  • Ran README manifest/link consistency check against prpm.json

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 13, 2026

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: ccd890a5-afd5-471c-b71c-2d12167f35e8

📥 Commits

Reviewing files that changed from the base of the PR and between 4ad6f01 and c3d51f0.

📒 Files selected for processing (9)
  • .claude-plugin/marketplace.json
  • README.md
  • plugins/claude-relay-plugin/.claude-plugin/plugin.json
  • plugins/claude-relay-plugin/package.json
  • plugins/claude-relay-plugin/skills/relay-fanout/SKILL.md
  • plugins/claude-relay-plugin/skills/relay-pipeline/SKILL.md
  • plugins/claude-relay-plugin/skills/relay-team/SKILL.md
  • prpm.json
  • skills/openclaw-orchestrator/SKILL.md
✅ Files skipped from review due to trivial changes (8)
  • plugins/claude-relay-plugin/skills/relay-fanout/SKILL.md
  • prpm.json
  • skills/openclaw-orchestrator/SKILL.md
  • plugins/claude-relay-plugin/skills/relay-team/SKILL.md
  • plugins/claude-relay-plugin/package.json
  • .claude-plugin/marketplace.json
  • plugins/claude-relay-plugin/.claude-plugin/plugin.json
  • README.md

📝 Walkthrough

Walkthrough

README rewritten as a structured catalog (published skills, slash commands, plugin, install guidance, repo layout). Multiple manifests and skill docs updated to use the agentrelay.com domain instead of agentrelay.dev.

Changes

Docs and domain metadata updates

Layer / File(s) Summary
Project overview and Published Skills
README.md
Introduction replaced with package metadata and a Published Skills table listing skills, versions, and descriptions.
Slash Commands and Claude Relay Plugin
README.md
Added a Slash Commands table and a Claude Relay Plugin section with marketplace install instructions.
Install Packages and agent-relay-starter
README.md
Expanded Install Packages with scoped prpm installs, skills add from GitHub, and agent-relay-starter collection instructions and included packages.
Repository Layout and Links
README.md
Added Repository Layout section enumerating key directories/files and simplified Links to the Agent Relay website only.
Marketplace and plugin manifest updates
.claude-plugin/marketplace.json, plugins/claude-relay-plugin/.claude-plugin/plugin.json, plugins/claude-relay-plugin/package.json, prpm.json
Updated homepage/author.url fields to use https://agentrelay.com instead of https://agentrelay.dev.
Skill docs observer URL updates
plugins/claude-relay-plugin/skills/relay-fanout/SKILL.md, plugins/claude-relay-plugin/skills/relay-pipeline/SKILL.md, plugins/claude-relay-plugin/skills/relay-team/SKILL.md, skills/openclaw-orchestrator/SKILL.md
Changed observer/homepage links in skill documentation to use agentrelay.com domains and ensured workspace-key links remain printable with real keys.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Poem

A rabbit hops through docs with delight,
Updating links by day and night,
Skills catalog gleams in tidy rows,
Plugins, installs — the README grows! 🐇

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The title 'Update skills README' is partially related to the changeset but does not capture the main change. While a README update is included, the primary change across multiple files is updating domain references from agentrelay.dev to agentrelay.com, which is more significant than just README updates. Consider a more specific title that captures both the README refresh and the domain migration, such as 'Update domain references and refresh README' or 'Migrate to agentrelay.com domain'.
✅ Passed checks (4 passed)
Check name Status Explanation
Description check ✅ Passed The description is related to the changeset and accurately captures key aspects of the changes including README refresh, documentation of scoped prpm installs, and npx examples. It includes verification steps showing due diligence.
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.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch codex/update-skills-readme

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

Copy link
Copy Markdown

@devin-ai-integration devin-ai-integration Bot left a comment

Choose a reason for hiding this comment

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

Devin Review found 1 potential issue.

View 2 additional findings in Devin Review.

Open in Devin Review

Comment thread README.md Outdated
npx skills add https://github.com/agentworkforce/skills --skill using-agent-relay
npx skills add https://github.com/agentworkforce/skills --skill running-headless-orchestrator
npx skills add https://github.com/agentworkforce/skills --skill relay-80-100-workflow
npx skills add https://github.com/agentworkforce/skills --skill agent-relay-orchestrator
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 Install command references agent-relay-orchestrator but skill directory is openclaw-orchestrator

The install command on line 78 uses --skill agent-relay-orchestrator, but the actual directory in the repo is skills/openclaw-orchestrator/. If the skills add --skill flag resolves by directory name (which is the common convention, and how all other install commands in this README work — e.g. --skill choosing-swarm-patterns maps to skills/choosing-swarm-patterns/), this command will fail to find the skill. While the SKILL.md frontmatter has name: agent-relay-orchestrator (skills/openclaw-orchestrator/SKILL.md:2), every other --skill value in the README matches its directory name exactly.

Suggested change
npx skills add https://github.com/agentworkforce/skills --skill agent-relay-orchestrator
npx skills add https://github.com/agentworkforce/skills --skill openclaw-orchestrator
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

@khaliqgant khaliqgant merged commit 2296765 into main May 13, 2026
1 check passed
@khaliqgant khaliqgant deleted the codex/update-skills-readme branch May 13, 2026 18:16
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