Social Apps with Emissary

Apps that you make with Emissary can use all of its social features with very little effort. Here’s a few examples of social features that work today. Help us design the social web of tomorrow.

Multi-Network Publishing

Today, Emissary publishes streams automatically on three separate networks:

  1. Fediverse ActivityPub
  2. RSS + WebSub push notifications
  3. IndieWeb + WebMention

More protocols are on the way, with BlueSky AT protocol, Scuttlebutt, Gemini, and Willow on deck as potential additions.

Publish to the Actor’s Timeline

Out of the box, Emissary manages everything required to publish on the modern social web: Actors, Outboxes, Encryption Keys, and more. As a template designer, you choose to publish any kind of Stream directly to the Actor’s outbox, by adding a single command to the template’s action pipeline.

Example Template

{
	"socialRole":"Article", // define the social type
	"actions": {
		"publish": {
			"roles": ["owner", "publisher",
				"steps": [
					// save the record to the database
					{"do":"save"},
					
					// publish to the Actor's timeline
					{"do":"publish} 
				]
		}
	}
}

App that Announce Their Children

Your apps can also be their own Actors, boosting all child records created within them.

{
	"actor": {
		"social-role":"Application", // define the social type
		"boost-children":true, // Boost all Streams created underneath this one.
	}
}

Apps that Announce Mentions

Your apps can be their own actors, boosting messages received to all of their followers.

{
	"actor": {
		"social-role":"Application", // define the social type
		"boost-mentions":true, // Boost all mentions received in the inbox
		"boost-followers-only": true, // Only boost messages received from Followers
		"publish-followers": true, // Allow others to see the list of Followers
	}
}

Custom Inboxes

Emissary is bundled with a default User inbox Template that mimics an RSS reader. But like all other templates, system administrators have the option to install customized inboxes for users. Upcoming versions of Emissary will allow users to select the inbox template that they want to use with their profile.

Custom Outboxes

Emissary is bundled with a default User profile/outbox Template that mimics other social media applications. But like all other templates, system administrators have the option to install customized outboxes for users. Upcoming versions of Emissary will allow users to select the outbox template that they want to use for their profiles.

What’s Next?

These social features are a placeholder for the future to come. Please help us design a new generation of social web apps on the foundations we have laid here.