EXPORT_002 — Export Failed
What This Means
Section titled “What This Means”The export operation failed while writing content to the target location.
Common Causes
Section titled “Common Causes”- Write permission denied on the target directory
- The target directory does not exist
- Disk is full or has insufficient space
- The target path is on a read-only filesystem
How to Fix
Section titled “How to Fix”- Ensure the target directory exists:
mkdir -p /path/to/target - Check write permissions on the target directory:
ls -la /path/to/target - Verify available disk space:
df -h - If permissions are the issue, adjust with
chmodor run from a writable location
Example Output
Section titled “Example Output”Error EXPORT_002: failed to export "my-skill" to /home/user/.config/provider/skills/: permission denied Suggestion: ensure the target directory exists and is writable