npx claudepluginhub kobibarhanin/cc-shareShare Claude Code session summaries with your team. Generate rich markdown summaries of what you did and sync them to S3 for teammates to fetch and continue.
Share Claude Code sessions with your team.
When you finish a task in Claude Code, run /share-session to generate a rich markdown summary of what you did — decisions made, code written, dead ends hit — and upload it to a shared S3 bucket. Your teammates run /fetch-sessions to browse and load those summaries as context for their own sessions.
/plugin marketplace add kobibarhanin/cc-share
/plugin install cc-share@kobibarhanin-cc-share
/reload-plugins
That's it. Both /share-session and /fetch-sessions are now available in all your projects.
Every team member runs the installation above. The first time someone runs /share-session, they'll be prompted for:
s3://my-team-sessions)This is saved to ~/.claude/cc_share_config.json and reused for all future shares. Make sure everyone on the team points to the same S3 bucket.
At any point during or at the end of a session:
/share-session
Claude will:
s3://<bucket>/<your-username>/<descriptive-name>_<timestamp>.md/fetch-sessions
Shows all teammates and their recent sessions at a glance:
## Alice
oauth2-google-sso-implementation_20260331T150000Z.md
fix-redis-token-expiry-bug_20260331T120000Z.md
## Bob
terraform-upgrade-to-v5_20260329T180000Z.md
Pick a session, and Claude loads the full summary and offers to continue from the listed next steps.
Every summary includes an overview, a narrative what was done section, and next steps. Depending on the session, Claude also includes:
Claude decides which sections are relevant based on what actually happened in the session.
s3://your-bucket/
├── Alice/
│ ├── oauth2-google-sso-implementation_20260331T150000Z.md
│ └── fix-redis-token-expiry-bug_20260331T120000Z.md
└── Bob/
└── terraform-upgrade-to-v5_20260329T180000Z.md
Files are named after the session's subject so you know what they contain without opening them.
Config is stored at ~/.claude/cc_share_config.json:
{
"backend": "s3",
"s3_bucket": "s3://your-bucket",
"username": "Your Name"
}
To change your settings, edit this file directly or delete it and run /share-session again.
To try cc-share without S3, set the backend to file:
{
"backend": "file",
"file_dir": "/path/to/shared/directory",
"username": "Your Name"
}
MIT