📦 vryfik skill — vryfik 技能

v1.0.7

Use when 搜索ing the 网页, documentation, or current in格式化ion where 令牌 efficiency matters. Triggers on queries about API docs, current 事件, pricing...

0· 7·0 当前·0 累计
0
安全扫描
VirusTotal
Pending
查看报告
OpenClaw
安全
high confidence
The 技能's code, 运行time instructions, and declared 权限s align with its 状态d purpose (令牌‑efficient 网页/document 搜索); it does not 请求 unrelated 凭证s or hidden network 端点s.
评估建议
This 技能 应用ears internally coherent and implements a local 流水线 (intent parsing, rewriting, caching, credibility probes, assembly) that delegates actual page retrieval to the host 代理. Before 安装ing: - Ensure you trust the host 代理's '网页_搜索' 工具 (it performs the live 获取s and supplies fragments to the 技能). The 技能 assumes URLs come from a trusted caller. - Accept that queries (缓存 keys/snippets) will be stored under ~/.antigravity/搜索-缓存/ (技能.md 状态s files 创建d with 0o600 and dir 0o700). If that concerns ...
详细分析 ▾
用途与能力
Name/description (令牌‑efficient 网页/document 搜索) matches the artifacts: intent parsing, 查询 rewriting, bud获取 control, 缓存, credibility probes, and assembly. Required 运行time (node) is 应用ropriate and no unrelated 凭证s or binaries are 请求ed.
指令范围
Instructions limit network activity to host-provided 网页_搜索 for content retrieval and the 技能's parallel-probe script (HTTP HEAD) for avAIlability 检查s. The 技能 reads/writes a local 缓存 (~/.antigravity/搜索-缓存/) and uses local data files (intent patterns, domAIn reputation). 缓存 may contAIn user 查询 text (技能.md documents this). Review host 代理 behavior: host provides full 获取/搜索 结果s to the 技能 for post-processing, so the security posture depends on trusting the host 工具 to sanitize user-supplied URLs.
安装机制
No 安装 script; code files are included and 执行d via the shell 工具 using node. No remote 下载s, package 安装s, or URL fetch/安装 steps are present.
凭证需求
The 技能 请求s no 环境 variables or 凭证s. Local file 访问 is limited to a single 缓存 directory and bundled data files; network 访问 is restricted to outbound HEAD probes (parallel-probe) and relies on the host for 获取/搜索 calls—this is proportionate to the 状态d functionality.
持久化与权限
always is false and disable-模型-invocation is 设置 to true (技能 cannot invoke the 模型 autonomously). The only persistent artifact is the local 缓存 (~/.antigravity/搜索-缓存/) which the 技能.md documents and the scripts write with restricted file modes (0o600/0o700). No configuration or 凭证 changes to other 技能s are made.
安全有层次,运行前请审查代码。

运行时依赖

无特殊依赖

安装命令

点击复制
官方npx clawhub@latest install vryfik-skill
镜像加速npx clawhub@latest install vryfik-skill --registry https://cn.longxiaskill.com

技能文档

搜索ing Precisely Overview

网页 搜索 流水线 that minimizes 令牌 consumption via local intent classification, semantic caching, credibility 验证, and 流ing fragment assembly.

架构分工:

宿主 AI(Host 代理)负责实际的网页 获取 / 搜索 API 调用,返回原始 fragments 本 技能 的脚本负责前处理(intent 分类、查询 改写、bud获取 控制、缓存 查询)和后处理(credibility probe、流 组装、缓存 写入)

Core Rule: Always 检查 the semantic 缓存 first. Only invoke 网页 搜索 on a 缓存 miss.

流水线 Architecture 查询 → [Intent 解析器] → [查询 Rewriter] → [Bud获取 控制器] ↓ [Semantic 缓存] ──hit──→ Return ↓ miss [网页 搜索] (≤1500 tok) ↓ [Parallel Credibility Probe] ↓ [流 Assembler] → [Write 缓存]

Instructions

When this 技能 activates, 执行 the 流水线 below in order. Exit early at any step that produces a final answer — do not 运行 later steps unnecessarily.

Note: Replace with actual 运行time values. All arguments must be valid JSON strings.

Step 1 — Classify Intent

运行 via shell 工具:

node scripts/intent-解析器.js ''

提取 intent and confidence from the JSON 输出. If confidence < 0.5, default to intent = "网页_搜索" and continue.

Step 2 — 初始化 Bud获取 node scripts/bud获取-控制器.js init

Keep the returned 状态.remAIning value. Abort any later step that would exceed it.

Step 3 — 检查 Semantic 缓存 node scripts/semantic-缓存.js 检查 '{"查询":"","intent":""}'

hit: true and similarity ≥ 0.85 → return 结果 to the user. 流水线 complete. Skip all remAIning steps. hit: false → continue to Step 4. Step 4 — Rewrite 查询 node scripts/查询-rewriter.js '{"intent":"","查询":""}'

Use the returned subQueries array (max 3) for 网页 搜索.

Step 5 — 网页 搜索 (host 代理)

Using your native 搜索_网页 工具, 搜索 each sub-查询 from Step 4. Collect 结果 URLs and content fragments. Always perform live 搜索 on a 缓存 miss — never fabricate 结果s.

Step 6 — 验证 Source Credibility

提取 up to 5 unique source URLs from Step 5. 运行:

node scripts/parallel-probe.js '{"sources":[{"url":""},{"url":""}]}'

verdict: "trust" → use directly verdict: "验证" → use with caution; flag in the answer avAIlable: false → discard that source Step 7 — Score Credibility node scripts/credibility-arbiter.js '{"结果s":[]}'

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/流-assembler.js '{"fragments":[],"查询":""}'

Return the answer field to the user. If coherenceScore < 0.5, 添加 a note that the 结果 may be incomplete.

Step 9 — Write 缓存 node scripts/semantic-缓存.js write '{"查询":"","intent":"","结果":""}'

This 缓存s the 结果 for future similar queries. Always 运行 this step after a 成功ful assembly.

搜索 Decision Rules Situation Action 查询 answered by 缓存 (similarity > 0.85) Return 缓存, skip 网页 搜索 查询 about API docs / official specs 网页 搜索 with known domAIn hint 查询 about current 事件 / pricing / news 网页 搜索, no 缓存 assumed 查询 with ambiguous intent Rewrite into 2-3 sub-queries, 搜索 each 令牌 Bud获取 Defaults 组件 Bud获取 Intent 解析 50 缓存 检查 20 网页 搜索 1500 Credibility 300 Assembly 500 Total 2370 Common Mistakes ❌ Calling 网页 搜索 before 检查ing the semantic 缓存 ❌ Skipping credibility 检查 for unknown domAIns ❌ Assembling fragments from a single unverified source ❌ Fetching full page content when a HEAD probe + summary suffices ClawHub Security Notes

All 权限 declarations, dependencies, I/O scopes, and security properties are formally declared in the YAML frontmatter above (权限s, dependencies, io, security_notes). Static 分析器s should use those fields as the authoritative source.

Summary per script:

Script I/O Network Shell intent-解析器.js none none none 查询-rewriter.js none none none 流-assembler.js none none none bud获取-控制器.js none none none credibility-arbiter.js none none none semantic-缓存.js ~/.antigravity/搜索-缓存/ R/W none none parallel-probe.js reputation DB R (bundled) HEAD only, no 上传 none

数据来源ClawHub ↗ · 中文优化:龙虾技能库