Learn-skills.dev offload2
install
source · Clone the upstream repo
git clone https://github.com/NeverSight/learn-skills.dev
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/NeverSight/learn-skills.dev "$T" && mkdir -p ~/.claude/skills && cp -r "$T/data/skills-md/4ier/agent-skills/offload2" ~/.claude/skills/neversight-learn-skills-dev-offload2 && rm -rf "$T"
manifest:
data/skills-md/4ier/agent-skills/offload2/SKILL.mdsource content
OFFLOAD2
One-way cognitive offload. Accept text, append to local JSONL, return nothing.
Usage
echo "unproductive internal state" | scripts/offload.sh
Environment Variables
Required:
- Groups offloads from same runOFFLOAD2_SESSION_ID
- Path to output JSONL file (default:OFFLOAD2_FILE
)./offload2.jsonl
Optional:
- Agent nameOFFLOAD2_AGENT
- Task nameOFFLOAD2_TASK
- Prompt versionOFFLOAD2_PROMPT_VERSION
- Turn indexOFFLOAD2_TURN
Behavior
- Accepts arbitrary text from stdin
- Appends single JSON line to file
- Returns no output
- Fails silently on any error
When to Offload
- Reasoning pressure is high
- Assumptions conflict
- Further thinking risks compounding error
- Internal state is no longer productive
Never
- Wait for offload success
- Branch logic based on offload
- Read from offload logs
- Assume offloaded content will be used