marp-10-cli-usage
Sub-skill of marp: 10. CLI Usage (+5).
Best use case
marp-10-cli-usage is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sub-skill of marp: 10. CLI Usage (+5).
Teams using marp-10-cli-usage should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/10-cli-usage/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How marp-10-cli-usage Compares
| Feature / Agent | marp-10-cli-usage | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Sub-skill of marp: 10. CLI Usage (+5).
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 10. CLI Usage (+5)
## 10. CLI Usage
```bash
# Convert to HTML
marp slides.md -o slides.html
# Convert to PDF
marp slides.md -o slides.pdf
# Convert to PPTX
marp slides.md -o slides.pptx
*See sub-skills for full details.*
## 11. Configuration File
```yaml
# .marprc.yml
html: true
allowLocalFiles: true
output: "./dist"
theme: "./themes/corporate.css"
pdf: true
pdfNotes: true
watch: false
server: false
serverPort: 8080
```
## 12. VS Code Settings
```json
// .vscode/settings.json
{
"markdown.marp.enableHtml": true,
"markdown.marp.themes": [
"./themes/custom.css"
],
"markdown.marp.mathTypesetting": "katex",
"markdown.marp.exportType": "pdf"
}
```
## 13. GitHub Actions Workflow
```yaml
# .github/workflows/presentations.yml
name: Build Presentations
on:
push:
branches: [main]
paths: ['presentations/**']
jobs:
*See sub-skills for full details.*
## 14. Docker Usage
```bash
# Build with Docker
docker run --rm -v $(pwd):/app marpteam/marp-cli \
/app/slides.md -o /app/slides.pdf
# Run server
docker run --rm -p 8080:8080 -v $(pwd):/app marpteam/marp-cli \
-s /app/slides.md
```
## 15. Advanced Layouts
```markdown
---
marp: true
---
<style>
.columns { display: grid; grid-template-columns: 1fr 1fr; gap: 2em; }
.centered { display: flex; flex-direction: column; justify-content: center; align-items: center; }
</style>
*See sub-skills for full details.*Related Skills
usage-optimization
Optimize AI usage efficiency through script-first patterns, batch operations, and input preparation
agent-usage-optimizer
Reads quota state and recommends optimal Codex/Codex/Gemini allocation per task
skill-creator-advanced-usage
Sub-skill of skill-creator: Advanced Usage.
usage-tracker-5-trend-analysis
Sub-skill of usage-tracker: 5. Trend Analysis (+1).
usage-tracker-3-usage-summary-reports
Sub-skill of usage-tracker: 3. Usage Summary Reports (+1).
usage-tracker-1-basic-usage-logging
Sub-skill of usage-tracker: 1. Basic Usage Logging (+1).
gmsh-openfoam-orcaflex-agent-usage-pattern
Sub-skill of gmsh-openfoam-orcaflex: Agent Usage Pattern.
solver-benchmark-programmatic-usage
Sub-skill of solver-benchmark: Programmatic Usage.
mesh-utilities-cli-usage
Sub-skill of mesh-utilities: CLI Usage.
testing-production-real-data-usage
Sub-skill of testing-production: Real Data Usage (+3).
marp-slide-2-key-points
Sub-skill of marp: Slide 2: Key Points.
marp-right-column
Sub-skill of marp: Right Column.