
Project Manager
- Updated May 18, 2026
- JohnFBartlett/ai-plugin-marketplace
project-manager is a Claude Code skill in the AI & Agent Building category. Cross-repo project management: doc audits, overview, roadmap, standups, and extension pitches.
Key points
- project-manager
- AI & Agent Building
- AI-coding skill
Project Manager by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add JohnFBartlett/ai-plugin-marketplace/plugin install project-manager@jfb-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | May 18, 2026 |
|---|---|
| Repository | JohnFBartlett/ai-plugin-marketplace ↗ |
What it does
Cross-repo project management: doc audits, overview, roadmap, standups, and extension pitches.
README.md
ai-plugin-marketplace
Public Claude Code marketplace for JFB project helpers.
Plugins
| Plugin | Description |
|---|---|
project-manager |
Cross-repo PM helper: /pm-all (full sweep), or individually /pm-overview, /pm-roadmap, /pm-standup, /pm-doc-audit, /pm-doc-archive, /pm-pitch. |
Install — cloud sessions (Claude Code on the web)
Set the default environment's setup script to:
bash <(curl -fsSL https://raw.githubusercontent.com/johnfbartlett/ai-plugin-marketplace/main/setup/install.sh)
install.sh clones this repo and copies each enabled plugin's SKILL.md and commands/*.md into ~/.claude/skills/ and ~/.claude/commands/. Idempotent — re-runs fast-forward the marketplace and refresh installed files.
The cloud env doesn't support the /plugin slash command, so we bypass the plugin runtime and write skills/commands directly. The marketplace/plugin manifests still exist for use in local sessions where /plugin works.
To change which plugins auto-install, edit PLUGINS_TO_INSTALL in setup/install.sh and push to main.
Install — local sessions (desktop / IDE)
Local Claude Code sessions DO support /plugin. Run once:
/plugin marketplace add johnfbartlett/ai-plugin-marketplace
/plugin install project-manager@jfb-marketplace
Or merge settings/local-settings.json.example into ~/.claude/settings.json for auto-enable.
Layout
.claude-plugin/marketplace.json Marketplace manifest (used by local /plugin)
plugins/<plugin-name>/
.claude-plugin/plugin.json Plugin manifest
skills/<skill>/SKILL.md Skill instructions
commands/<cmd>.md Slash command definitions
setup/install.sh Cloud env setup script
settings/local-settings.json.example Local user settings snippet
Adding a new plugin
- Create
plugins/<name>/with.claude-plugin/plugin.json, plusskills/and/orcommands/. - Add an entry to
.claude-plugin/marketplace.jsonunderplugins. - To auto-install in cloud envs, add the name to
PLUGINS_TO_INSTALLinsetup/install.sh. - For local sessions, also add it to
enabledPluginsinsettings/local-settings.json.example.
Development
Test the marketplace locally without pushing:
/plugin marketplace add /path/to/ai-plugin-marketplace
/plugin install project-manager@jfb-marketplace