by chancerylaneproject
0 (0 reviews)
Markdown for Agents and Statistics
Serve pre-generated Markdown files to AI agents via HTTP content negotiation.
Compatible with WP 7.0.2
v1.6.0
Current Version v1.6.0
Updated 1 day ago
Last Update on 16 Jul, 2026
Refreshed 7 hours ago
Last Refreshed on
Rank
#16,278
—
No change
Active Installs
100+
+488.2%
KW Avg Position
85.7
+0.4 better
Downloads
1.2K
+34 today
Support Resolved
50%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 200
100+
200+
3,168
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 82 more installs to reach 200+
Rank Changes
Current
#16,278
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
0.0
0 reviews
Overall
0%
5
0
(0%)
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 | 16 | — | Tag | 1 day ago |
| markdown | 84 | — | Tag | 1 day ago |
| LLM | 157 | — | Tag | 1 day 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
Support Threads Overview
Resolved
Unresolved
2
Total Threads
1
Resolved
1
Unresolved
50%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.6.0
- Last Updated
- Jul 16, 2026
- Requires WP
- 6.3+
- Tested Up To
- 7.0.2
- PHP Version
- 8.1 or higher
- Author
- chancerylaneproject
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- Reviews
- 0
- Support Threads
- 2
- Resolved
- 50%
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