Botkibble
by gregrandall 1 (0 reviews)

Botkibble

Serves every published post and page as Markdown for AI agents and crawlers. No configuration, no API keys. Activate and it works.

Botkibble ranks #68,653 among WordPress.org plugins with 1+ active installations, a 1/5 rating from 0 reviews, and was last updated Feb 26, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.9 (Current: 7.1.2)
v1.3.0 Current Version v1.3.0
Updated 6 months ago Last Update on 26 Feb, 2026
Refreshed 11 hours ago Last Refreshed on
View on WordPress.org
Rank
#68,653
No change
Active Installs
1+
No change
KW Avg Position
N/A
No change
Downloads
182
+1 today
Support Resolved
0%
No change
Rating
20%
Review 1 out of 5
1 (0 reviews)

Next Milestone 10

Total Progress 10%
0+ 10+
55,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
Upgrade to Pro
Need 9 more installs to reach 10+

Rank Changes

55,684 59,349 63,015 66,680 70,345 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
47,445 53,438 59,432 65,426 71,419 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Current #68,653
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 10 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
0 10 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026 22-09-2026 23-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

1.0
0 reviews
Overall 20%
5
0 (0%)
4
0 (0%)
3
0 (0%)
2
0 (0%)
1
0 (0%)

Track This Plugin

Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.

Start Tracking Free

Plugin Details

Version
1.3.0
Last Updated
Feb 26, 2026
Requires WP
6.0+
Tested Up To
6.9
PHP Version
8.2 or higher
Author
gregrandall

Support & Rating

Rating
★ ☆ ☆ ☆ ☆ 1
Reviews
0
Support Threads
0
Resolved
0%

Keywords

Upgrade to Pro

Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.

Upgrade Now

Frequently Asked Questions

Common questions about Botkibble

The plugin only serves posts and pages by default. To add a custom post type, use the botkibble_served_post_types filter in your theme or a custom plugin: add_filter( 'botkibble_served_post_types', function ( $types ) { $types[] = 'docs'; return $types; } ); Be careful. Only add post types that contain public content. Do not expose post types that may contain private or sensitive data (e.g. WooCommerce orders).
Every response starts with a YAML block containing: title — the post title date — publish date in ISO 8601 format type — post type (e.g. post, page) word_count — word count of the Markdown body char_count — character count of the Markdown body tokens — estimated token count (word_count × 1.3) categories — array of category names (posts only) tags — array of tag names (posts only, omitted if none) Example: --- title: My Post Title date: '2025-06-01T12:00:00+00:00' type: post word_count: 842 char_count: 4981 tokens: 1095 categories: - Technology tags: - wordpress - markdown ---
Use the botkibble_frontmatter filter: add_filter( 'botkibble_frontmatter', function ( $data, $post ) { $data['excerpt'] = get_the_excerpt( $post ); return $data; }, 10, 2 );
Use the botkibble_content_signal filter: add_filter( 'botkibble_content_signal', function ( $signal, $post ) { return 'ai-train=no, search=yes, ai-input=yes'; }, 10, 2 ); Return an empty string to omit the header entirely.
Yes, use the botkibble_token_multiplier filter. The default multiplier of 1.3 (word count × 1.3) comes from Cloudflare's implementation: add_filter( 'botkibble_token_multiplier', function () { return 1.5; // Adjusted for a different model's tokenizer } );
Cache misses (when a post needs to be converted) are limited to 20 per minute globally. You can change this with the botkibble_regen_rate_limit filter: add_filter( 'botkibble_regen_rate_limit', function () { return 50; } );
Yes, use the botkibble_clean_html filter. This runs after the default cleanup and before conversion: add_filter( 'botkibble_clean_html', function ( $html ) { // Remove a plugin's wrapper divs $html = preg_replace( '/<div class="my-plugin-wrapper">(.*?)<\/div>/s', '$1', $html ); return $html; } );
Yes. Botkibble keeps converter node removal disabled by default (for backward compatibility), but you can opt in with botkibble_converter_remove_nodes: add_filter( 'botkibble_converter_remove_nodes', function ( $nodes ) { $nodes = is_array( $nodes ) ? $nodes : []; $nodes[] = 'script'; return $nodes; } ); If you also need application/ld+json, extract it in botkibble_clean_html first, then let converter-level script removal clean up any remaining script tags.
Use the botkibble_body filter. This is the best place to add content like ld+json that you want included in the word count and token estimation: add_filter( 'botkibble_body', function ( $body, $post ) { $json_ld = '<script type="application/ld+json">...</script>'; return $body . "\n\n" . $json_ld; }, 10, 2 );
Use the botkibble_output filter to append or modify the text after conversion: add_filter( 'botkibble_output', function ( $markdown, $post ) { return $markdown . "\n\n---\nServed by Botkibble"; }, 10, 2 );

Sign In / Register

You need to sign in or register to use this feature.