Logup banner
henricook henricook

Logup

Development community

Description

--- description: Export and upload the current Claude Code session to Agent Share service --- Please upload the current session to Agent Share using the following bash command: ```bash PROJECT_DIR=$(pwd | sed "s|/|-|g" | sed "s|^|-|") LATEST=$(ls -t ~/.claude/projects/${PROJECT_DIR}/*.jsonl 2>/dev/null | head -1) URL="${AGENT_SHARE_URL:-http://localhost:8721}" if [ -n "$LATEST" ]; then echo "Uploading session to Agent Share..." RESPONSE=$(curl -s -F "file=@${LATEST}" "${URL}/api/upload")

Installation

Installs to ~/.claude/commands/henricook-agentshare-logup.md

Terminal
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/henricook/agentshare/HEAD/.claude/commands/logup.md -o ~/.claude/commands/henricook-agentshare-logup.md

Restart Claude Code, or start a new session, for it to be picked up.

Full documentation available on GitHub

View Source Repository