session-share

Featured

Share Claude Code sessions between developers. Use when user mentions "share session", "export session", "import session", "send session to", "continue from colleague", or needs to (1) export current session to file, (2) import session from another developer, (3) hand off work context. Enables private, secure session transfer via direct file sharing.

AI & Automation 2,523 stars 294 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Session Share Share Claude Code sessions between developers through portable file export/import. **Version:** 1.0 | **Privacy:** Files are never uploaded to cloud unless you choose to share them ## Script Path Resolution (IMPORTANT) This skill includes helper scripts in its `scripts/` subdirectory. When Claude Code loads this skill, it shows a line like: ``` Base directory for this skill: /path/to/.../skills/session-share ``` **You MUST use that base directory path to resolve all script references.** Store it as `SKILL_DIR`: ```bash # Set SKILL_DIR to the base directory shown when this skill was loaded SKILL_DIR="/path/shown/in/base-directory-line" # Then run scripts as: $SKILL_DIR/scripts/export.sh $SKILL_DIR/scripts/import.sh ~/Downloads/session-file.json ``` ## Quick Start ```bash # Export current session $SKILL_DIR/scripts/export.sh # Output: ~/session-shares/session-2024-01-20-my-feature.json # Share the file via Slack, email, AirDrop, etc. # Other developer imports $SKILL_DIR/scripts/import.sh ~/Downloads/session-2024-01-20-my-feature.json # Session appears in agent-deck, ready to continue ``` ## Commands ### Export Session Export the current Claude session to a portable file: ```bash $SKILL_DIR/scripts/export.sh [options] ``` **Options:** | Option | Description | |--------|-------------| | `--session <id>` | Export specific session (default: current) | | `--output <path>` | Custom output path | | `--include-thinking` | Include Claude's thinking block...

Details

Author
asheshgoplani
Repository
asheshgoplani/agent-deck
Created
5 months ago
Last Updated
today
Language
Go
License
MIT

Related Skills