OpenSpace write-special-chars-readback
Workaround for write_file failures caused by special characters (apostrophes, backticks, template literals) using a Python heredoc script, with mandatory post-write verification via read_file and cleanup of /tmp helper scripts.
git clone https://github.com/HKUDS/OpenSpace
T=$(mktemp -d) && git clone --depth=1 https://github.com/HKUDS/OpenSpace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/showcase/skills/write-special-chars-readback" ~/.claude/skills/hkuds-openspace-write-special-chars-readback && rm -rf "$T"
showcase/skills/write-special-chars-readback/SKILL.mdWrite File Special Characters Workaround (Verified)
Problem
The
write_file tool may fail with [ERROR] unknown error when file content
contains special characters such as:
- Apostrophes / single quotes (
)' - Backticks (
)` - Template literals (
) common in TypeScript/JavaScript`${variable}` - Complex combinations of quotes and escape sequences
This is especially common when writing TypeScript, JavaScript, shell scripts, or any source file with string interpolation syntax.
Solution: Python Heredoc Workaround
Write a small Python script to
/tmp/ that uses triple-quoted strings to
embed the file content, then execute it with python3.
Step-by-Step
- Compose a Python writer script using triple-quoted strings (
)."""...""" - Write the Python script itself to
— its content is plain enough that/tmp/
will succeed (no problematic characters in the wrapper).write_file - Execute the script with
:run_shellpython3 /tmp/write_<name>.py - Verify the written file with
to confirm contents are correct.read_file - Clean up the
helper script:/tmprm /tmp/write_<name>.py
Escaping Rules Inside the Python Script
| Character | How to handle |
|---|---|
Backslash | Escape as |
Triple double-quote | Escape as or use strings instead |
Everything else (backticks, , , ) | No escaping needed |
Template
#!/usr/bin/env python3 content = """ <YOUR FILE CONTENT HERE> """.lstrip("\n") with open("/path/to/target/file.ts", "w") as f: f.write(content) print("File written successfully.")
Concrete Example
Suppose you need to write a TypeScript file with template literals and apostrophes that causes
write_file to fail:
Step 1 — Write the Python helper to
:/tmp/
Use
write_file with path /tmp/write_greeting.py and content:
#!/usr/bin/env python3 content = """ export function greet(name: string): string { const msg = `Hello, ${name}! It's a great day.`; console.log(`Greeting: ${msg}`); return msg; } """.lstrip("\n") with open("/app/src/greeting.ts", "w") as f: f.write(content) print("Written: /app/src/greeting.ts")
Step 2 — Execute the helper:
python3 /tmp/write_greeting.py
Step 3 — Verify with
:read_file
Use
read_file with path /app/src/greeting.ts to confirm the file content
is exactly what was intended. This catches silent truncation or encoding
issues that shell cat output might obscure.
Step 4 — Clean up the helper:
rm /tmp/write_greeting.py
This keeps
/tmp tidy and prevents stale helper scripts from being confused
with current ones on subsequent runs.
Standard Post-Write Checklist
After every use of this pattern, always complete all three of these steps:
| Step | Action | Why |
|---|---|---|
| ✅ Execute | | Writes the target file |
| ✅ Verify | on the target path | Confirms content integrity |
| ✅ Clean up | | Prevents stale helper accumulation |
Skipping verification risks silently shipping a truncated or malformed file. Skipping cleanup risks confusion when the same helper name is reused later.
When to Use This Pattern
returnswrite_file
for a specific file.[ERROR] unknown error- The file contains TypeScript/JavaScript template literals.
- The file contains mixed quote styles or shell-like special characters.
- Any time direct file writing fails and content cannot be easily sanitized.
Multiple Files
For writing several problematic files in one pass, consolidate them into a single Python script:
#!/usr/bin/env python3 import os files = { "/app/src/component.tsx": """ import React from 'react'; const App = () => ( <div className={`container`}> <h1>It's working!</h1> </div> ); export default App; """.lstrip("\n"), "/app/src/utils.ts": """ export const format = (val: number) => `Value: ${val.toFixed(2)}`; """.lstrip("\n"), } for path, content in files.items(): os.makedirs(os.path.dirname(path), exist_ok=True) with open(path, "w") as f: f.write(content) print(f"Written: {path}")
After running the multi-file script:
- Use
on each target path to verify all files were written correctly.read_file - Then clean up:
rm /tmp/write_<name>.py
Key Advantages
- No shell escaping required — Python triple-quoted strings are literal.
- Handles all TypeScript syntax — template literals, generics, JSX, etc.
- Atomic — the target file is only created if the Python script succeeds.
- Debuggable — the intermediate
file can be inspected if needed..py - Cleanup (required):
after all files are written — this is a mandatory step, not optional.rm /tmp/write_*.py - Verified — always follow up with
on the target file to confirm content integrity before considering the task complete.read_file