Skip to main content
Photo by Roman Biernacki via Pexels
← Back to Blog

Blogging in 2026

Blogging in 2026

It's now possible to create a blogPost from your anywhere using Claude Code. My current setup has the following tool/applications:

  • Contentful CMS - this is where my blog is hosted
  • Vercel - The hosting environment for my web application built using React, Tailwind and NextJs
  • GitHub Actions - For building and application deployment

And in order to start the blogging from anywhere I need to introduce:

  • Claude Code (with /remote-control)
  • Pexels - This will be used to upload imagery into the blog

I run the claude CLI command from the same directory as the web application and generate a prompt which gets Claude to create a skill (always in plan mode first):

Blogging in 2026

"Create a skill which automatically creates a blogPost in Contentful, credentials are available in the .env.local file. Look at the blogPost content type and use the schema to ask questions for my input. Always set date to now and the author to me. Use the Pexels API to copy an image and upload it to the blogPost entry. When finished present me the draft preview URL before publishing so that I can check the post"

After a few questions and once I'm happy with the plan I then accept edits and let Claude proceed, which then generates a skill .claude/skills/create-blog-post.SKILL.md

I now have a skill called /create-blog-post which will automatically generate a blogPost entry in Contentful. However I want to run this skill from anywhere hence I now need to use the /remote-control [NAME] command: Claude Remote Control CLI I used the name onelnx

Then I get a notification on my phone as I already have Claude installed. Once I go into Claude I see a remote-control session with the name onelnx available for me to use.Claude Code App Remote Session

I can now use the skill on my phone with the remote-control connection to create a post. Below is an example of what's possible, as I used defaults to quickly generate the content.
Claude Code Create Blog Prompt
Claude Code Create Blog Process
Claude Code Create Blog Output
Claude Code Create Blog Result

← Back to Blog