Skip to content

kagisearch/smallweb

Repository files navigation

Kagi Small Web

Kagi's mission is to humanize the web and this project is built to help surface recent (7 day old or newer) results from the small web - people and stories that typically zip by in legacy search engines. Read more about it in the announcement blog post.

Few things to note:

Criteria for posts to show on the KSW website

If the blog is included in small web feed list (which means it has content in English, it is informational/educational by nature and it is not trying to sell anything) we check for these two things to show it on the site:

  • Blog has recent posts (<7 days old)
  • The website can appear in an iframe

Small web is beautiful

What is Small Web exactly? Recommend reading:

Info

smallweb.txt - Contains the feeds of indexed blogs

smallyt.txt - Contains the feeds of indexed YouTube channels

yt_rejected.txt - Contains the list of YouTube channels that were reviewed (in an automated way) and rejected

app/ - App powering the Kagi Small Web website

Add a site or channel to the list

Add a new personal blog RSS feed to the list. Rules:

  • Do not submit your own website unless you submit 2 other sites that are not yours (and are not in list).
  • Locate and submit the RSS feed of the website. Place in the file so that it remains sorted.
  • Content must be in English (currently, other languages are not accepted).
  • No illegal or NSFW content.
  • No auto generated, LLM generated or spam content.
  • Only personal blogs may be submitted.
  • The blog must have a recent post, no older than 12 months, to meet the recency criteria for inclusion.
  • The site must not contain any forms of advertisements or undisclosed affiliate links
  • Site should not have newsletter signup popups (substack sites are not accepted too)
  • A YT channel must not post more than twice a week.
  • A YT channel must have fewer than 400,000 subscribers.

Add website RSS feed

Hint: To extract the RSS link from a YouTube channel, you can use this tool.

Add YouTube channel RSS feed

Remove a site or a channel

Remove a website if :

  • It does not adhere to the above guidelines
  • In the removal request, state which guideline does it break

Clicking "Remove website" will edit small web list in new tab, where you can locate and remove the website feed in question. Make sure to add in comments the rason for removal.

Remove website

Remove channel

Sources

Small web

The original list of small web blogs has been assembled from various sources including:

YouTube channels

The seed list for YouTube channels has been assembled from these HN discussions.

Useful commands

Show duplicate domains:

awk -F/ '{print $3}' smallweb.txt | sort | uniq -d | while read domain; do echo "$domain"; grep "$domain" smallweb.txt; echo ""; done