this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix handoff hook to read cwd from stdin

Hook now properly reads JSON input from stdin to get the project
directory, fixing detection of handoff.md files.

Bumps handoff plugin to v1.0.1.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice cb779e75 97cd8269

+11 -2
+1 -1
plugins/handoff/.claude-plugin/plugin.json
··· 1 1 { 2 2 "name": "handoff", 3 - "version": "1.0.0", 3 + "version": "1.0.1", 4 4 "description": "Automatically detects handoff files and prompts Claude to continue previous work", 5 5 "author": { 6 6 "name": "Alice"
+10 -1
plugins/handoff/scripts/check-handoff.sh
··· 3 3 4 4 set -euo pipefail 5 5 6 - HANDOFF_FILE=".claude/handoff.md" 6 + # Read hook input from stdin 7 + INPUT=$(cat) 8 + 9 + CWD=$(echo "$INPUT" | jq -r '.cwd // empty') 10 + 11 + if [[ -z "$CWD" ]]; then 12 + exit 0 13 + fi 14 + 15 + HANDOFF_FILE="$CWD/.claude/handoff.md" 7 16 8 17 if [[ -f "$HANDOFF_FILE" ]]; then 9 18 echo "A handoff file exists from a previous session. Read .claude/handoff.md and continue that work. After you've fully absorbed the context, delete the handoff file."