pilotmyx.com
Understand what works on X/Twitter, then plan what comes next.
Monthly data report
Every number below is the direct output of the SQL query printed under it. Nothing on this page is typed by hand.
Data current as of .
| Headline number | Value |
|---|---|
| Submissions received | 83 |
| Verification rate | 85.5% |
| Median time to verify | 0.0h |
| Launches | 61 |
| Self-scheduled share | 0% |
| Indexable share | 52.5% |
Each figure is expanded, with its own query, in the matching section below.
| Source | Submissions |
|---|---|
| Web | 77 |
| MCP | 6 |
select source, count(*)::int as n
from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z'
and source not like 'seed%'
group by source
order by source;| Measure | Value |
|---|---|
| Submissions received | 83 |
| Verified | 71 |
| Verification rate | 85.5% |
| Median time to verify | 0.0h |
select
(select count(*)::int from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z' and source not like 'seed%') as total,
(select count(*)::int from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z' and source not like 'seed%'
and verified_at is not null) as verified,
(select percentile_cont(0.5) within group (order by extract(epoch from (verified_at - created_at)) / 3600.0)
from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z' and source not like 'seed%'
and verified_at is not null) as median_hours_to_verify;| Measure | Value |
|---|---|
| Launched | 61 |
| Self-scheduled | 0 |
| Self-scheduled share | 0% |
select
count(*)::int as total,
count(*) filter (where self_scheduled)::int as self_scheduled
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
and source not like 'seed%';| Pricing model | Launches |
|---|---|
| Pricing unlisted | 59 |
| Freemium | 2 |
No launch this month gave a starting price.
select pricing_model, count(*)::int as n
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
and source not like 'seed%'
group by pricing_model
order by n desc, pricing_model;
select count(*)::int as priced,
percentile_cont(0.5) within group (order by pricing_amount_usd) as median_price_usd
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
and source not like 'seed%'
and pricing_amount_usd is not null;| Category | Launches |
|---|---|
| AI & ML | 11 |
| Utilities | 10 |
| Finance | 6 |
| API & Dev Tools | 5 |
| Marketing & SEO | 4 |
| Privacy & Security | 4 |
| E-commerce | 3 |
| Social Media | 3 |
select c.slug, c.name, count(*)::int as n
from product_categories pc
join products p on p.id = pc.product_id
join categories c on c.slug = pc.category_slug
where pc.is_primary
and p.status = 'launched' and p.launch_date >= '2026-08-01' and p.launch_date < '2026-09-01'
and p.source not like 'seed%'
group by c.slug, c.name
order by n desc, c.name
limit 8;| Measure | Value |
|---|---|
| Launched | 61 |
| Indexable | 32 |
| Indexable share | 52.5% |
| Median description length | 32 words |
| Under 100 words | 60 (98.4%) |
A listing under 100 original words in its description is the single most common reason a page ships noindex — see how ranking works.
with launched as (
select is_indexable,
case when btrim(coalesce(description, '')) = '' then 0
else array_length(regexp_split_to_array(btrim(description), '\s+'), 1)
end as words
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
and source not like 'seed%'
)
select
count(*)::int as total,
count(*) filter (where is_indexable)::int as indexable,
count(*) filter (where words < 100)::int as under_100_words,
percentile_cont(0.5) within group (order by words) as median_words
from launched;| Referrer | Submissions |
|---|---|
| Unattributed | 83 |
select
case
when referrer_source = 'chatgpt.com' then 'chatgpt.com'
when referrer_source = 'mcp' then 'mcp'
when referrer_source is null then 'unattributed'
else 'other'
end as bucket,
count(*)::int as n
from submissions
where created_at >= '2026-08-01T00:00:00.000Z' and created_at < '2026-09-01T00:00:00.000Z'
and source not like 'seed%'
group by bucket
order by n desc;No page-request rows recorded this month.
select bucket, sum(n)::int as n
from listing_requests
where day >= '2026-08-01' and day < '2026-09-01'
group by bucket
order by n desc;pilotmyx.com
Understand what works on X/Twitter, then plan what comes next.
imperio-app.com
Reçus scannés, TVA calculée, comptable heureux
timetopost.co
Social media scheduling built for humans and their AI agents.
domscan.net
Collect public web data, investigate domains and infrastructure, assess trust signals, verify digital identity inputs,…
selling-planet.com
광고 단가·최소 수량·필수 정보를 먼저 비교하고 직접 주문하며, 네이버 순위·ROAS·UTM 도구를 무료로 쓰는 한국어 셀프 마케팅 플랫폼
alltoolsverse.com
1,000+ free browser tools for development, files, images, text, data, and everyday tasks.
yamate.au
Quote on site, invoice with PayID, chase late payers and know who owes you money.
escapechatcontrol.com
Practical privacy guidance while messaging scanning laws advance
screenshotlens.com
Full-page screenshots, rolling video, and a clean REST API.
vrizen.com
AI-powered solutions and automation that help businesses work smarter and grow faster.
select *
from products
where status = 'launched' and launch_date >= '2026-08-01' and launch_date < '2026-09-01'
and source not like 'seed%'
order by (votes_count + ai_score) desc, launch_date desc
limit 10;