GSC Plugins
A collection of Claude Code plugins for enhanced development workflows.
Plugins
| Plugin | Version | Description |
|---|
| appgen | 2.0.0 | Full-stack applications and APIs from natural language |
| webgen | 2.0.0 | Production-ready websites and landing pages from natural language |
| taskflow | 2.0.0 | Task management with PRD parsing and multi-tag contexts |
| worklog | 1.7.1 | Cross-session knowledge persistence (SQLite/PostgreSQL) |
| docs | 1.1.0 | Documentation management and quality assurance |
Ecosystem v2: All plugins now use unified .local.md configuration at ~/.gsc-plugins/. See ECOSYSTEM.md for integration details.
Installation
Note: These plugins are indexed on claude-plugins.dev but are NOT available in the central npx claude-plugins registry. Use one of the methods below to install.
Option 1: Add as Marketplace (Recommended)
From within Claude Code, run these commands:
Step 1: Add the marketplace
claude plugin marketplace add https://github.com/gaurangrshah/gsc-plugins.git
Step 2: Install the plugins you want
claude plugin install webgen@gsc-plugins
claude plugin install appgen@gsc-plugins
claude plugin install worklog@gsc-plugins
claude plugin install taskflow@gsc-plugins
claude plugin install docs@gsc-plugins
Option 2: Slash Commands (Inside Claude Code)
If you're already in a Claude Code session:
/plugin marketplace add https://github.com/gaurangrshah/gsc-plugins.git
/plugin install webgen@gsc-plugins
Option 3: Manual Installation
Clone and copy to your local plugins directory:
# Clone the repo
git clone https://github.com/gaurangrshah/gsc-plugins.git
# Copy desired plugins to your local-plugins directory
cp -r gsc-plugins/plugins/webgen ~/.claude/plugins/local-plugins/
cp -r gsc-plugins/plugins/appgen ~/.claude/plugins/local-plugins/
cp -r gsc-plugins/plugins/worklog ~/.claude/plugins/local-plugins/
cp -r gsc-plugins/plugins/taskflow ~/.claude/plugins/local-plugins/
cp -r gsc-plugins/plugins/docs ~/.claude/plugins/local-plugins/
# Restart Claude Code to pick up the new plugins
What Doesn't Work
# This will NOT work - we're not in the central npx registry
npx claude-plugins install @gaurangrshah/gsc-plugins/webgen # ❌
Updating Plugins
To update an already installed plugin to the latest version:
Via Marketplace (Recommended)
# Update marketplace index first
claude plugin marketplace update gsc-plugins
# Reinstall the plugin (--force overwrites existing)
claude plugin install worklog@gsc-plugins --force
Uninstall/Reinstall
claude plugin uninstall worklog@gsc-plugins
claude plugin install worklog@gsc-plugins
Manual Update
If you installed manually:
# Pull latest changes
cd ~/path/to/gsc-plugins
git pull
# Re-copy to local-plugins (overwrites existing)
cp -r plugins/worklog ~/.claude/plugins/local-plugins/
# Restart Claude Code to pick up changes
Uninstalling
Via Claude CLI (Marketplace Installations)
# Uninstall individual plugins
claude plugin uninstall webgen@gsc-plugins
claude plugin uninstall appgen@gsc-plugins
claude plugin uninstall worklog@gsc-plugins
claude plugin uninstall taskflow@gsc-plugins
claude plugin uninstall docs@gsc-plugins
# Remove the marketplace entirely (optional)
claude plugin marketplace remove gsc-plugins
Via Slash Commands (Inside Claude Code)
/plugin uninstall webgen@gsc-plugins
/plugin uninstall appgen@gsc-plugins
Manual Installations
If you installed manually to local-plugins:
# Remove specific plugins
rm -rf ~/.claude/plugins/local-plugins/webgen
rm -rf ~/.claude/plugins/local-plugins/appgen
rm -rf ~/.claude/plugins/local-plugins/worklog
rm -rf ~/.claude/plugins/local-plugins/taskflow
rm -rf ~/.claude/plugins/local-plugins/docs
# Restart Claude Code to apply changes
Complete Cleanup
To remove everything (marketplace + all plugins):
# 1. Uninstall all plugins
claude plugin uninstall webgen@gsc-plugins
claude plugin uninstall appgen@gsc-plugins
claude plugin uninstall worklog@gsc-plugins
claude plugin uninstall taskflow@gsc-plugins
claude plugin uninstall docs@gsc-plugins
# 2. Remove marketplace
claude plugin marketplace remove gsc-plugins
# 3. Remove any manual installations
rm -rf ~/.claude/plugins/local-plugins/{webgen,appgen,worklog,taskflow,docs}
# 4. Restart Claude Code
Note: Uninstalling worklog does NOT delete your worklog.db database. Your knowledge and work history are preserved.
When to Use What
Understanding which plugin to use for different scenarios: