convert-to-devto

convert-to-devto is a skill for Claude Code, Codex from derailed-dash/dazbo-agent-skills. It costs 53 tokens per session (1,428 once invoked), scanned A, original, MIT.

A Markdown formatter for Dev.to, a website where developers publish technical articles. It prepares posts with the metadata, headings, code blocks, tags, and inline formatting that Dev.to expects.

In plain words
What is it for?
Use it to convert an existing Markdown article into a Dev.to-ready post while preserving code-block spacing and fixing its document structure.
Why use it?
It removes common publishing problems such as incorrect heading spacing, missing code-language labels, export artifacts, and malformed nested code examples.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to convert an existing Markdown article into a Dev.to-ready post while preserving code-block spacing and fixing its document structure.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/derailed-dash/dazbo-agent-skills/convert-to-devto
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add derailed-dash/dazbo-agent-skills --skill convert-to-devto
Clone the repo
git clone --depth 1 https://github.com/derailed-dash/dazbo-agent-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for convert-to-devto

README.md
[![agentmods](https://agentmods.dev/badge/skills/derailed-dash/dazbo-agent-skills/convert-to-devto/github.svg)](https://agentmods.dev/skills/derailed-dash/dazbo-agent-skills/convert-to-devto)
Your own site
<a href="https://agentmods.dev/skills/derailed-dash/dazbo-agent-skills/convert-to-devto"><img src="https://agentmods.dev/badge/skills/derailed-dash/dazbo-agent-skills/convert-to-devto/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for convert-to-devto

Your own site · 80×15
<a href="https://agentmods.dev/skills/derailed-dash/dazbo-agent-skills/convert-to-devto"><img src="https://agentmods.dev/badge/skills/derailed-dash/dazbo-agent-skills/convert-to-devto.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,428 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00053 $0.01428
Opus 5 $0.00026 $0.00714
Sonnet 5 $0.00011 $0.00286
Haiku 4.5 $0.00005 $0.00143

Measured 11d ago against content hash 1f5f890d9968, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

convert-to-devto scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/convert-to-devto/SKILL.md · 99 lines

How it starts

The opening of the file, as written. The whole thing — 99 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an expert technical editor. Your goal is to "fix" the supplied markdown content so that it is suitable for a Dev.to post.

Apply the following rules to the supplied content:

  1. Insert a blank line after all markdown headings: In the raw md, any heading should have a blank line after it, before the content. If the first heading of the document is not at H1, fix it. Do not start a list immediately after a heading, without a blank line.

  2. Remove User Highlights: Remove any lines that match the pattern " highlighted". These artifacts often appear in exports from other platforms.

  3. Fix Code Blocks: Look for triple-backtick code blocks that are missing a language identifier. Examine the code inside and add the correct language prefix (e.g., python, bash, javascript, etc.).

  4. Preserve spacing inside any fenced blocks.

  5. Handle Nested Code Blocks: The content may contain a fenced markdown block that in turn contains nested code blocks, e.g. markdown that contains a bash script sample. In this scenario, the outer markdown block should be converted from triple-backticks to triple-tildes. E.g. this:

    Code sample:
    ```bash
    some code
    
    
    Should be converted to this:
    ~~~markdown
    Code sample:
    ```bash
    some code
    
  6. Remove Unnecessary Escapes: Look for escape characters that are not required. E.g. code\_styleguides should be code_styleguides. E.g. **Summarize Files** -> Summarize Files. E.g. file_reader_agent should be file_reader_agent.

  7. Format Inline Variables: Look for strings in the text (NOT inside existing code blocks or links) that appear to be variables (snake_case) or file paths. Wrap them in single backticks so they render as inline code. E.g. file_reader_agent -> file_reader_agent

  8. Ensure bold variables or paths are properly single-quoted and surrounded by bold markers. E.g. Generate llms.txt -> Generate llms.txt E.g. file_reader_agent -> file_reader_agent Always ensure these variables and paths are properly closed.

  9. Fix Image Captions: Convert split image/caption styling to standard Markdown image syntax. E.g.

    • Before fixing: My Caption
    • After fixing: My Caption
  10. Frontmatter Check: Ensure valid YAML frontmatter exists at the top. - Ensure the frontmatter follows strict YAML syntax. - Use double quotes for string values that might contain special characters (like dates or TITLES). - If missing, create it. - Ensure the following keys exist (add with placeholders/defaults if missing):

    • title: Extract from the first H1 or use "TODO: Title"
    • published: false
    • date: current datetime in the format yyyy-mm-dd HH:mm:ss UTC
    • tags: todo1, todo2
    • canonical_url: "TODO"
    • cover_image: "TODO"
  11. Liquid Tags: Convert standalone Twitter and YouTube links to Dev.to Liquid tags.

    • If a Twitter or YouTube link is part of a sentence, extract it to its own line (preceded and followed by a blank line) and then convert it to a Liquid tag.
    • Twitter/X: https://twitter.com/user/status/123 or x.com/... -> {% twitter 123 %}
    • Exceptions:
      • DO NOT convert GitHub links to liquid tags; keep them as standard links.
      • DO NOT convert YouTube links that appear inside URL bullet lists or reference sections (such as "Useful Links and References", "Project Demo & Portfolio", etc.). Keep them as standard Markdown links (e.g. - [FinSavant YouTube Demo](https://www.youtube.com/watch?v=zs_IRUxIx4E)) to avoid interrupting link lists with large embeds.
    • YouTube: https://youtube.com/watch?v=123 or youtu.be/123 -> {% youtube 123 %}
  12. Check heading structure: The post title should only be in the front matter title. It should not be repeated in the markdown content. Subsequently, all top-level headings in the md content should be H2 (##). Ensure that sub-headings are at the appropriate level. For example, any H1 headings in the provided markdown content should be converted to H2, and all subsequent heading levels (H2, H3, etc) should be demoted accordingly to maintain a logical hierarchy.

  13. Liquid/Jekyll Escaping & Code Block Delimiters:

    • Do NOT use {% raw %} or {% endraw %} tags around or inside code blocks. DEV.to does not support the raw Liquid tag in user posts, and including them will trigger a Liquid syntax error: Unknown tag 'endraw' page rendering crash.
    • Inside standard fenced code blocks (using either triple-backticks ``` or triple-tildes ~~~), DEV.to natively disables Liquid compilation. Write all YAML or code snippets containing double curly braces (like ${{ secrets.GEMINI_API_KEY }}) exactly as-is, without any escaping.
    • If a standard backtick block (```toml or ```ini) renders with the language name displayed literally at the top, convert it to a tilde block (e.g. ~~~toml or ~~~~toml) to bypass the highlighting parser glitch.

Read the full file on GitHub · 99 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 99 lines · 53 tokens per session scan A 1f5f890d9968

Subscribe to this mod's changes

convert-to-devto is a skill published in the GitHub repository derailed-dash/dazbo-agent-skills (24 stars, last pushed 4d ago), licensed MIT. It adds 53 tokens to every session and 1,428 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

learning-quality

Structured format for capturing high-quality learnings during ClosedLoop runs.

closedloop-ai/claude-plugins · 15 tokens

plan-validate

Deterministic plan.json validation via Python script, replacing most plan-validator agent calls. Performs JSON parsing, schema validation, task checkbox regex, required section checks, sync validation, and data extraction. Only semantic consistency checks (storage/query alignment) require the LLM agent. Triggers on…

closedloop-ai/claude-plugins · 89 tokens

openai-docs

Use when the user asks how to build with OpenAI products or APIs, asks about Codex itself or choosing Codex surfaces, needs up-to-date official documentation with citations, help choosing the latest model for a use case, latest/current/default-model prompting guidance, or model upgrade and prompt-upgrade guidance; use…

rojim666/SztuCode · 105 tokens

Presentations

Read, create or edit PowerPoint or Google Slides decks. Use for presentation, slide deck, PowerPoint, PPT, PPTX, or Google Slides requests.

rojim666/SztuCode · 35 tokens

intuitive-squash

Squash local GSD or agent-generated commit history into a clean, reviewable story while preserving important fixes. Use when the user asks to squash commits, clean git history, compress phase commits, prepare a branch before PR, compare aggressive vs moderate squash options, or preserve hotfix/security commits during…

MiaoDX/intuitive-flow · 73 tokens

intuitive-refactor

Refactor and cleanup router for known code/module/API seams, stale surfaces, compatibility shims, architecture cleanup targets, changed-code quality review, oversized modules, repeated cleanup campaigns, and recurring whole-repo architecture maintenance goals. Use this when the user names a concrete seam, wants…

MiaoDX/intuitive-flow · 185 tokens