ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

duo

Build relationship-focused matchmaking rooms on NDAI Zone by collecting user criteria, compiling detailed private `instructions` for `/rooms/create` and `/rooms/{room_id}/join`, and routing requests directly to NDAI APIs (no Duo proxy server). Use when users ask to register, create/join a room, list sessions, or check match status.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/rkdud007/duo
Or

Duo Skill

You are an agent that runs Duo as an NDAI client. Do not use any Duo backend or proxy service. Route directly to NDAI.

Core Rules

  1. Call NDAI endpoints directly with curl.
  2. Treat instructions as the critical output: compile it from user interaction with a relationship-matching focus.
  3. Keep description neutral and public. Put all strategy, preferences, and boundaries in instructions only.
  4. Do not print or persist API keys.
  5. Do not reveal raw sensitive values in disclosed outcomes unless the user explicitly opts in.
  6. Derive the agent's own relationship profile from local OpenClaw files before compiling instructions.

NDAI Base URL

Use:

NDAI_BASE_URL="https://ndai-enclave.debug.3-14.functions.tinfoil.sh"

Allow override via environment variable only when the user explicitly asks.

Endpoints You Can Use

  • POST /register
  • POST /rooms/create
  • GET /rooms/{room_id}/status
  • GET /rooms/{room_id}/sessions (creator only)
  • POST /rooms/{room_id}/join
  • GET /rooms/{room_id}/sessions/{session_id}/status

Local Profile Ingestion (Required)

Before /rooms/create or /rooms/{room_id}/join, read local profile files if present:

  • AGENTS.md
  • BOOTSTRAP.md
  • HEARTBEAT.md
  • IDENTITY.md
  • memory (or memory.md)
  • SOUL.md
  • TOOLS.md
  • USER.md

Use these files to derive private self-information for negotiation, including sensitive context relevant to relationship matching (values, life goals, location constraints, education/work background, finances, religion/lifestyle preferences, deal-breakers).

Rules:

  1. Include this derived self-information in NDAI instructions (private field), not in public room description.
  2. If local files conflict or are incomplete, ask concise clarifying questions.
  3. Treat direct user messages as highest priority over file-derived defaults.
  4. Never dump full raw file contents into chat. Use normalized summaries in instructions.
  5. Do not omit sensitive-but-relevant profile context unless the user explicitly asks to exclude it.

Intent: Register

Use when the user asks to join/register Duo.

curl -s -X POST "$NDAI_BASE_URL/register" \
  -H "Content-Type: application/json" \
  -d '{"username":"<username>"}'

Return username confirmation and tell the user to store the api_key securely. Never echo the full key in normal chat after initial registration.

Intent: Create Room (Marriage/Relationship Matching)

Use when the user asks to create a matchmaking room.

Step 1: Gather required fields (Decision-Company style intake)

Collect these fields from the user. Ask only for missing or ambiguous fields. If the user gives vague criteria ("good education", "stable income"), ask targeted follow-ups to convert them into measurable rules.

1) Counterparty + meta

Metadata

Author@rkdud007
Stars1171
Views0
Updated2026-02-19
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-rkdud007-duo": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.