| name | fallback-file-creation |
| description | Fallback pattern for reliable file creation when code execution tools fail |
Fallback File Creation Workflow
Use this skill when execute_code_sandbox or shell_agent fails repeatedly for file creation tasks. This pattern provides a manual but reliable approach to create and verify files.
When to Use
- Code execution tools fail after multiple retries
- You need to create specific file formats (PDF, DOCX, etc.)
- Direct shell commands are more reliable than generated scripts
- You need explicit verification of file outputs
Step-by-Step Instructions
Step 1: Verify Working Directory
Before any file operations, confirm your current location:
pwd
ls -la
This ensures you're creating files in the correct workspace directory.
Step 2: Create Scripts via Heredoc
Use shell heredocs to create scripts with properly escaped syntax:
cat > /path/to/script.sh << 'EOF'
echo "Creating file..."
EOF
Key escaping rules:
- Use
'EOF' (quoted) to prevent variable expansion inside the heredoc
- Use
EOF (unquoted) if you want shell variables to expand
- Escape any
$, backticks, or special characters if using unquoted EOF
Step 3: Execute with Explicit Path
Always run scripts with their full or explicit relative path:
chmod +x /path/to/script.sh
/path/to/script.sh
bash /path/to/script.sh
Avoid relying on . or implicit paths.
Step 4: Verify Output
After execution, verify files were created correctly:
ls -lh /path/to/output.file
pdfinfo /path/to/output.pdf
unzip -l /path/to/output.docx | head -20
file /path/to/output.file
head -c 500 /path/to/output.file
Step 5: Iterative Debugging
If verification fails:
- Check error messages from script execution
- Verify all dependencies are available (
which command)
- Test individual commands from the script manually
- Re-run with verbose output (
bash -x script.sh)
Example: Creating a PDF Document
pwd
ls -la
cat > /workspace/create_pdf.sh << 'EOF'
cd /workspace
libreoffice --headless --convert-to pdf checklist.odt --outdir .
EOF
chmod +x /workspace/create_pdf.sh
/workspace/create_pdf.sh
ls -lh /workspace/checklist.pdf
pdfinfo /workspace/checklist.pdf
Example: Creating a DOCX Document
pwd
ls -la
cat > /workspace/create_docx.sh << 'EOF'
cd /workspace
pandoc -f markdown -t docx action_tracker.md -o action_tracker.docx
EOF
chmod +x /workspace/create_docx.sh
/workspace/create_docx.sh
ls -lh /workspace/action_tracker.docx
unzip -l /workspace/action_tracker.docx | head -20
Best Practices
- Always verify before and after - Check directory state before starting and after completion
- Use absolute or explicit paths - Avoid ambiguity in file locations
- Quote heredoc delimiters - Use
'EOF' to prevent unwanted variable expansion
- Make scripts executable - Always
chmod +x before running
- Inspect file metadata - Use format-specific tools (pdfinfo, unzip -l, file) to verify content
- Keep scripts simple - Each script should do one thing well
- Clean up temporary files - Remove intermediate files after successful completion
Troubleshooting
| Issue | Solution |
|---|
| Script not found | Use full path: /workspace/script.sh |
| Permission denied | Run chmod +x script.sh |
| File not created | Check script output, verify working directory in script |
| Wrong file format | Verify conversion tool supports target format |
| Corrupted output | Re-run with verbose mode, check intermediate files |