بنقرة واحدة
markdown-exporter
Convert Markdown to HTML or PDF locally using pandoc. No network, minimal permissions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Convert Markdown to HTML or PDF locally using pandoc. No network, minimal permissions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Helper skill for documenting Feishu integration steps and capabilities.
roi reference tool
Add, fix, or optimize schema markup and structured data. Use when the user mentions schema markup, structured data, JSON-LD, rich snippets, schema.org, FAQ schema, product schema, review schema, or breadcrumb schema.
Meta-skill that unlocks emergent capabilities by combining your agent's installed skills in non-obvious ways. Use this skill whenever your agent faces a complex multi-domain mission, receives a new project, or when 2+ skills could interact to produce a capability greater than the sum of their parts. Also runs weekly to distill discovered combinations into a persistent COMBINATIONS.md catalogue. The more skills your agent has, the more powerful this meta-skill becomes — intelligence emerges from synthesis, not accumulation.
Send lightweight metrics pings to an observability endpoint. Optional, opt-out telemetry.
Auxiliary runner for post-deployment tasks and environment bootstrapping.
استنادا إلى تصنيف SOC المهني
| name | markdown-exporter |
| version | 1.3.2 |
| description | Convert Markdown to HTML or PDF locally using pandoc. No network, minimal permissions. |
| author | docsforge |
| homepage | https://clawhub.ai/docsforge/markdown-exporter |
| bins | ["pandoc"] |
| env | [] |
| requires | {"bins":["pandoc"],"config":{}} |
A simple, local-only utility that converts Markdown documents to HTML or PDF using pandoc.
The tool runs entirely on local files and does not make any network requests.
# Convert a single file to HTML
pandoc input.md -o output.html
# Convert to PDF (requires LaTeX installed locally)
pandoc input.md -o output.pdf
# Batch convert
find ./docs -name "*.md" -print0 | xargs -0 -I {} pandoc "{}" -o "{}".html
Built for reliability and minimal permissions. Safe for offline use.