claude-skill-devto
Description
**Publish articles to DEV.to** from Claude Code — using AppleScript to control your real Chrome browser and DEV.to's internal CSRF API.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
Claude Skill: DEV.to Publishing (AppleScript)
**Publish articles to DEV.to** from Claude Code — using AppleScript to control your real Chrome browser and DEV.to's internal CSRF API.
What's Inside
| Skill | Description |
|---|---|
devto-post |
Publish markdown articles to DEV.to with tags, via the reliable CSRF API |
Why Not Just Use the Editor?
DEV.to's React editor has multiple bugs that make automation unreliable:
| Issue | What Happens |
|---|---|
| Tag input | Tags concatenate into one string instead of separating |
| Auto-save drafts | Bad state persists across page reloads |
| React state | Native value setters can corrupt controlled components |
**The solution:** Bypass the editor entirely. Use DEV.to's internal `POST /articles` API with a CSRF token. One API call = article published. 100% reliable.
Install
npx skills add PHY041/claude-skill-devto
Or manually copy the `.claude/skills/` directory into your project.
Requirements
- macOS (AppleScript is macOS-only)
- Google Chrome with "Allow JavaScript from Apple Events" enabled:
- Chrome → View → Developer → Allow JavaScript from Apple Events
- Restart Chrome after enabling
- Logged into DEV.to in Chrome
Usage
Once installed, just tell Claude Code:
Post this article to DEV.to
or
Publish my markdown file to DEV.to with tags: python, opensource, tutorial
The skill will:
- Navigate Chrome to dev.to
- Extract CSRF token from the page
- POST to
/articleswith your content - Return the published URL
How It Works
// 1. Get CSRF token from page meta tag
var csrf = document.querySelector('meta[name="csrf-token"]').getAttribute('content');
// 2. POST to internal API
var resp = await fetch('/articles', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRF-Token': csrf
},
credentials: 'include',
body: JSON.stringify({
article: {
...
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11