Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Presentation creation, format conversion (ODP/PPTX/PDF), slide automation with LibreOffice Impress.
.claude/skills/lingxling-impress/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-02 | ✗→✓ | ▲ Improved | 68% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 122% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 28% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 70% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 41% | 0% |
LibreOffice Impress skill for creating, editing, converting, and automating presentation workflows using the native ODP (OpenDocument Presentation) format.
Use this skill when:
bashsoffice --impress template.odp
pythonimport uno def create_presentation(): local_ctx = uno.getComponentContext() resolver = local_ctx.ServiceManager.createInstanceWithContext( "com.sun.star.bridge.UnoUrlResolver", local_ctx ) ctx = resolver.resolve( "uno:socket,host=localhost,port=8100;urp;StarOffice.ComponentContext" ) smgr = ctx.ServiceManager doc = smgr.createInstanceWithContext("com.sun.star.presentation.PresentationDocument", ctx) slides = doc.getDrawPages() slide = slides.getByIndex(0) doc.storeToURL("file:///path/to/presentation.odp", ()) doc.close(True)
bash# ODP to PPTX soffice --headless --convert-to pptx presentation.odp # ODP to PDF soffice --headless --convert-to pdf presentation.odp # PPTX to ODP soffice --headless --convert-to odp presentation.pptx # Batch convert for file in *.odp; do soffice --headless --convert-to pdf "$file" done
pythonimport subprocess import tempfile from pathlib import Path def generate_from_template(template_path, content, output_path): with tempfile.TemporaryDirectory() as tmpdir: subprocess.run(['unzip', '-q', template_path, '-d', tmpdir]) content_file = Path(tmpdir) / 'content.xml' content_xml = content_file.read_text() for key, value in content.items(): content_xml = content_xml.replace(f'${{{key}}}', str(value)) content_file.write_text(content_xml) subprocess.run(['zip', '-rq', output_path, '.'], cwd=tmpdir) return output_path
bashsoffice --headless soffice --headless --convert-to <format> <file> soffice --impress # Impress
bashpip install ezodf # ODF handling pip install odfpy # ODF manipulation
bashkillall soffice.bin soffice --headless --accept="socket,host=localhost,port=8100;urp;"
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 18,410 | 27,693 | +50% | 1 | 1 | 0% | 2,765 | 4,592 | +66% | 0 | 0 | — |
case-02 | fail→pass | 6,893 | 4,057 | -41% | 1 | 1 | 0% | 947 | 1,587 | +68% | 0 | 0 | — |
case-03 | pass→pass | 7,513 | 4,995 | -34% | 1 | 1 | 0% | 1,331 | 1,819 | +37% | 0 | 0 | — |
case-04 | pass→pass | 7,743 | 2,508 | -68% | 1 | 1 | 0% | 1,071 | 1,536 | +43% | 0 | 0 | — |
case-05 | fail→pass | 5,137 | 4,741 | -8% | 1 | 1 | 0% | 873 | 1,939 | +122% | 0 | 0 | — |
case-06 | fail→pass | 9,605 | 3,690 | -62% | 1 | 1 | 0% | 1,318 | 1,684 | +28% | 0 | 0 | — |
case-07 | fail→pass | 6,368 | 5,890 | -8% | 1 | 1 | 0% | 1,177 | 2,000 | +70% | 0 | 0 | — |
case-08 | pass→pass | 9,986 | 4,279 | -57% | 1 | 1 | 0% | 1,579 | 1,672 | +6% | 0 | 0 | — |
case-09 | pass→pass | 7,572 | 3,808 | -50% | 1 | 1 | 0% | 1,314 | 1,734 | +32% | 0 | 0 | — |
case-10 | pass→pass | 4,549 | 3,355 | -26% | 1 | 1 | 0% | 795 | 1,539 | +94% | 0 | 0 | — |
case-11 | fail→pass | 8,577 | 6,835 | -20% | 1 | 1 | 0% | 1,459 | 2,056 | +41% | 0 | 0 | — |
case-12 | pass→pass | 14,922 | 10,126 | -32% | 1 | 1 | 0% | 2,106 | 2,666 | +27% | 0 | 0 | — |
case-13 | pass→pass | 9,485 | 5,869 | -38% | 1 | 1 | 0% | 1,662 | 2,099 | +26% | 0 | 0 | — |
case-14 | pass→pass | 6,917 | 4,646 | -33% | 1 | 1 | 0% | 1,268 | 1,718 | +35% | 0 | 0 | — |
case-15 | pass→pass | 11,194 | 4,476 | -60% | 1 | 1 | 0% | 1,526 | 1,755 | +15% | 0 | 0 | — |
case-16 | pass→pass | 11,049 | 6,297 | -43% | 1 | 1 | 0% | 1,826 | 2,172 | +19% | 0 | 0 | — |
case-17 | pass→pass | 6,425 | 4,252 | -34% | 1 | 1 | 0% | 979 | 1,756 | +79% | 0 | 0 | — |
case-18 | fail→fail | 17,380 | 16,464 | -5% | 1 | 1 | 0% | 2,702 | 3,200 | +18% | 0 | 0 | — |
case-19 | pass→pass | 7,779 | 5,226 | -33% | 1 | 1 | 0% | 1,298 | 1,894 | +46% | 0 | 0 | — |
case-20 | pass→pass | 11,915 | 7,746 | -35% | 1 | 1 | 0% | 1,768 | 2,580 | +46% | 0 | 0 | — |
case-21 | pass→pass | 12,080 | 12,450 | +3% | 1 | 1 | 0% | 2,100 | 2,942 | +40% | 0 | 0 | — |
case-22 | pass→pass | 13,179 | 8,406 | -36% | 1 | 1 | 0% | 2,129 | 2,968 | +39% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +23 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.