/SKILL.md
# Chunked Write Recovery **Trigger**: Use when encountering "Error writing file" or "Invalid tool parameters" errors during file write operations. **Purpose**: Automatically recover from write failures by chunking content into smaller pieces. --- ## Instructions You have encountered a file write error. This typically happens when trying to write too much content at once. **Recovery Strategy**: 1. **Identify the failed write operation** - What file were you trying to write? - What wa
npx skillsauth add nwuxxxxx/claude-chunked-write-fix claude-chunked-write-fixInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Trigger: Use when encountering "Error writing file" or "Invalid tool parameters" errors during file write operations.
Purpose: Automatically recover from write failures by chunking content into smaller pieces.
You have encountered a file write error. This typically happens when trying to write too much content at once.
Recovery Strategy:
Identify the failed write operation
Chunk the content aggressively
Execute chunked write
Write tool to create the fileEdit tool with append operationsVerification
# For a 500-line file:
# Chunk 1 (lines 1-200): Write tool
Write(file_path, content_lines_1_to_200)
# Chunk 2 (lines 201-400): Edit tool (append)
Edit(file_path, old_string="[end of chunk 1]", new_string="[end of chunk 1]\n" + content_lines_201_to_400)
# Chunk 3 (lines 401-500): Edit tool (append)
Edit(file_path, old_string="[end of chunk 2]", new_string="[end of chunk 2]\n" + content_lines_401_to_500)
Remember: The goal is to complete the write successfully, not to write it all at once. Chunk aggressively and succeed.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.