docs: add 6 missing plugins and align counts to 20/49/41#13
Conversation
plugins.json was missing 6 plugins entirely - prepare-delivery, gate-and-ship, skillers, onboard, can-i-help, glidemq. Adding them with correct agent/skill/command counts derived from each plugin repo. skills.json was missing the skills for those new plugins plus audit-project (just added in agent-sh/audit-project#17). Adding 9 skill entries: recommend, skillers-compact, onboard, can-i-help, audit-project, glide-mq, glide-mq-migrate-bullmq, glide-mq-migrate-bee. audit-project's skills count in plugins.json bumped from 0 -> 1 to reflect the new SKILL.md upstream. Totals after this change: - 20 plugin entries (19 marketplace + glidemq) - 49 agents (sum across plugins matches agentsys ecosystem total) - 41 skills (sum across plugins matches skills.json entries)
There was a problem hiding this comment.
Code Review
This pull request expands the plugin and skill catalogs by adding several new entries, including 'prepare-delivery', 'gate-and-ship', 'skillers', 'onboard', 'can-i-help', and 'glidemq', while also updating the skill count for the 'audit-project' plugin. Feedback indicates that the 'prepare-delivery' plugin is missing the 'agnix' dependency and references a non-existent 'simplify' skill in its description. Additionally, hardcoded counts in 'src/pages/skills.astro' should be updated or made dynamic to maintain consistency with the new data.
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit a0d4a6e. Configure here.
…n count
Gemini and Cursor flagged:
- prepare-delivery description listed 'simplify' (not a real plugin) and
was missing 'agnix' from its dependencies array
- skills.astro had hardcoded '33 skills across 14 plugins' (now 41/20)
- index.astro hero badge had hardcoded '18 repos' even though pluginCount
is already computed; using {pluginCount} here too so it stays in sync

Summary
plugins.json was missing 6 of the 19 agent-sh plugins entirely. This adds full entries for prepare-delivery, gate-and-ship, skillers, onboard, can-i-help, glidemq, and corresponding skill entries in skills.json.
Detail
Test plan
Related
Note
Low Risk
Low risk: data-only updates to
plugins.json/skills.jsonthat affect catalog listings and displayed counts, with no runtime logic changes.Overview
Expands the catalog data by adding full entries for six plugins (including
prepare-delivery,gate-and-ship,skillers,onboard,can-i-help,glidemq) tosrc/data/plugins.json, and fixesaudit-project’sskillsfrom0to1.Adds corresponding new skill definitions to
src/data/skills.json(prepare-delivery/orchestration gates,skillersrecommendations/compaction, onboarding and contributor-matching skills, anaudit-projectskill, andglidemqbuild/migration skills), updating the totals used by the site’s plugin/skill directories.Reviewed by Cursor Bugbot for commit a0d4a6e. Configure here.