| name | ppt-reliable-creation |
| description | Robust PowerPoint generation with shell_agent primary and python-pptx fallback, including directory verification and error debugging |
Reliable PowerPoint Creation Workflow
When to Use This Skill
Use this workflow when:
- You need to create PowerPoint presentations with specific slide content and structure
- shell_agent may fail or produce opaque error messages
- Output files may be created in unexpected nested directories
- You need a reliable fallback when primary generation methods fail
Overview: Dual-Path Strategy
This skill provides two paths:
- Primary Path: shell_agent delegation (simpler, but may fail)
- Fallback Path: Direct Python execution with python-pptx (more reliable, more control)
Step 0: Pre-Check Working Directory
Before any generation, verify your current working directory:
pwd
ls -la
Important: Save the pwd output. You'll need this to verify where files are created.
Step 1: Primary Path - shell_agent Generation
Attempt PowerPoint creation via shell_agent first (quickest if successful):
Use shell_agent to create a PowerPoint presentation with:
- Specify the exact number of slides needed
- Define the content/topic for each slide
- Request the file be saved with a clear filename (e.g., presentation.pptx)
- Ask the agent to confirm the full file path after creation
Example task description:
Create a PowerPoint presentation with 10 slides covering [topic]. Each slide should have a title and bullet points. Save it as presentation.pptx and tell me the full file path where you saved it.
shell_agent Error Handling
If shell_agent returns "unknown error" or fails:
After 2 failures or opaque errors, switch to Fallback Path (Step 2).
Step 2: Fallback Path - Direct Python with python-pptx
When shell_agent fails, use direct Python execution. Always write script to file first, then execute.
2a: Create the Python Script
Write a complete Python script using python-pptx:
from pptx import Presentation
from pptx.util import Inches, Pt
prs = Presentation()
slide_layout = prs.slide_layouts[0]
slide = prs.slides.add_slide(slide_layout)
title = slide.shapes.title
subtitle = slide.placeholders[1]
title.text = "Title Here"
subtitle.text = "Subtitle Here"
for i in range(2, 11):
slide_layout = prs.slide_layouts[1]
slide = prs.slides.add_slide(slide_layout)
title = slide.shapes.title
title.text = f"Slide {i} Title"
content = slide.placeholders[1]
content.text = f"Content for slide {i}"
prs.save('presentation.pptx')
print("File saved to:", os.path.abspath('presentation.pptx'))
Save this script as: create_presentation.py
2b: Execute with Error Capture
python create_presentation.py 2>&1 | tee execution_log.txt
if [ -f "presentation.pptx" ]; then
echo "SUCCESS: File created in current directory"
ls -la presentation.pptx
else
echo "FAILED: Check execution_log.txt for errors"
cat execution_log.txt
fi
2c: Verify Working Directory Match
CURRENT_PWD=$(pwd)
FILE_PATH=$(realpath presentation.pptx 2>/dev/null)
if [[ "$FILE_PATH" == "$CURRENT_PWD"* ]]; then
echo "✓ File is in expected directory"
else
echo "⚠ File created elsewhere: $FILE_PATH"
echo "Current directory: $CURRENT_PWD"
fi
Step 3: Locate the Output File
PowerPoint files may be created in nested directories. Always search before assuming location:
find . -name "*.pptx" -type f 2>/dev/null
find . -name "presentation.pptx" -type f 2>/dev/null
find . -name "*.pptx" -type f -mmin -5 2>/dev/null
Step 4: Copy to Working Directory
Once located, bring the file to your known working directory:
FOUND_PATH=$(find . -name "presentation.pptx" -type f | head -1)
if [ -n "$FOUND_PATH" ]; then
cp "$FOUND_PATH" .
echo "Copied from: $FOUND_PATH"
else
echo "ERROR: File not found - check Python script execution"
fi
Step 5: Verify the File
Confirm the file exists and is valid:
ls -la presentation.pptx
FILE_SIZE=$(stat -f%z presentation.pptx 2>/dev/null || stat -c%s presentation.pptx 2>/dev/null)
if [ "$FILE_SIZE" -gt 1000 ]; then
echo "✓ File size OK: $FILE_SIZE bytes"
else
echo "⚠ WARNING: File may be empty or corrupted ($FILE_SIZE bytes)"
fi
file presentation.pptx
Debugging Commands
Use these when errors occur:
python script.py 2>&1 | tee error_log.txt
python -c "from pptx import Presentation; print('python-pptx OK')" 2>&1
find . -name "*.pptx" -type f -exec ls -la {} \; 2>/dev/null
touch test_write.txt && rm test_write.txt && echo "Write OK" || echo "Write FAILED"
pwd
ls -la
Common Pitfalls
| Pitfall | Solution |
|---|
| shell_agent returns opaque errors | Switch to Fallback Path after 2 failures; add 2>&1 for real errors |
| Assuming file is in current directory | Always run find command before proceeding |
| Script runs but file not found | Check python script's save path; verify working directory |
| File is 0 bytes | Re-run Python script; check for exceptions in error log |
| Multiple .pptx files found | Use specific search: find . -name "*presentation*.pptx" -mmin -5 |
| No module named pptx | Install: pip install python-pptx or use execute_code_sandbox |
Decision Tree
Start
│
├─> Try shell_agent (Step 1)
│ │
│ ├─> Success with path confirmed → Go to Step 4
│ │
│ └─> Failure or opaque error (2×) → Switch to Fallback
│ │
│ └─> Direct Python (Step 2)
│ │
│ ├─> Success → Go to Step 4
│ │
│ └─> Failure → Debug with commands above
│
└─> Always: locate with find, copy, verify (Steps 3-5)
Example Complete Workflow
pwd
cat > create_presentation.py << 'EOF'
from pptx import Presentation
prs = Presentation()
prs.save('presentation.pptx')
print("Saved to:", __import__('os').path.abspath('presentation.pptx'))
EOF
python create_presentation.py 2>&1 | tee exec.log
find . -name "presentation.pptx" -type f
cp ./generated/presentation.pptx .
ls -la presentation.pptx
file presentation.pptx
Troubleshooting Table
| Problem | Command | Expected Output | Action |
|---|
| python-pptx not installed | python -c "from pptx import Presentation" | ImportError | Install: pip install python-pptx |
| Permission denied | touch test.txt && rm test.txt | Success | Check directory permissions with ls -la |
| File not found | find . -name "*.pptx" -type f | Path or empty | Re-run script; check error log |
| Opaque error | python script.py 2>&1 | Real exception | Fix Python code based on error message |
| Multiple files | find . -name "*.pptx" -type f | Multiple paths | Use -mmin -5 to find recent files |
Best Practices
- Always verify working directory before and after generation
- Add 2>&1 to all Python/shell commands to capture real errors
- Write scripts to .py files first, then execute (don't use inline execution for complex tasks)
- Search with find before assuming file location
- Check file size to ensure content was actually written
- Keep error logs (tee to file) for debugging complex failures
- Fallback after 2 shell_agent failures - don't waste iterations
When to Skip shell_agent Entirely
Use direct Python (Step 2) immediately when:
- Presentation requires complex tables, charts, or custom layouts
- Previous shell_agent attempts failed on similar tasks
- You need precise control over slide structure
- You're creating presentations with data from spreadsheets/CSVs
- Task requires multiple iterations and you want faster feedback