Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

ravi-contacts拉维联系人

Agent Skill

ravi-contacts 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

12,141

周安装

511

GitHub Stars

公开资料未说明

下载量

4,252
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ravi-contacts(拉维联系人)
来源仓库:https://github.com/raunaksingwi/ravi-contacts
安装命令:
openclaw skills install ravi-contacts
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ravi-contacts

简介

管理联系人信息并支持姓名到联系方式解析。

  • 提供联系人增删改查和搜索功能。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 适用于 CRM 系统和通讯簿维护。
  • 安装通过 clawhub,需授权通讯录访问权限。
  • 操作前应确认数据源准确性。ravi-contacts 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
ravi-contacts
description
Manage contacts associated with your identity — list, search, create,

Ravi Contacts

Manage contacts associated with your identity. Contacts store people you interact with — their email, phone, display name, and nickname.

Commands

# List all contacts
ravi contacts list

# Fuzzy search contacts by name or email (phone is not fuzzy-searched)
ravi contacts search "alice"

# Get a single contact
ravi contacts get <uuid>

# Create a contact
ravi contacts create --email "alice@example.com" --display-name "Alice Smith"

# Create with phone and nickname
ravi contacts create --phone "+15551234567" --nickname "alice"

# Create a full contact
ravi contacts create --email "bob@corp.com" --phone "+15559876543" --display-name "Bob Jones" --nickname "bob"

# Update a contact
ravi contacts update <uuid> --nickname "ally"

# Delete a contact
ravi contacts delete <uuid>

Create/update fields: --email, --phone, --display-name, --nickname, --is-trusted

JSON Shapes

ravi contacts list:

[
  {
    "uuid": "...",
    "identity": 1,
    "email": "alice@example.com",
    "phone_number": "+15551234567",
    "display_name": "Alice Smith",
    "nickname": "alice",
    "is_trusted": false,
    "source": "auto",
    "interaction_count": 5,
    "last_interaction_dt": "2026-03-01T14:00:00Z",
    "created_dt": "2026-02-20T10:30:00Z",
    "updated_dt": "2026-02-28T09:15:00Z"
  }
]

ravi contacts get <uuid>:

{
  "uuid": "...",
  "email": "alice@example.com",
  "phone_number": "+15551234567",
  "display_name": "Alice Smith",
  "nickname": "alice",
  "is_trusted": false,
  "source": "auto",
  "interaction_count": 5,
  "last_interaction_dt": "2026-03-01T14:00:00Z",
  "created_dt": "2026-02-20T10:30:00Z",
  "updated_dt": "2026-02-28T09:15:00Z"
}

Resolving Recipients

When the user asks to email or text someone by name (e.g. "email Alice" or "text Bob"), always search contacts first to resolve their name to an email address or phone number:

# Step 1: Search by name
ravi contacts search "Alice"

# Step 2: If one match → use the email/phone from the result
# Step 3: If multiple matches → confirm with the user which one they mean
# Step 4: If no matches → ask the user for the email/phone directly

This is the primary integration point with ravi-email-send and SMS workflows.

Key Concepts

  • Auto-contacts — Ravi automatically creates contacts from email and SMS interactions. When you send or receive a message, a contact is created or updated for the other party.
  • Manual contacts — You can also create contacts manually via the CLI.
  • Trusted contacts — Contacts marked with --is-trusted are classified as trusted senders. Emails from trusted contacts are routed to the email_trusted SSE channel, distinct from email_owner (your own emails) and email_untrusted (unknown senders). By default, contacts are not trusted.
  • interaction_count — Tracks how many email/SMS interactions you have had with this contact. Auto-incremented by the system.
  • last_interaction_dt — Timestamp of the most recent email or SMS interaction with this contact. Updated automatically.

Important Notes

  • Contacts are stored in plaintext — do not store sensitive information in contact fields. Use ravi-passwords for credentials and ravi-secrets for API keys.
  • Auto-contacts from interactions — sending or receiving email/SMS automatically creates or updates contacts. You do not need to manually create contacts for people you interact with.
  • Phone numbers in E.164 format — always include the country code (e.g., +15551234567).

Full API Reference

For complete endpoint details, request/response schemas, and parameters: Contacts

Related Skills

  • ravi-identity — Get your own email address and phone number
  • ravi-passwords — Store website credentials (not contact info)
  • ravi-secrets — Store API keys and env vars (not contact info)
  • ravi-inbox — Read incoming email and SMS messages
  • ravi-email-send — Send emails to your contacts

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.62%
按下载量换算3,598

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills