Skip to content

kagisearch/smallweb

Repository files navigation

Kagi Small Web

Kagi Small Web is an initiative by Kagi.

Kagi's mission is to humanize the web and this project is built to help surface recent 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:

⚠️ Guidelines for site inclusion to the list ⚠️

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

  • If submitting your own website, you must add at least 2 other sites that are not yours (and are not in list yet) in the same commit.
  • Locate and submit the RSS/Atom 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. (see below for the nuance)
  • Only personal blogs may be submitted (no multi-author blogs).
  • 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 popups (newsletter signup, cookie selection, etc)
  • A Youtube channel must not post more than twice a week.
  • A Youtube channel must have fewer than 400,000 subscribers.

For comics:

  • Must be independently created art (no AI generated content)
  • RSS feed must show the full comic in the feed
  • No commercial syndicated comics

Guidelines on LLM usage:

  • Intent matters - use of LLMs to deceive, overwhelm, or otherwise taint the rules of good discourse is not allowed.
  • No "content automation" - content must be heavily guided by and reviewed by humans and done at human scale for human audiences. Examples of "guided by" are: outlines or drafts of content covering the main idea and key points, and "reviewed by" is a human reading and checking to make sure it adheres to their intent.
  • Acknowledgment - Effort should be made to acknowledge heavier LLM usage (via sidebar, authorship byline, or other such marker.)
  • General assistance - Use of LLMs to assist in human authors communicating is otherwise fine, and viewed as having little difference from using a spell checker or grammar checker, as long as the above points are followed.

Add website RSS feed

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

Add YouTube channel RSS feed

Add Comic 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 reason for removal.

Remove website

Remove channel

What we show on the site

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

The pages will still show in Kagi search results even if they cannot show on the site due technical reasons (eg iframe not allowed).

The Small Web seal: badge of authentic creation

Small Web initiative members can display badges on their websites to identify themselves as part of a community committed to authentic, human-centered content.

Small Web Seal

Small Web Seal

Small Web Seal

Small Web Seal

Small Web Seal

Small Web Seal

Small Web Seal

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

smallcomic.txt - Contains the feeds of indexed independent comics

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

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