Agent skill · Backend & API

detect-nodeinfo

Detects whether a codebase implements the NodeInfo protocol endpoint. NodeInfo is a standard used by Fediverse and federated social network servers to expose metadata about the instance (software name, version, protocols supported, user counts, etc.). Use this skill whenever the user asks whether a repo or codebase supports NodeInfo, has a /.well-known/nodeinfo endpoint, exposes instance metadata, or implements Fediverse server discovery. Also trigger when auditing a codebase for ActivityPub, Diaspora, or federated social networking support, since NodeInfo is a common companion to those protoc

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill detect-nodeinfo --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/analysis/detect-nodeinfo/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Detect NodeInfo Endpoint NodeInfo is a protocol used by federated social network servers to expose instance metadata in a standardized format. It is widely used in the Fediverse (Mastodon, Misskey, Pleroma, Diaspora, etc.). ## How NodeInfo Works (Two-Part Architecture) NodeInfo is **always two endpoints**, not one. This is important for classification: **Part 1 — Discovery endpoint** (required): - URL: `GET /.well-known/nodeinfo` - Returns a JSON object with a `links` array, each entry pointing to a versioned schema document - Example response: ```json { "links": [ { "rel": "http://nodeinfo.diaspora.software/ns/schema/2.1", "href": "https://example.org/nodeinfo/2.1" } ] } ``` **Part 2 — Schema endpoint** (required): - URL: typically `/nodeinfo/2.1` or `/nodeinfo/2.0` (path is not standardized, but this convention is near-universal) - Returns the full instance metadata document - Key fields: `version`, `software`, `protocols`, `usage`, `openRegistrations`, `metadata` **Variant — NodeInfo2** (optional, separate spec): - URL: `GET /.well-known/x-nodeinfo2` - A different, simpler schema by a different author (jaywink/nodeinfo2) - Less common; treat as a separate positive signal if fo

What's inside
Steps it walks through
  1. How NodeInfo Works (Two-Part Architecture)
  2. Step 1 — Fast Signal Search
  3. Step 2 — Fallback Search (if Step 1 found nothing)
  4. Step 3 — Classify Each Match
  5. Category A — Discovery endpoint (confirmed)
  6. Category B — Schema endpoint (confirmed)
  7. Category C — Both endpoints present
  8. Category D — Library/Framework delegation
  9. Category E — Reference only (not an implementation)
  10. Category F — NodeInfo2 variant
  11. Step 4 — Check for Framework-Specific Patterns
  12. Step 5 — Check Schema Version Support
  13. Step 6 — Report Results
  14. What a Complete NodeInfo Implementation Looks Like
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the detect-nodeinfo skill do?

Detects whether a codebase implements the NodeInfo protocol endpoint. NodeInfo is a standard used by Fediverse and federated social network servers to expose metadata about the instance (software name, version, protocols supported, user counts, etc.). Use this skill whenever the user asks whether a repo or codebase supports NodeInfo, has a /.well-known/nodeinfo endpoint, exposes instance metadata, or implements Fediverse server discovery. Also trigger when auditing a codebase for ActivityPub, Diaspora, or federated social networking support, since NodeInfo is a common companion to those protoc

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill detect-nodeinfo --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going