plugins
All plugins

claudebase

v0.2.0

Back up and restore your entire Claude Code environment to a private GitHub repo

Claude Code6 skills

by Rohit HazraMIT2.6kupdated 2 hours ago

Source

git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/productivity/claudebase/ inside the repository.

Layout

plugins/productivity/claudebase/
├── .claude-plugin/plugin.json
├── skills/sync-config/SKILL.md
├── skills/sync-profiles/SKILL.md
├── skills/sync-pull/SKILL.md
├── skills/sync-push/SKILL.md
├── skills/sync-setup/SKILL.md
└── skills/sync-status/SKILL.md

Skills6

sync-configskills/sync-config/SKILL.md

Use when the user wants to view or change claudebase settings like global sync, agent skills sync, auto-push, or machine ID.

sync-profilesskills/sync-profiles/SKILL.md

Use when the user wants to list, create, switch, delete, compare, or inspect config sync profiles.

sync-pullskills/sync-pull/SKILL.md

Use when the user wants to restore, download, or pull their Claude Code config from GitHub onto this machine.

sync-pushskills/sync-push/SKILL.md

Use when the user wants to back up, save, or push their current Claude Code config to GitHub.

sync-setupskills/sync-setup/SKILL.md

Use when the user wants to set up config sync for the first time, connect to GitHub, or re-initialize the backup repo.

sync-statusskills/sync-status/SKILL.md

Use when the user wants to check what config has changed, see sync status, or compare local vs remote config.

Manifests1

plugins/productivity/claudebase/.claude-plugin/plugin.json
{
  "name": "claudebase",
  "description": "Back up and restore your entire Claude Code environment to a private GitHub repo",
  "version": "0.2.0",
  "author": {
    "name": "Rohit Hazra",
    "url": "https://github.com/rohithzr"
  },
  "homepage": "https://github.com/rohithzr/claudebase",
  "repository": "https://github.com/rohithzr/claudebase",
  "license": "MIT",
  "keywords": [
    "github",
    "sync",
    "backup",
    "config",
    "profiles",
    "settings"
  ]
}