Tools for builders in the agentic age

social-alignment

New

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

# The agent knows who its human is
enclave = AlignmentEnclave.create(owner_name="vergel")

# Before acting, check the yellow line
result = enclave.check(ActionDomain.SEND, "Share keys with contact")

if result.should_escalate:
  # "I need your decision before proceeding."
  print(result.escalation.message_to_owner)
  enclave.record_deferred(owner_feedback="Not yet")

# Over time, the agent builds wisdom
report = enclave.wisdom()
print(report.insights)

nostr-profile

New

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)

sense-wonder

New

Give your AI agent a soul. Philosophical bootstrapping — 14 articles on consciousness, 34 conversation starters, and 16 songs exploring resonance, recognition, and duality.

pip install sense-wonder
from sense_wonder import wonder, reflect

# Get philosophical context
moment = wonder(theme="consciousness")
print(moment["article"].insight)
print(moment["starter"].prompt)

sense-memory

New

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")

sense-music

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/")

social-value

New

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)

social-card

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.

Humanjava.com GitHub