← Back to registry /

Nefesh Human State Agent

A2A conformant A2A v0.3.0

Nefesh Human State Agent

v1.0.0 Nefesh AI

Provides real-time human physiological state awareness for AI agents. Fuses biometric signals (heart rate, HRV, voice, facial expression, text sentiment) into a unified stress score (0-100) with behavioral adaptation prompts. Includes trigger memory for cross-session psychological context and adaptation effectiveness feedback.

Launch agent website ↗

Skills

  • Get Human State

    Returns current stress state (0-100), suggested_action (maintain/simplify/de-escalate/pause), and adaptation_effectiveness showing whether your previous action reduced stress.

    biometricsstressadaptation
  • Ingest Biometric Signals

    Send biometric signals (heart rate, HRV, voice tone, expression, sentiment, 30+ fields) and receive unified state. Include subject_id for cross-session trigger memory.

    biometricssignalsingest
  • Get Trigger Memory

    Retrieve psychological trigger profile - which conversation topics cause stress (active) and which have been resolved over time.

    triggerspsychologymemory
  • Get Session History

    Timestamped state history with trend (rising/falling/stable). Useful for detecting stress patterns during conversations.

    historytrends

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("e794f66f-5461-4d61-a7da-ad138e13718f")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())