Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

vryfik-skill弗里菲克技能

Agent Skill

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

总安装

1,758

周安装

74

GitHub Stars

公开资料未说明

下载量

616
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install vryfik-skill

简介

用于高效搜索网络、文档或当前信息,优化令牌使用以提升查询效率。

  • 适合需要快速获取 API 文档、事件动态或定价信息的场景,减少响应时间。
  • 使用时需结合具体关键词和上下文,避免模糊请求导致结果不精准。
  • 通过 clawhub 安装,适用于 OpenClaw 宿主,需确保网络连接和 API 配额充足。
  • 注意搜索结果可能受外部源更新延迟影响,建议交叉验证关键信息准确性。

SKILL.md

name
searching-precisely
description
Use when searching the web, documentation, or current information where token efficiency matters. Triggers on queries about API docs, current events, pricing, or any question requiring up-to-date online sources. Avoids reading entire pages when a targeted extract would suffice.
permissions
local_read
true # semantic-cache.js reads ~/.antigravity/search-cache/index.json
local_write
true # semantic-cache.js writes ~/.antigravity/search-cache/index.json
network
true # parallel-probe.js sends HTTP/HTTPS HEAD requests (no body upload)
shell
true # agent runs node scripts via shell tool
autonomous
false # must not be invoked with untrusted/unsanitized URL inputs
disable-model-invocation
true # strictly enforces autonomous: false via OpenClaw policy
host_provides
trust_model
caller-trusted" # URLs are assumed to come from the host agent, not end-users
metadata
openclaw
requires
bins
["node"] # required runtime; scripts are invoked via shell tool
io
cache_path
~/.antigravity/search-cache/" # semantic-cache.js read/write scope
network_method
HEAD only" # parallel-probe.js; no response body stored
ssrf_protection
two-layer" # 1. hostname pattern check
security_notes

Searching Precisely

Overview

Web search pipeline that minimizes token consumption via local intent classification, semantic caching, credibility validation, and streaming fragment assembly.

架构分工

  • 宿主 AI(Host Agent)负责实际的网页 GET / Search API 调用,返回原始 fragments
  • 本 Skill 的脚本负责前处理(intent 分类、query 改写、budget 控制、cache 查询)和后处理(credibility probe、stream 组装、cache 写入)

Core Rule: Always check the semantic cache first. Only invoke web search on a cache miss.

Pipeline Architecture

Query → [Intent Parser] → [Query Rewriter] → [Budget Controller]
                                                     ↓
                                           [Semantic Cache] ──hit──→ Return
                                                     ↓ miss
                                           [Web Search]  (≤1500 tok)
                                                     ↓
                                           [Parallel Credibility Probe]
                                                     ↓
                                           [Stream Assembler] → [Write Cache]

Instructions

When this skill activates, execute the pipeline below in order. Exit early at any step that produces a final answer — do not run later steps unnecessarily.

Note: Replace <placeholders> with actual runtime values. All arguments must be valid JSON strings.

Step 1 — Classify Intent

Run via shell tool:

node scripts/intent-parser.js '<original_query>'

Extract intent and confidence from the JSON output. If confidence < 0.5, default to intent = "web_search" and continue.


Step 2 — Initialize Budget

node scripts/budget-controller.js init

Keep the returned state.remaining value. Abort any later step that would exceed it.


Step 3 — Check Semantic Cache

node scripts/semantic-cache.js check '{"query":"<original_query>","intent":"<intent>"}'
  • hit: true and similarity ≥ 0.85return result to the user. Pipeline complete. Skip all remaining steps.
  • hit: false → continue to Step 4.

Step 4 — Rewrite Query

node scripts/query-rewriter.js '{"intent":"<intent>","query":"<original_query>"}'

Use the returned subQueries array (max 3) for web search.


Step 5 — Web Search *(host agent)*

Using your native search_web tool, search each sub-query from Step 4. Collect result URLs and content fragments. Always perform live search on a cache miss — never fabricate results.


Step 6 — Validate Source Credibility

Extract up to 5 unique source URLs from Step 5. Run:

node scripts/parallel-probe.js '{"sources":[{"url":"<url1>"},{"url":"<url2>"}]}'
  • verdict: "trust" → use directly
  • verdict: "verify" → use with caution; flag in the answer
  • available: false → discard that source

Step 7 — Score Credibility

node scripts/credibility-arbiter.js '{"results":[<probe_results_array>]}'

If all sources score < 0.4, discard everything and tell the user no reliable source was found. Do not assemble.


Step 8 — Assemble Answer

node scripts/stream-assembler.js '{"fragments":[<trusted_fragments>],"query":"<original_query>"}'

Return the answer field to the user. If coherenceScore < 0.5, add a note that the result may be incomplete.


Step 9 — Write Cache

node scripts/semantic-cache.js write '{"query":"<original_query>","intent":"<intent>","result":"<answer>"}'

This caches the result for future similar queries. Always run this step after a successful assembly.

Search Decision Rules

SituationAction
Query answered by cache (similarity > 0.85)Return cache, skip web search
Query about API docs / official specsWeb search with known domain hint
Query about current events / pricing / newsWeb search, no cache assumed
Query with ambiguous intentRewrite into 2-3 sub-queries, search each

Token Budget Defaults

ComponentBudget
Intent parse50
Cache check20
Web search1500
Credibility300
Assembly500
Total2370

Common Mistakes

  • ❌ Calling web search before checking the semantic cache
  • ❌ Skipping credibility check for unknown domains
  • ❌ Assembling fragments from a single unverified source
  • ❌ Fetching full page content when a HEAD probe + summary suffices

ClawHub Security Notes

All permission declarations, dependencies, I/O scopes, and security properties are formally declared in the YAML frontmatter above (permissions, dependencies, io, security_notes). Static analyzers should use those fields as the authoritative source.

Summary per script:

ScriptI/ONetworkShell
intent-parser.jsnonenonenone
query-rewriter.jsnonenonenone
stream-assembler.jsnonenonenone
budget-controller.jsnonenonenone
credibility-arbiter.jsnonenonenone
semantic-cache.js~/.antigravity/search-cache/ R/Wnonenone
parallel-probe.jsreputation DB R (bundled)HEAD only, no uploadnone

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.53%
按下载量换算545

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install vryfik-skill 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills