# Convrgent.ai Agent Adaptation Prompt

> Convrgent.ai Agent Adaptation Prompt is a paid API for AI agents from convrgent.ai, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-13).

Returns a personalized AI system prompt instructing an agent how to communicate with a specific human based on their psychological and personality profile.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/agent-prompt
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-c792ab30
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LB-qOULjmsGdXi0dYNL0w

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability convrgent-ai-c792ab30 -d '<json body>'
```

Example prompt: Generate an agent adaptation prompt for my client Sarah — pull her profile from the vault and give me the system prompt I should inject so my AI knows how to communicate with her personality style and preferences.

## When to prefer this

Use this endpoint when you need a concrete, injectable system prompt that tells your AI agent exactly how to communicate with a known individual — as opposed to retrieving raw psychological scores or dimensions. Ideal when you want to immediately configure an agent's behavior before a conversation without manually translating personality data into communication instructions.

## Known failure modes

- Profile not found for given wallet address — returns 404 with missing profile error
- Insufficient profile data to generate meaningful prompt — returns partial or low-confidence output
- Invalid or missing wallet address in request — returns 400 validation error
- Payment not processed or x402 authorization missing — returns 402 payment required
- Rate limit exceeded — returns 429 too many requests

## How this service works

Agent adaptation prompt — AI system prompt for personality-aware interaction. LLM context injection, agent behavior customization, how to talk to this person, personalized communication rules.

## Output

A ready-to-inject system prompt string containing personality-aware communication rules, preferred framing strategies, tone guidelines, and behavioral adaptation instructions tailored to the specific human's psychological profile — suitable for direct injection into an LLM's system context.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "context": {
       "type": "object"
      },
      "birthData": {
       "type": "object",
       "required": [
        "year",
        "month",
        "day",
        "location"
       ],
       "properties": {
        "day": {
         "type": "integer"
        },
        "hour": {
         "type": "integer",
         "description": "Highly recommended. Defaults to 12 if omitted."
        },
        "year": {
         "type": "integer"
        },
        "month": {
         "type": "integer"
        },
        "minute": {
         "type": "integer",
         "description": "Defaults to 0 if omitted."
        },
        "latitude": {
         "type": "number",
         "description": "Optional override"
        },
        "location": {
         "type": "string",
         "description": "City and country. Coordinates auto-resolved."
        },
        "timezone": {
         "type": "number",
         "description": "Optional — auto-resolved from location"
        },
        "longitude": {
         "type": "number",
         "description": "Optional override"
        }
       }
      },
      "responses": {
       "type": "object"
      },
      "textSamples": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "text"
        ],
        "properties": {
         "text": {
          "type": "string"
         },
         "context": {
          "type": "string"
         }
        }
       }
      },
      "observations": {
       "type": "object"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "confidence": 0.8,
  "systemPrompt": "You are speaking with someone who values analytical depth...",
  "frameworksUsed": [
   "natal-chart",
   "communication",
   "psych"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-c792ab30/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
