apps.json

A small file for publishing the apps you make. Put it at yourdomain.com/apps.json, list your apps, and people can discover, follow, render, install, and fork them from anywhere.


Why this exists

More people are making small, personal software: tools, experiments, Claude skills, prototypes, tiny utilities, and apps that do one useful thing.

But there is no simple way to follow someone's apps as a set. They are scattered across GitHub repos, launch posts, personal sites, app stores, Discord links, and half-forgotten demos.

apps.json gives those apps a home on the open web. It is RSS-ish: publish one plain file, and any reader, crawler, launcher, directory, or search engine can understand it.

How it works

Create a file at:

https://yourdomain.com/apps.json

Start small:

{
  "version": "1.0",
  "apps": [
    { "name": "My Cool App", "url": "https://example.com/cool" }
  ]
}

That is enough.

Add claims when they help

Apps are different from posts. People want to know where an app runs, whether it is current, whether the source is available, whether it was vibe-coded, and whether it can be forked.

apps.json handles that with optional creator claims:

{
  "name": "My Cool App",
  "url": "https://example.com/cool",
  "version": "1.2.0",
  "tags": ["writing", "utility"],
  "vibe_coded": true,
  "forkable": true,
  "source": "https://github.com/example/cool",
  "prompt_log": "https://example.com/cool/prompts",
  "targets": [
    { "kind": "web", "url": "https://example.com/cool", "label": "Open" }
  ]
}

These are not certifications from apps.json. They are useful facts declared by the creator. Readers can show them, search over them, and build trust layers on top later.

Principles

Tools

These are optional reference tools around the standard:

They are examples and helper workflows, not required infrastructure. The standard is still just the apps.json file.

Try it

Append your feed URL as a query string:

https://apps-json.org/?feed=https://yourdomain.com/apps.json

Status

Spec is v1.0 (draft). The reader, badge, seeded directory, and digest are example tools built around the format. They are not required infrastructure, and they are not a platform.

Loading seeded directory…