Crawler Summary

dytto answer-first brief

Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more from the user's phone and synthesizes it into queryable context. Think of it as Plaid, but for personal context. --- name: dytto description: "Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more f Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

dytto is best for access, be, see workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

dytto

Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more from the user's phone and synthesizes it into queryable context. Think of it as Plaid, but for personal context. --- name: dytto description: "Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more f

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Ayaan P

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/Ayaan-P/dytto-agent-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Ayaan P

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

export DYTTO_API_KEY="dyt_your_key_here"

json

{
  "api_key": "dyt_your_key_here"
}

bash

export DYTTO_EMAIL="user@example.com"
export DYTTO_PASSWORD="your-password"

bash

bash scripts/dytto.sh context          # Full profile — who is this person
bash scripts/dytto.sh summary          # Quick summary
bash scripts/dytto.sh patterns         # Behavioral patterns (routines, habits)
bash scripts/dytto.sh insights         # Derived insights

bash

bash scripts/dytto.sh search "career goals"        # Semantic search
bash scripts/dytto.sh story 2026-01-30             # Journal for a date
bash scripts/dytto.sh search-stories "trip to NYC" # Search stories

bash

# Observe — dump any text, Dytto extracts facts automatically
bash scripts/dytto.sh observe "User mentioned they prefer morning meetings. Had a chat about the robotaxi project."

# Structured fact storage (when you know exactly what to store)
bash scripts/dytto.sh store-fact "Prefers morning meetings" "work_preferences"

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more from the user's phone and synthesizes it into queryable context. Think of it as Plaid, but for personal context. --- name: dytto description: "Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more f

Full README

name: dytto description: "Give your agent persistent memory and real-time personal context via Dytto — the context API for AI agents. Use when you need to know about the user (who they are, what they care about, behavioral patterns, daily stories), search their life history, store new facts learned during conversation, or push context updates. Dytto collects location, weather, calendar, health, photos, and more from the user's phone and synthesizes it into queryable context. Think of it as Plaid, but for personal context."

Dytto — Personal Context for Agents

Dytto gives your agent memory. Query it to know who your user is, what happened today, and what they care about.

Base URL: https://dytto.onrender.com

Setup

Option 1: API Key (Recommended)

Get an API key from https://dytto.app/settings/api-keys

export DYTTO_API_KEY="dyt_your_key_here"

Or add to ~/.config/dytto/config.json:

{
  "api_key": "dyt_your_key_here"
}

That's it. API keys are scoped — you control what the agent can access.

Option 2: Email/Password (Legacy)

For personal agents that need full access:

export DYTTO_EMAIL="user@example.com"
export DYTTO_PASSWORD="your-password"

CLI Commands

Run via: bash scripts/dytto.sh <command> [args...]

Read Context

bash scripts/dytto.sh context          # Full profile — who is this person
bash scripts/dytto.sh summary          # Quick summary
bash scripts/dytto.sh patterns         # Behavioral patterns (routines, habits)
bash scripts/dytto.sh insights         # Derived insights

Search

bash scripts/dytto.sh search "career goals"        # Semantic search
bash scripts/dytto.sh story 2026-01-30             # Journal for a date
bash scripts/dytto.sh search-stories "trip to NYC" # Search stories

Write Context

# Observe — dump any text, Dytto extracts facts automatically
bash scripts/dytto.sh observe "User mentioned they prefer morning meetings. Had a chat about the robotaxi project."

# Structured fact storage (when you know exactly what to store)
bash scripts/dytto.sh store-fact "Prefers morning meetings" "work_preferences"

Use observe for everything — chat summaries, events, conversations, whatever. Just text in, context out.

External Data

bash scripts/dytto.sh weather 42.37 -71.11
bash scripts/dytto.sh news 42.37 -71.11 "Cambridge MA"

REST API Reference

All endpoints require Authorization: Bearer <token> header. Token can be:

  • API key: dyt_...
  • JWT from /api/auth/login
  • Service key (for hosted agents)

Context Endpoints

| Method | Endpoint | Description | Scopes | |--------|----------|-------------|--------| | GET | /api/context | Full context narrative | context:read or domain scopes | | GET | /api/context/summary | Quick summary | context:read or domain scopes | | GET | /api/context/patterns | Behavioral patterns | patterns:read or domain scopes | | GET | /api/context/insights | Derived insights | context:read or domain scopes | | GET | /api/context/now | Real-time snapshot (today's activities, upcoming schedule) | context:read or domain scopes | | GET | /api/context/quality | Context quality assessment | context:read | | GET | /api/context/latest | Latest context with timestamp | context:read or domain scopes | | POST | /api/context/search | Semantic search {"query": "..."} | search:execute or domain scopes | | POST | /api/context/scope | Task-based scoped context (see below) | domain scopes | | POST | /api/context/initialize | Initialize context (first-time setup) | context:write |

Scoped Context (/api/context/scope)

Task-based context retrieval. Agent describes what it needs, Dytto returns only relevant facts.

curl -X POST "https://dytto.onrender.com/api/context/scope" \
  -H "Authorization: Bearer dyt_..." \
  -H "Content-Type: application/json" \
  -d '{
    "task": "Drive user home from work, optimize route and climate",
    "agent_type": "robotaxi",
    "max_tokens": 2000,
    "categories": ["location", "preferences"]
  }'

Response includes:

  • context: Filtered facts, patterns, preferences
  • scoping_reasoning: Why these categories were selected
  • categories_used: Which fact categories were included
  • token_count: Approximate token count

Facts API (/api/v1/facts)

Structured fact storage and retrieval.

| Method | Endpoint | Description | |--------|----------|-------------| | POST | /api/v1/facts/query | Query facts with filters | | GET | /api/v1/facts/categories | List all fact categories | | GET | /api/v1/facts/<fact_id> | Get specific fact by ID |

# Query facts by category
curl -X POST "https://dytto.onrender.com/api/v1/facts/query" \
  -H "Authorization: Bearer dyt_..." \
  -d '{"categories": ["work", "projects"], "limit": 20}'

Observe Endpoint (/api/v1/observe)

The universal "text in → context out" method. Push any unstructured text — Dytto extracts meaning and stores it.

curl -X POST "https://dytto.onrender.com/api/v1/observe" \
  -H "Authorization: Bearer dyt_..." \
  -d '{
    "input": "Had a conversation about robotaxi integration. User prefers window seats and has a peanut allergy.",
    "source": "my_agent"
  }'

Dytto will:

  1. Extract atomic facts: "Prefers window seats", "Has peanut allergy", "Discussed robotaxi integration"
  2. Categorize: preferences, health, projects
  3. Deduplicate against existing facts
  4. Store with embeddings for search

Use this for everything: chat summaries, events, milestones, observations, whatever. Just dump text, Dytto makes sense of it.

Stories API (/api/stories)

Daily journals/stories generated from user activity.

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/stories/<story_id> | Get story by ID | | GET | /api/stories/date/<YYYY-MM-DD> | Get story for a date | | GET | /api/stories/dates | List available story dates | | POST | /api/stories/search | Search stories {"query": "..."} | | POST | /api/stories/generate | Generate story for date range |

External Data

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/weather/current?latitude=X&longitude=Y | Current weather | | GET | /api/weather/forecast?latitude=X&longitude=Y | Weather forecast | | GET | /api/weather/context?latitude=X&longitude=Y | Weather as context narrative | | GET | /api/news/context?latitude=X&longitude=Y&location=NAME | Local news context |

API Key Management (/api/keys)

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/keys/scopes | List available scopes | | POST | /api/keys | Create new API key | | GET | /api/keys | List user's API keys | | DELETE | /api/keys/<key_id> | Revoke an API key |

# Create a scoped API key
curl -X POST "https://dytto.onrender.com/api/keys" \
  -H "Authorization: Bearer <jwt>" \
  -d '{
    "name": "Robotaxi Agent",
    "scopes": ["transportation", "schedule", "preferences"],
    "rate_limit_per_minute": 60
  }'

Agent Endpoints (/api/agent)

For hosted agents with service key auth.

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/agent/context?user_id=X | Get user context | | POST | /api/agent/notify | Send push notification | | POST | /api/agent/events | Report events | | GET | /api/agent/messages?user_id=X | Get agent messages | | GET | /api/agent/stories?user_id=X | Get user stories | | GET | /api/agent/social?user_id=X | Get social/relationship data | | GET | /api/agent/places?user_id=X | Get frequent places |

Auth Endpoints

| Method | Endpoint | Description | |--------|----------|-------------| | POST | /api/auth/login | Login with email/password, returns JWT | | POST | /api/auth/refresh | Refresh JWT token |

User Profile (/api/user)

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/user/profile | Get user profile | | POST | /api/user/profile | Update user profile | | POST | /api/user/notification-preferences | Set notification prefs | | POST | /api/user/register-push-token | Register push notification token |

Social Links (/api/sociallinks)

Relationship tracking and social context.

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/sociallinks/relationships | List relationships | | POST | /api/sociallinks/relationships | Create relationship | | POST | /api/sociallinks/interactions | Log interaction | | GET | /api/sociallinks/dashboard | Social dashboard | | GET | /api/sociallinks/context/suggestions | Get relationship suggestions |

OAuth (/api/v1/oauth)

For third-party app integrations.

| Method | Endpoint | Description | |--------|----------|-------------| | POST | /api/v1/developers/applications | Register OAuth app | | GET | /api/v1/developers/applications | List your apps | | GET | /authorize | OAuth authorization page | | POST | /api/v1/oauth/authorize | Approve authorization | | POST | /api/v1/oauth/token | Exchange code for token | | GET | /api/v1/oauth/scopes | List OAuth scopes | | GET | /api/v1/user/connected-apps | User's connected apps |


API Key Scopes

Domain Scopes (Use-Case Based)

These filter context to specific life domains:

| Scope | Access | |-------|--------| | transportation | Transport, places, schedule, preferences | | health | Health, food, lifestyle, schedule | | social | Friends, family, events, entertainment | | work | Work, projects, schedule, places | | home | Places, lifestyle, preferences, family | | entertainment | Entertainment, preferences, lifestyle | | food | Food, preferences, health |

Technical Scopes

| Scope | Access | |-------|--------| | context:read | Full context narrative (all categories) | | context:write | Write to context | | observe | Use observe endpoint | | patterns:read | Behavioral patterns | | stories:read | Daily stories | | search:execute | Semantic search |

Fine-Grained Scopes

| Scope | Categories | |-------|------------| | location | places, transportation | | schedule | schedule, events | | preferences | preferences | | relationships | family, friends | | lifestyle | lifestyle | | financial | financial | | travel | places, transportation, schedule |

Example: A robotaxi agent with transportation scope can see location, route preferences, and schedule — but NOT health, financial, or relationship data.


Auth Modes

| Mode | Setup | Use Case | |------|-------|----------| | API Key | DYTTO_API_KEY=dyt_... | Third-party agents (recommended) | | Email/Password | DYTTO_EMAIL + DYTTO_PASSWORD | Personal agents with full access | | Service Key | AGENT_SERVICE_KEY + DYTTO_USER_ID | Hosted agents on Dytto platform |


Notes

  • First call may take 20-30s (cold start on Render free tier). Subsequent calls are fast.
  • Token cached for ~50 min at /tmp/.dytto-token-cache.
  • The observe endpoint uses an LLM for extraction — expect ~10s latency.
  • Domain-scoped API keys automatically filter responses to allowed categories.
  • All data belongs to the user. Treat it with respect.

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T03:30:26.834Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "access",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "be",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    },
    {
      "key": "see",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:access|supported|profile capability:be|supported|profile capability:see|supported|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Ayaan P",
    "href": "https://github.com/Ayaan-P/dytto-agent-skill",
    "sourceUrl": "https://github.com/Ayaan-P/dytto-agent-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T01:15:48.223Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T01:15:48.223Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/ayaan-p-dytto-agent-skill/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to dytto and adjacent AI workflows.