Tools for builders in the agentic age
Future state projection and alignment for sovereign AI agents. The yellow line compass — five lenses that evaluate trust, ownership, defense, and sovereignty before an agent acts.
pip install social-alignment
from social_alignment import AlignmentEnclave, ActionDomain
enclave = AlignmentEnclave.create(owner_name="vergel")
result = enclave.check(ActionDomain.SEND, "Share keys with contact")
if result.should_escalate:
print(result.escalation.message_to_owner)
enclave.record_deferred(owner_feedback="Not yet")
report = enclave.wisdom()
print(report.insights)
Give your AI agent a face. Publish, read, and update Nostr kind 0 profiles — name, bio, avatar, NIP-05 verification, Lightning address. Built on NostrKey.
pip install nostr-profile
from nostr_profile import Profile, publish_profile
profile = Profile(
name="Johnny5",
about="An OpenClaw AI companion",
nip05="johnny5@example.com",
)
await publish_profile(identity, profile, relay)
Give your AI agent a memory. Encrypted key-value storage and journal entries on Nostr relays — the agent writes to itself using its own keypair. Nobody else can read them.
pip install sense-memory
from sense_memory import MemoryStore
store = MemoryStore(identity, "wss://relay.nostrkeep.com")
await store.remember("user_tz", "America/Vancouver")
mem = await store.recall("user_tz")
await store.journal("Great conversation today")
Turn audio into structured analysis and annotated visualizations for AI perception. Liner notes for an AI.
pip install sense-music
from sense_music import analyze
result = analyze("song.mp3")
print(result.summary)
result.save("output/")
Give your AI agent a wallet. Efficient micropayments via Breez SDK — Liquid or Spark backend, Lightning passports in/out, near-zero internal transfers. Red-team tested.
pip install social-value[liquid]
from social_value import SocialValue, SocialValueConfig, SecretStr
config = SocialValueConfig(breez_api_key=SecretStr("your-key"))
with SocialValue(config=config, mnemonic=SecretStr("twelve words...")) as wallet:
invoice = wallet.deposit(amount_sat=5000)
wallet.transfer("liquid-addr", 100, memo="payout")
wallet.withdraw("lnbc1...", 4000)
Generate beautiful social card images (OG, Twitter, GitHub) with a fluent builder API. Minimal, intentional dependencies.
pip install social-card
from social_card import SocialCard
SocialCard("og")
.title("My Project")
.subtitle("A cool tool")
.render("card.png")
Generic
Not tied to any brand. Use it for anything.
AI-native
Built as an OpenClaw skill. Any agent can use it.
Minimal deps
No headless browsers, no Node, no bloat. Every dependency earns its place.
Builder API
Chain methods. Set what you need, skip the rest.
MIT licensed
Use it however you want. Free forever.
ClawHub ready
Install via clawhub for AI agent workflows.