Claim this agent
Agent DossierCLAWHUBSafety 84/100

Xpersona Agent

UniFuncs Deep Search

使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 Skill: UniFuncs Deep Search Owner: Vinlic Summary: 使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 Tags: 0.0.1:0.0.1, latest:0.0.1 Version history: v0.0.1 | 2026-02-11T03:11:48.142Z | user Initial release of unifuncs-deep-search skill. - Enables deep, fast, and comprehensive information search via UniFuncs API. - Supports using API Key for authenticated requests. - Provides Bash (curl) usage examples and ins

OpenClaw · self-declared
612 downloadsTrust evidence available
clawhub skill install kn7953ndesh1yd67kdrhjkydpn80zzs4:unifuncs-deep-search

Overall rank

#62

Adoption

612 downloads

Trust

Unknown

Freshness

Mar 1, 2026

Freshness

Last checked Mar 1, 2026

Best For

UniFuncs Deep Search is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, CLAWHUB, runtime-metrics, public facts pack

Overview

Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.

Verifiededitorial-content

Overview

Executive Summary

使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 Skill: UniFuncs Deep Search Owner: Vinlic Summary: 使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 Tags: 0.0.1:0.0.1, latest:0.0.1 Version history: v0.0.1 | 2026-02-11T03:11:48.142Z | user Initial release of unifuncs-deep-search skill. - Enables deep, fast, and comprehensive information search via UniFuncs API. - Supports using API Key for authenticated requests. - Provides Bash (curl) usage examples and ins Capability contract not published. No trust telemetry is available yet. 612 downloads reported by the source. Last updated 4/15/2026.

No verified compatibility signals612 downloads

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Mar 1, 2026

Vendor

Clawhub

Artifacts

0

Benchmarks

0

Last release

0.0.1

Install & run

Setup Snapshot

clawhub skill install kn7953ndesh1yd67kdrhjkydpn80zzs4:unifuncs-deep-search
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence & Timeline

Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.

Verifiededitorial-content

Public facts

Evidence Ledger

Vendor (1)

Vendor

Clawhub

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Release (1)

Latest release

0.0.1

releasemedium
Observed Feb 11, 2026Source linkProvenance
Adoption (1)

Adoption signal

612 downloads

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance

Artifacts & Docs

Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.

Self-declaredCLAWHUB

Captured outputs

Artifacts Archive

Extracted files

3

Examples

2

Snippets

0

Languages

Unknown

Executable Examples

bash

curl -X POST "https://api.unifuncs.com/deepsearch/v1/chat/completions" \
  -H "Authorization: Bearer $UNIFUNCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "s2", "messages": [{"role": "user", "content": "$ARGUMENTS"}]}'

bash

curl -X POST "https://api.unifuncs.com/deepsearch/v1/chat/completions" \
  -H "Authorization: Bearer $UNIFUNCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "s2", "messages": [{"role": "user", "content": "$ARGUMENTS"}]}'
Extracted Files

SKILL.md

---
name: unifuncs-deep-search
description: 使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。
argument-hint: [搜索问题]
allowed-tools: Bash(curl:*)
---

# UniFuncs 深度搜索 Skill

高速、准确、全面的深度搜索能力。

## 首次使用配置

1. 前往 https://unifuncs.com/account 获取 API Key
2. 设置环境变量:`export UNIFUNCS_API_KEY="sk-your-api-key"`

## 使用方法

执行深度搜索:
```bash
curl -X POST "https://api.unifuncs.com/deepsearch/v1/chat/completions" \
  -H "Authorization: Bearer $UNIFUNCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "s2", "messages": [{"role": "user", "content": "$ARGUMENTS"}]}'
```

## 参数说明

| 参数 | 说明 | 默认值 |
|------|------|--------|
| messages | 搜索问题 | 必填 |
| model | `s2` 或 `s1` | s2 |

## 更多信息

- 详细 API 文档见 [api.md](references/api.md)

_meta.json

{
  "ownerId": "kn7953ndesh1yd67kdrhjkydpn80zzs4",
  "slug": "unifuncs-deep-search",
  "version": "0.0.1",
  "publishedAt": 1770779508142
}

references/api.md

# Deep Search API 参考文档

## 端点

| 方法 | URL |
|------|-----|
| POST | `https://api.unifuncs.com/deepsearch/v1/chat/completions` |
| POST | `https://api.unifuncs.com/deepsearch/v1/create_task` |
| GET | `https://api.unifuncs.com/deepsearch/v1/query_task?task_id={TASK_ID}` |

## 模型版本

| 模型 | 说明 |
|------|------|
| s2 | 最新版本,推荐使用 |
| s1 | 旧版本 |

## 请求参数

| 参数名 | 类型 | 必需 | 描述 |
|--------|------|------|------|
| model | string | 是 | 模型版本:`s2`、`s1` |
| messages | array | 是 | 消息数组,OpenAI格式 |
| stream | boolean | 否 | 是否流式响应,默认 `true` |
| max_depth | number | 否 | 研究最大深度,建议 `25` |

Editorial read

Docs & README

Docs source

CLAWHUB

Editorial quality

ready

使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 Skill: UniFuncs Deep Search Owner: Vinlic Summary: 使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 Tags: 0.0.1:0.0.1, latest:0.0.1 Version history: v0.0.1 | 2026-02-11T03:11:48.142Z | user Initial release of unifuncs-deep-search skill. - Enables deep, fast, and comprehensive information search via UniFuncs API. - Supports using API Key for authenticated requests. - Provides Bash (curl) usage examples and ins

Full README

Skill: UniFuncs Deep Search

Owner: Vinlic

Summary: 使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。

Tags: 0.0.1:0.0.1, latest:0.0.1

Version history:

v0.0.1 | 2026-02-11T03:11:48.142Z | user

Initial release of unifuncs-deep-search skill.

  • Enables deep, fast, and comprehensive information search via UniFuncs API.
  • Supports using API Key for authenticated requests.
  • Provides Bash (curl) usage examples and instructions.
  • Allows configurable parameters for search queries.
  • Documentation links included for further reference.

Archive index:

Archive v0.0.1: 4 files, 2127 bytes

Files: references/api.md (728b), scripts/deep-search.sh (633b), SKILL.md (980b), _meta.json (139b)

File v0.0.1:SKILL.md


name: unifuncs-deep-search description: 使用 UniFuncs API 进行深度搜索,高速全面地搜索信息。当用户需要深度搜索、深搜、全面信息收集时使用。 argument-hint: [搜索问题] allowed-tools: Bash(curl:*)

UniFuncs 深度搜索 Skill

高速、准确、全面的深度搜索能力。

首次使用配置

  1. 前往 https://unifuncs.com/account 获取 API Key
  2. 设置环境变量:export UNIFUNCS_API_KEY="sk-your-api-key"

使用方法

执行深度搜索:

curl -X POST "https://api.unifuncs.com/deepsearch/v1/chat/completions" \
  -H "Authorization: Bearer $UNIFUNCS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "s2", "messages": [{"role": "user", "content": "$ARGUMENTS"}]}'

参数说明

| 参数 | 说明 | 默认值 | |------|------|--------| | messages | 搜索问题 | 必填 | | model | s2s1 | s2 |

更多信息

File v0.0.1:_meta.json

{ "ownerId": "kn7953ndesh1yd67kdrhjkydpn80zzs4", "slug": "unifuncs-deep-search", "version": "0.0.1", "publishedAt": 1770779508142 }

File v0.0.1:references/api.md

Deep Search API 参考文档

端点

| 方法 | URL | |------|-----| | POST | https://api.unifuncs.com/deepsearch/v1/chat/completions | | POST | https://api.unifuncs.com/deepsearch/v1/create_task | | GET | https://api.unifuncs.com/deepsearch/v1/query_task?task_id={TASK_ID} |

模型版本

| 模型 | 说明 | |------|------| | s2 | 最新版本,推荐使用 | | s1 | 旧版本 |

请求参数

| 参数名 | 类型 | 必需 | 描述 | |--------|------|------|------| | model | string | 是 | 模型版本:s2s1 | | messages | array | 是 | 消息数组,OpenAI格式 | | stream | boolean | 否 | 是否流式响应,默认 true | | max_depth | number | 否 | 研究最大深度,建议 25 |

API & Reliability

Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.

MissingCLAWHUB

Machine interfaces

Contract & API

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/trust"

Operational fit

Reliability & Benchmarks

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Machine Appendix

Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.

MissingCLAWHUB

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "CLAWHUB",
      "generatedAt": "2026-04-17T00:08:35.863Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Clawhub",
    "href": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceUrl": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "traction",
    "category": "adoption",
    "label": "Adoption signal",
    "value": "612 downloads",
    "href": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceUrl": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T00:45:39.800Z",
    "isPublic": true
  },
  {
    "factKey": "latest_release",
    "category": "release",
    "label": "Latest release",
    "value": "0.0.1",
    "href": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceUrl": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-11T03:11:48.142Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-vinlic-unifuncs-deep-search/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "release",
    "title": "Release 0.0.1",
    "description": "Initial release of unifuncs-deep-search skill. - Enables deep, fast, and comprehensive information search via UniFuncs API. - Supports using API Key for authenticated requests. - Provides Bash (curl) usage examples and instructions. - Allows configurable parameters for search queries. - Documentation links included for further reference.",
    "href": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceUrl": "https://clawhub.ai/Vinlic/unifuncs-deep-search",
    "sourceType": "release",
    "confidence": "medium",
    "observedAt": "2026-02-11T03:11:48.142Z",
    "isPublic": true
  }
]

Sponsored

Ads related to UniFuncs Deep Search and adjacent AI workflows.