this repo has no description
0
fork

Configure Feed

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

Use JSON additionalContext for reliable context injection

Plain text stdout wasn't being injected into Claude's context.
Switch to hookSpecificOutput JSON format for SessionStart hooks.

Bumps handoff to v1.2.0.

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

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

alice 4a8ac5cd f83d052f

+12 -3
+1 -1
plugins/handoff/.claude-plugin/plugin.json
··· 1 1 { 2 2 "name": "handoff", 3 - "version": "1.1.0", 3 + "version": "1.2.0", 4 4 "description": "Automatically detects handoff files and prompts Claude to continue previous work", 5 5 "author": { 6 6 "name": "Alice"
+11 -2
plugins/handoff/scripts/check-handoff.sh
··· 26 26 log "Checking for: $HANDOFF_FILE" 27 27 28 28 if [[ -f "$HANDOFF_FILE" ]]; then 29 - log "Found handoff file, outputting prompt" 30 - 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." 29 + log "Found handoff file, outputting JSON context" 30 + cat << 'EOF' 31 + { 32 + "hookSpecificOutput": { 33 + "hookEventName": "SessionStart", 34 + "additionalContext": "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." 35 + } 36 + } 37 + EOF 31 38 else 32 39 log "No handoff file found" 33 40 fi 41 + 42 + exit 0