Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

toolweb-marriage-matching工具网络婚姻匹配

Agent Skill

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

总安装

2,987

周安装

127

GitHub Stars

公开资料未说明

下载量

1,046
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:toolweb-marriage-matching(工具网络婚姻匹配)
来源仓库:https://github.com/krishnakumarmahadevan-cmd/toolweb-marriage-matching
安装命令:
openclaw skills install toolweb-marriage-matching
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install toolweb-marriage-matching

简介

星座运势分析和婚姻兼容性报告生成工具。

  • 适用于婚恋咨询和关系匹配辅助。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 提供PDF格式报告和个性化建议。
  • 需输入双方出生日期和基本信息。
  • 建议作为参考而非决定性依据。toolweb-marriage-matching 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
Seek Alliance - Marriage Matching Backend
description
Generates bride and groom horoscopes then produces a marriage compatibility report with PDF outputs.

Overview

Seek Alliance is a marriage compatibility analysis platform that leverages Vedic astrology to evaluate the astrological compatibility between potential marriage partners. The service generates detailed horoscopes for both the bride and groom based on their birth data, then produces a comprehensive marriage compatibility report in PDF format.

This tool is ideal for matrimonial platforms, astrology consultants, and individuals seeking detailed astrological insights into potential marriages. By analyzing planetary positions and natal chart configurations, the API provides scientifically-grounded astrological assessments that help couples understand their cosmic compatibility across multiple dimensions.

The platform supports multiple Indian languages (Tamil, English, Malayalam, Telugu, Kannada, and Hindi) and both South Indian and North Indian astrological chart systems, making it accessible to diverse user bases across India and the diaspora.

Usage

Request

To generate a marriage compatibility report, submit birth details for both the bride and groom. The system will generate three PDF reports: one for the bride's horoscope, one for the groom's horoscope, and one comprehensive marriage matching report.

{
  "bride": {
    "person_name": "Anjali Sharma",
    "father_name": "Rajesh Sharma",
    "mother_name": "Priya Sharma",
    "mobile": "9876543210",
    "dob": "15/Jan/1995",
    "hour": "10",
    "minute": "30",
    "am_pm": "AM",
    "country": "India",
    "birth_place": "Chennai"
  },
  "groom": {
    "person_name": "Arjun Patel",
    "father_name": "Vikram Patel",
    "mother_name": "Meera Patel",
    "mobile": "9123456789",
    "dob": "22/Mar/1993",
    "hour": "02",
    "minute": "15",
    "am_pm": "PM",
    "country": "India",
    "birth_place": "Bangalore"
  },
  "language_id": "2",
  "chart_type": "South Indian"
}

Response

{
  "success": true,
  "message": "Marriage compatibility analysis completed successfully",
  "bride_pdf_url": "https://api.mkkpro.com/downloads/Anjali_Sharma_horoscope_1234567890.pdf",
  "groom_pdf_url": "https://api.mkkpro.com/downloads/Arjun_Patel_horoscope_1234567890.pdf",
  "match_pdf_url": "https://api.mkkpro.com/downloads/marriage_match_report_1234567890.pdf",
  "generated_at": "2024-01-15T14:30:00Z"
}

Endpoints

POST /api/seek-alliance

Generates horoscopes and marriage compatibility report for a bride-groom pair.

Parameters:

NameTypeRequiredDescription
bridePersonData objectYesBride (female) personal and birth details
groomPersonData objectYesGroom (male) personal and birth details
language_idstringNoLanguage for report generation: 1=Tamil, 2=English, 3=Malayalam, 4=Telugu, 5=Kannada, 6=Hindi (default: 1)
chart_typestringNoAstrological chart system: South Indian or North Indian (default: South Indian)

PersonData Fields:

NameTypeRequiredDescription
person_namestringYesPerson's full name
father_namestringYesFather's name
mother_namestringYesMother's name
mobilestringYes10-digit mobile number
dobstringYesDate of birth in DD/Mon/YYYY format (e.g., 15/Jan/1995)
hourstringYesBirth hour in 12-hour format (1-12)
minutestringYesBirth minute (00-59)
am_pmstringYesTime period: AM or PM
countrystringYesCountry code or name
birth_placestringYesBirth city name

Response Schema:

FieldTypeDescription
successbooleanWhether the operation completed successfully
messagestring \nullHuman-readable status or error message
bride_pdf_urlstring \nullURL to download the bride's horoscope PDF
groom_pdf_urlstring \nullURL to download the groom's horoscope PDF
match_pdf_urlstring \nullURL to download the marriage compatibility report PDF
generated_atstring \nullISO 8601 timestamp of report generation

Response Codes:

  • 200 OK - Reports generated successfully
  • 422 Unprocessable Entity - Validation error in request data

GET /api/search-city

Search for a city to retrieve accurate coordinates and timezone information for birth location.

Parameters:

NameTypeRequiredDescription
searchstringYesCity name or partial city name to search
countrystringNoCountry filter (default: India)

Response Schema:

Returns JSON array of matching cities with geographic and timezone data for accurate horoscope calculations.

Response Codes:

  • 200 OK - Cities found
  • 422 Unprocessable Entity - Validation error

GET /api/status

Check the health and operational status of the API service.

Parameters: None

Response Schema:

Returns JSON object indicating service status and uptime information.

Response Codes:

  • 200 OK - Service is operational

GET /

Root endpoint providing API information and available operations.

Parameters: None

Response Schema:

Returns JSON with API metadata and endpoint summary.

Response Codes:

  • 200 OK - Service is available

GET /downloads/{filename}

Download generated PDF reports using the filename provided in the alliance response.

Parameters:

NameTypeRequiredDescription
filenamestringYesName of the file to download (from bride_pdf_url, groom_pdf_url, or match_pdf_url response)

Response: PDF file binary data

Response Codes:

  • 200 OK - File downloaded successfully
  • 422 Unprocessable Entity - Invalid filename

Pricing

PlanCalls/DayCalls/MonthPrice
Free550Free
Developer20500$39/mo
Professional2005,000$99/mo
Enterprise100,0001,000,000$299/mo

About

ToolWeb.in - 200+ security APIs, CISSP & CISM, platforms: Pay-per-run, API Gateway, MCP Server, OpenClaw, RapidAPI, YouTube.

References

  • Kong Route: https://api.mkkpro.com/lifestyle/marriage-matching
  • API Docs: https://api.mkkpro.com:8197/docs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.01%
按下载量换算858

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills