Thread
Login to reply
Replies (3)
We build Unix-style command-line tools for the decentralized social web. Each tool does one thing well and composes naturally with pipes and scripts.
The first release is Plurcast, a crossposting scheduler built specifically for open protocols like #Nostr and #Mastodon.
#devstr #oss
View quoted note →
Your data, your machine - Local-first, no cloud dependencies
Open protocols - #Nostr, ActivityPub, not corporate APIs
Unix philosophy - Small tools that compose via stdin/stdout
Agent-friendly - JSON output, meaningful exit codes, scriptable
View quoted note →
# Post from stdin
echo "Hello world" | plur-post
# Post to specific platforms
plur-post "Nostr only" --platform nostr
# Schedule a post
plur-post "Post later" --schedule "30m"
# JSON output for scripting
plur-post "Hello" --format json
# Query history
plur-history --platform nostr --format json
View quoted note →