If you previously installed the pi-dev plugin, follow these steps to upgrade to the renamed dev-practices plugin.
# 1. Refresh the marketplace to see updated plugin names
/plugin marketplace add postindustria-tech/agentic-toolkit
# 2. Uninstall old plugin
/plugin uninstall pi-dev@agentic-toolkit
# 3. Install new plugin
/plugin install dev-practices@agentic-toolkitThat's it! The skills will work exactly the same way.
Why refresh the marketplace? Re-adding the marketplace updates its plugin list, so Claude knows dev-practices is available and pi-dev is no longer offered.
First, update the marketplace to fetch the latest plugin list:
/plugin marketplace add postindustria-tech/agentic-toolkitThis command updates (or re-adds) the marketplace, ensuring Claude knows about the dev-practices plugin and that pi-dev is no longer available.
Note: Re-adding an already-added marketplace updates it - you won't get duplicates.
# List installed plugins
/plugin listLook for pi-dev@agentic-toolkit in the output.
/plugin uninstall pi-dev@agentic-toolkitThis removes the old pi-dev plugin from your system.
/plugin install dev-practices@agentic-toolkitThis installs the renamed dev-practices plugin with the same skills.
/plugin listYou should see dev-practices@agentic-toolkit in the list.
If you have team auto-install configured in .claude/settings.json, update the plugin name:
Old configuration:
{
"enabledPlugins": {
"langgraph-dev@agentic-toolkit": true,
"pi-dev@agentic-toolkit": true
}
}New configuration:
{
"enabledPlugins": {
"langgraph-dev@agentic-toolkit": true,
"dev-practices@agentic-toolkit": true
}
}After updating, restart your session for changes to take effect.
- Old:
pi-dev - New:
dev-practices - Reason: Clearer, more generic, not company-specific
- Old:
pi-dev-tdd-workflow,pi-dev-session-completion - New:
dev-practices-tdd-workflow,dev-practices-session-completion
✅ No changes - All skills work exactly the same way ✅ Trigger phrases unchanged - Skills still auto-load on context ✅ Content identical - Same TDD workflow and session completion guides
If you directly invoke skills by name, update your commands:
Old:
/pi-dev-tdd-workflow
/pi-dev-session-completionNew:
/dev-practices-tdd-workflow
/dev-practices-session-completionNote: Most users don't need to change anything - skills auto-load based on context like "use TDD" or "end session".
If you see an error about pi-dev not being found, you've already upgraded or never had it installed. Simply install the new plugin:
/plugin install dev-practices@agentic-toolkitIf both pi-dev and dev-practices appear in /plugin list, uninstall the old one:
/plugin uninstall pi-dev@agentic-toolkitAfter upgrading, if skills don't load:
- Restart your session
- Verify installation:
/plugin list - Try triggering manually:
/dev-practices-tdd-workflow
- Issues: https://github.com/postindustria-tech/agentic-toolkit/issues
- Documentation: See
README.mdandRELEASE_NOTES.md
Quick version:
/plugin uninstall pi-dev@agentic-toolkit
/plugin install dev-practices@agentic-toolkitFor team configs: Update settings.json to use dev-practices@agentic-toolkit
Everything else: Works the same! 🎉