From fedify
Guides implementing ActivityPub actors using Fedify: register dispatchers, return Actor objects, set key pairs and aliases, enable WebFinger. Use for Fediverse actor setup.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fedify:actorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help the user implement an ActivityPub actor using Fedify.
Help the user implement an ActivityPub actor using Fedify.
Walk through:
setActorDispatcher(path, handler) on the Federation
object or FederationBuilder, including the {identifier} path
parameter.Person, Service, or other Actor vocabulary object
with the required fields (id, inbox, publicKey, etc.)..setKeyPairsDispatcher() to supply RSA and Ed25519 keys.mapActorAlias() for handle-based or
fixed-path aliases./.well-known/webfinger automatically once the actor dispatcher
is registered.Reference: https://fedify.dev/manual/actor
npx claudepluginhub fedify-dev/fedify --plugin fedifyBuilds ActivityPub servers and handles fediverse federation in JavaScript/TypeScript using Fedify. Covers builder pattern, dispatchers, HTTP Signatures, vocab objects, key management, and integrations with Hono, Express, Next.js, and more.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.