Feature: PushMD - Media upload & upsert support for push-only staging workflow
Nobody has claimed this yet.
Assessment
- Difficulty
- 5/5
- Estimated time
- Over a week
- Newbie friendliness
- 35/100
Research direction
Start with the push synchronization path and the mentioned export_media_content() behavior, then trace how WordPress uploads are handled. Use the proposed media/ workflow, validation rules, URL rewriting, upsert behavior, and pull cleanup as acceptance criteria; the issue names no implementation files or tests, so project discovery is required.
Written by the indexing model from the issue text.
Description
Summary / Context
Currently, Push MD allows Markdown-first teams and AI coding agents to clone, edit, and push WordPress posts, pages, and templates. However, there is no support for managing post image assets through Git. When an author or agent creates a new post locally that includes diagrams, screenshots, quote cards, or a featured image, they must manually upload those images via WP-Admin and copy the resulting URLs back into Markdown before pushing.
I propose adding native Git media support to Push MD using a push-only staging directory (media/). Authors can drop image binaries into media/, reference them using relative paths in Markdown or Gutenberg blocks, and push via Git. Push MD handles fail-closed image validation, uploads/upserts the files into the WordPress Media Library, rewrites all inline content & block references to absolute WordPress attachment URLs, and cleans up the staging files on git pull to keep local checkouts lightweight.
Why Media Upload Support is Useful
- Complete Offline & Agent Workflows: Coding agents and local Markdown editors (Obsidian, VS Code, Cursor) can create complete posts - text and images - in a single Git commit without requiring manual WP-Admin file uploads.
- Lean Local Repositories (Push-Only Staging): By operating
media/as a push-only staging area, binary image blobs do not accumulate in Git history or bloat local checkouts over time. - In-Place Image Versioning: Updating an existing image via Git overwrites the file on disk and regenerates WordPress image metadata without creating duplicate attachment records (
image-1.png,image-2.png). - Automatic Attachment Metadata: Alt text, image titles, and
<figcaption>captions written in Markdown or HTML automatically populate WordPress attachment metadata.
Proposed Architecture & Workflow
1. The media/ Staging Directory
- A
media/directory is present in the repository tree (maintained via amedia/.gitkeepplaceholder). - Authors place image files directly under
media/(e.g.media/architecture-diagram.png). - In post Markdown, images are referenced using standard relative syntax:
---
title: "New Product Launch"
featured_image: "../media/hero.webp"
---

2. Push-Time Ingestion & URL Rewriting
When a commit is pushed to trunk:
- Upfront Payload Ingestion: Push MD detects files in
media/, validates them, and uploads them to the WordPress Uploads folder, creating or updating attachment records. - Contextual Metadata Assignment: Alt text (
), titles ("Title Text"), and figure captions (<figcaption>...</figcaption>) in post markup populate_wp_attachment_image_alt,post_title, andpost_excerpton the corresponding attachment. - Multi-Format Content Rewriting: Relative
media/paths are rewritten to absolute WordPress upload URLs across:- Markdown image syntax:
 - HTML attributes:
src,href,poster,srcsetacross<img>,<source>,<figure>, and<a>tags - Gutenberg Block comment JSON metadata:
<!-- wp:image {"id":0,"url":"../media/chart.png"} -->(updatesid,mediaId, andurlfields) - Front matter
featured_image(assigns post thumbnail attachment ID)
- Markdown image syntax:
- Filename-Based Re-Linking: If a Markdown post is pushed in a later commit referencing
media/existing-chart.png(where the binary is no longer in the commit tree), Push MD resolvesexisting-chart.pngagainst existing Media Library attachments by filename and links it cleanly.
3. Automatic Working Tree Cleanup (git pull)
- Binary images are ingested into the WordPress Media Library on push.
- To prevent binary bloat, Push MD does not export the Media Library into Git on clone/fetch (
export_media_content()returns an empty array). - On the next
git pull, repository synchronization notices the pushed image files are no longer exported by WordPress and creates a sync commit that deletes the staging image files from the Git tree while preservingmedia/.gitkeep. - Git fast-forwards the local working directory, automatically deleting the local
media/image.pngfile while keeping themedia/folder intact.
4. In-Place Upserts (Image Versioning)
- Standard WordPress
wp_upload_bits()renames same-named uploads toimage-1.png,image-2.png, creating duplicate attachment records. - Push MD checks if an attachment with the exact filename already exists. If found:
- Overwrites the file on disk (
get_attached_file()) in-place. - Regenerates image metadata (dimensions, thumbnails) via
wp_generate_attachment_metadata(). - Returns the existing attachment ID and URL, preserving existing post references.
- Overwrites the file on disk (
Security, Validation & Safety Model
Push MD operates on a strict fail-closed safety model:
- Extension Whitelist: Only
.png,.jpg,.jpeg,.gif, and.webpextensions are accepted. - Binary MIME Type Detection: Validates raw binary headers using
finfo_bufferwith fallback magic-number inspection (\x89PNG\r\n\x1a\n,\xFF\xD8\xFF,GIF87a/GIF89a,RIFF...WEBP) to prevent extension spoofing or execution of non-image payloads. - Path Traversal Protection: Rejects paths containing
..or attempted directory escapes outsidemedia/. - WordPress Capability Checks: Media upload processing runs within the authenticated user session, respecting WordPress editorial capabilities.
- Non-Image Filtering: Non-image placeholder files in
media/(such as.gitkeep) are skipped during ingestion without raising validation errors.
Why not WordPress media REST API?
I implemented this using REST API initially, but that requires additional maintenance, authentication and integration. Doing it via PushMD is much cleaner approach.
- Dominant language
- PHP
- Stars
- 22
- Forks
- 5
- PR merge metrics
- No merged PRs in 30d
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from Automattic/php-toolkit
-
Difficulty 2/5 1-3 hours Newbie friendliness 84/100
Automattic/php-toolkit#89 ·
-
Difficulty 3/5 1-2 days Newbie friendliness 76/100
Automattic/php-toolkit#95 ·
-
Difficulty 5/5 Over a week Newbie friendliness 25/100
Automattic/php-toolkit#91 ·
-
Difficulty 4/5 3-5 days Newbie friendliness 48/100
Automattic/php-toolkit#88 ·
-
Difficulty 5/5 Over a week Newbie friendliness 25/100
Automattic/php-toolkit#87 ·
All issues in Automattic/php-toolkit
Similar issues
-
Solved site promotion gate fails on runner PHP patch drift (expects 8.2.33, runner installs 8.2.34) Open
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
Automattic/blocks-engine#2161 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
Automattic/static-site-importer#1824 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
-
0. Needs triage bug
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
-
0. Needs triage 35-feedback bug
Difficulty 2/5 1-3 hours Newbie friendliness 75/100