by chancerylaneproject
5 (1 reviews)
Markdown for Agents and Statistics
Serve pre-generated Markdown files to AI agents via HTTP content negotiation.
Compatible with WP 7.0
v1.4.1
Current Version v1.4.1
Updated 4 hours ago
Last Update on 30 Apr, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#31,712
—
No change
Active Installs
10+
—
No change
KW Avg Position
109.7
—
No change
Downloads
93
+37 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 20
10+
20+
4,716
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 3 more installs to reach 20+
Rank Changes
Current
#31,712
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| content negotiation | 15 | — | Tag | 1 week ago |
| LLM | 120 | — | Tag | 1 week ago |
| markdown | 194 | — | Tag | 1 week ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.4.1
- Last Updated
- Apr 30, 2026
- Requires WP
- 6.3+
- Tested Up To
- 7.0
- PHP Version
- 8.1 or higher
- Author
- chancerylaneproject
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Markdown for Agents and Statistics
Inside wp-content/uploads/{export_dir}/ (configurable in Settings). Post files live under {export_dir}/{post-type}/{slug}.md. Taxonomy archive files live under {export_dir}/taxonomy/{taxonomy}/{term-slug}.md. The directory is served by WordPress when content negotiation is triggered.
No. Markdown files are generated ahead of time (on post save or via manual/CLI bulk generation). Serving them is a simple file read, much faster than rendering a full WordPress page.
For every public taxonomy term (categories, tags, custom taxonomies) the plugin generates a Markdown file listing all published posts in that term with links and excerpts. These are served automatically when an AI agent requests a taxonomy archive URL. This lets agents navigate your site structure by exploring term listings, not just individual posts.
created inside each post-type export folder (e.g. wp-mfa-exports/post/manifest.json). It contains a registry of all exported documents with content hashes and change tracking (new/modified/unchanged/deleted), enabling RAG systems to identify what changed since the last export without reprocessing all documents.
Use wp markdown-agents generate --incremental to only re-export documents that have changed since the last export. The plugin compares content hashes against the previous manifest.json and skips unchanged posts. This also generates a changes.json delta file listing new, modified, and deleted documents — your RAG system can read this to know exactly what to re-embed.
In Settings → Markdown for Agents, each enabled post type has its own "Field Configuration" section with two textareas: Frontmatter fields — meta or ACF fields added to the YAML frontmatter. Content fields — meta or ACF fields used as the body content. When set, post_content is automatically excluded. Use dot notation for ACF group fields (e.g. clause_fields.clause_summary). Plain meta keys work too (e.g. _yoast_wpseo_title). ACF relationship fields
Yes. Several filters are available: markdown_for_agents_pre_convert — filter HTML before conversion markdown_for_agents_post_convert — filter Markdown after conversion markdown_for_agents_frontmatter — modify frontmatter fields for a post markdown_for_agents_taxonomy_frontmatter — modify frontmatter fields for a taxonomy archive markdown_for_agents_serve_enabled — enable/disable serving for a specific post markdown_for_agents_serve_taxonomies — enable/disable serving for taxonomy archive pages markdown_for_agents_file_generated — action fired after a file is written markdown_for_agents_file_deleted — action fired after a file is deleted
wp markdown-agents generate-taxonomies wp markdown-agents generate-taxonomies --taxonomy=category wp markdown-agents generate-taxonomies --dry-run