Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

kallyai-apikallyai API 搜索

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

11,806

周安装

473

GitHub Stars

公开资料未说明

下载量

3,822
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install kallyai-api

简介

对接 KallyAI 后台 API 实现自动化办公集成。

  • 支持呼叫记录、预约管理与研究任务分派接口。
  • 适用于 CRM 系统与工作流引擎对接场景。
  • 需申请专用 API Key 并配置回调地址验证。
  • 调用频次超限将触发限流保护机制。kallyai-api 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
kallyai-api
description
KallyAI Executive Assistant — AI that handles phone calls (outbound + inbound), email, bookings, research, errands, multi-channel messaging, and phone number management on your behalf. Use when users want to: make/receive calls, manage inbound rules, handle voicemails, provision phone numbers, send email, book restaurants/hotels, search for services, manage calendar, check inbox/messages, handle bills, order food/rides, run errands, check credits/budget, coordinate goals, manage channels (WhatsApp/Telegram/social), run outreach campaigns, referrals, or any delegation task. Triggers on: call, phone, reservation, appointment, email, search, book, find, schedule, cancel, inbox, messages, research, assistant, coordinate, goal, credits, budget, ride, food, errand, bill, dispute, calendar, KallyAI, inbound, receptionist, voicemail, phone number, forward, transfer, takeover, channels, WhatsApp, Telegram, outreach, referral, subscription.

KallyAI Executive Assistant

KallyAI is an AI executive assistant that handles outbound + inbound calls, email, bookings, research, bills, rides, food orders, errands, multi-channel messaging, and phone number management — all from the terminal.

Quick Start

# The 80% command — natural language, routes automatically
python kallyai.py ask "Book a table at Nobu for 4 tonight"
python kallyai.py ask "Email Dr. Smith to reschedule my Thursday appointment"
python kallyai.py ask "Find the best plumber near me and negotiate a quote"

# Check credits (NOT minutes — credits are the sole billing unit)
python kallyai.py credits balance

# Check your inbox
python kallyai.py messages inbox

# View incoming calls handled by your AI receptionist
python kallyai.py inbound calls

Complete Workflow

Step 1: Gather Intent

Determine what the user needs. KallyAI covers 14 domains:

DomainExamples
Coordination"Book a table", "Handle this for me", any multi-step request
CallsCall a business, check on a reservation, negotiate
InboundView incoming calls, manage routing rules, voicemails, contacts
PhoneProvision numbers, set up forwarding, manage caller ID
ActionsCalendar events, bookings, bill analysis, rides, food, errands
MessagesCheck inbox, read messages, view threads
SearchFind businesses, research options, compare prices
EmailSend emails, manage accounts, train voice profile
ChannelsManage WhatsApp, Telegram, email contacts, channel status
OutreachMulti-channel outreach tasks (call + email + messaging)
BudgetEstimate costs, approve budgets, view breakdowns
CreditsCheck balance, view history, spending breakdown, plans
SubscriptionChange plan, view status, cancel pending changes
ReferralsGet referral code, view stats, track referrals

For most requests, use ask — it routes through the coordination AI automatically.

Step 2: Authenticate

Authentication is automatic. First API call opens browser for Google/Apple sign-in.

python kallyai.py login         # Force re-auth
python kallyai.py logout        # Clear credentials
python kallyai.py auth-status   # Check login

Step 3: Execute

Natural language (preferred):

python kallyai.py ask "Reserve a table for 4 at 8pm at Nobu"

Direct commands (when you know the domain):

python kallyai.py calls make -p "+15551234567" -t "Reserve table for 4 at 8pm"
python kallyai.py actions calendar create --title "Dinner" --start "2026-02-14T20:00"
python kallyai.py search run "best Italian restaurant downtown"
python kallyai.py inbound calls --status completed
python kallyai.py phone list

Step 4: Monitor & Follow Up

# Check goal status
python kallyai.py coord goals --status active
python kallyai.py coord goal <GOAL_ID>

# Review outbound call results
python kallyai.py calls history
python kallyai.py calls info <CALL_ID>
python kallyai.py calls transcript <CALL_ID>

# Review inbound calls handled by AI receptionist
python kallyai.py inbound calls
python kallyai.py inbound call <CALL_ID>
python kallyai.py inbound transcript <CALL_ID>

# Check inbox for responses
python kallyai.py messages inbox --unread

Domain Command Reference

ask — Natural Language (80% of usage)

python kallyai.py ask "Your request in plain English"

Routes through coordination AI. Creates goals, makes calls, sends emails — whatever is needed.

coord — Coordination & Goals

coord message "text"           # Chat with coordination AI
coord goals [--status X]       # List goals
coord goal <id>                # Goal details
coord goal-tree <id>           # Goal + sub-goals
coord cancel-goal <id>         # Cancel goal
coord cascade-cancel <id>      # Cancel goal + sub-goals
coord escalate <id>            # Escalate for attention
coord approve-step <id>        # Approve next step
coord accept <id>              # Accept outcome
coord continue <id>            # Continue negotiating
coord archive <id>             # Archive goal
coord batch-archive <id>...    # Archive multiple
coord budget <id>              # Goal budget details
coord history                  # Conversation history
coord conversations            # List conversations
coord new                      # New conversation

calls — Outbound Phone Calls

calls make -p "+1..." -t "task"  # Make a call
calls history                     # List calls
calls info <id>                   # Call details
calls transcript <id>             # Transcript
calls recording <id>              # Recording URL
calls calendar <id>               # Calendar .ics
calls cancel <id>                 # Cancel call
calls reschedule <id>             # Reschedule
calls stop <id>                   # Stop active call

inbound — AI Receptionist (Incoming Calls)

inbound calls [--status X]          # List incoming calls
inbound call <id>                    # Call details
inbound transcript <id>              # Call transcript
inbound recording <id>               # Call recording
inbound summary                      # Incoming call summary/stats
inbound analytics [--from X --to X]  # Call analytics
inbound transfer <id> --to "+1..."   # Transfer call
inbound takeover <id>                # Take over live call
inbound reject <id> [--reason X]     # Reject call
inbound rules                        # List routing rules
inbound add-rule --name "..." --action "..." # Create rule
inbound update-rule <id> ...         # Update rule
inbound delete-rule <id>             # Delete rule
inbound voicemails                   # List voicemails
inbound voicemail <id>               # Voicemail details
inbound voicemail-playback <id>      # Voicemail audio
inbound contacts                     # List contacts
inbound add-contact --name "..." --phone "+1..." # Add contact
inbound update-contact <id> ...      # Update contact
inbound delete-contact <id>          # Delete contact
inbound import-contacts <file>       # Import contacts
inbound events [--from X --to X]     # Event log

phone — Phone Number Management

phone list                           # List your numbers
phone info <id>                      # Number details
phone countries                      # Supported countries
phone available --country US         # Search available numbers
phone provision --country US         # Provision new number
phone forwarding <id> --target "+1..." # Set call forwarding
phone remove-forwarding <id>         # Remove forwarding
phone verify-start <number>          # Start verification
phone verify-check <number> --code X # Check verification code
phone caller-id <id> --name "..."    # Set caller ID
phone release <id>                   # Release number

actions — Autonomous Actions

actions calendar create --title "..." --start "..."
actions calendar slots [--date X]
actions calendar sync
actions calendar delete <id>
actions restaurant search "query" [--location X]
actions booking create --type restaurant [--date X]
actions booking cancel <id>
actions bill analyze "description" [--amount X]
actions bill dispute "description" [--reason X]
actions ride --pickup "..." --destination "..."
actions food "order description" [--address X]
actions errand "errand description"
actions email send --to "..." --subject "..." "body"
actions email approve <id>
actions email cancel <id>
actions email outbox
actions email replies <id>
actions log [--type X]
actions undo <id>

messages — Unified Inbox

messages inbox [--channel email|sms|call|chat] [--unread]
messages read <id>
messages thread <conversation_id>
messages mark-read <id> [<id>...]

search — Research

search run "query" [--location X]
search quick "query"
search history
search sources

email — Email Account Management

email accounts                          # List connected
email connect gmail|outlook             # Connect provider
email disconnect <id>                   # Disconnect
email list [--classification important] # List messages
email read <id>                         # Read email
email respond <id> [instructions]       # Respond
email voice-profile                     # Get voice profile
email train-voice                       # Train from samples

channels — Multi-Channel Management

channels status                  # All channel statuses
channels email-add <address>     # Add email contact
channels email-list              # List email contacts
channels email-update <id> ...   # Update email contact
channels email-delete <id>       # Delete email contact
channels email-verify <token>    # Verify email
channels mailbox                 # Get KallyAI mailbox address
channels connect <channel>       # Connect WhatsApp/Telegram
channels test <channel>          # Test channel connection
channels disconnect <channel>    # Disconnect channel

outreach — Multi-Channel Outreach

outreach tasks [--status X]      # List outreach tasks
outreach task <id>               # Task details
outreach create --channel call --target "+1..." "description"
outreach retry <id>              # Retry failed task
outreach cancel <id>             # Cancel task

budget — Cost Management

budget estimate --type call "description"
budget approve <goal_id>
budget breakdown <goal_id>
budget ack-cap <goal_id>

credits — Balance & Usage

credits balance     # Current balance (credits, NOT minutes)
credits history     # Usage history
credits breakdown   # Spending breakdown by action type
credits costs       # Credit cost reference
credits plans       # Available credit plans

subscription — Plan Management

subscription status               # Current plan status
subscription change-plan <plan>   # Change to new plan
subscription cancel-change        # Cancel pending plan change

referrals — Referral Program

referrals code        # Get your referral code
referrals stats       # Referral statistics
referrals history     # Referral history

notifications — Notifications

notifications pending   # Check pending notification counts

Output Format

Default output is JSON (machine-readable for Claude Code). Add --human for formatted tables.

python kallyai.py credits balance              # JSON
python kallyai.py credits balance --human      # Pretty table

Backward Compatibility

Old flags still work — they map to new subcommands:

python kallyai.py --phone "+1..." --task "..."   → calls make
python kallyai.py --usage                         → credits balance
python kallyai.py --history                       → calls history
python kallyai.py --call-info ID                  → calls info ID
python kallyai.py --transcript ID                 → calls transcript ID

Security

  • Tokens stored in ~/.kallyai_token.json with 0600 permissions
  • Only localhost redirect URIs accepted for CLI auth
  • CSRF protection via state parameter
  • Tokens expire after 1 hour, auto-refresh supported

Common Errors

CodeHTTPAction
quota_exceeded402User needs more credits — kallyai.com/pricing
missing_phone_number422Ask user for phone number
emergency_number422Cannot call emergency services
country_restriction403Country not supported
budget_exceeded402Goal over budget — approve or cancel
email_not_connected400Need to connect email account first
phone_not_provisioned400Need to provision a phone number first

Full API Reference

See references/api-reference.md for complete endpoint documentation.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

91.66%
按下载量换算3,503

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills