Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

samvidasamvida 搜索

Agent Skill

samvida 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,468

周安装

591

GitHub Stars

公开资料未说明

下载量

4,633
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install samvida

简介

商业网站代理合同自动生成工具,输出 llms.txt 格式文件。

  • 适用于抓取站点内容并以对话方式填充合同字段。
  • 支持多语言与结构化代理优化提示词生成。samvida 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install samvida。
  • 注意遵守目标网站的 robots.txt 与版权政策。

SKILL.md

name
samvida
description
Generate an agentic contract (llms.txt) for any business website. Crawls the site, fills gaps conversationally, and produces a structured agent-optimized llms.txt. Trigger when a user asks to "generate llms.txt", "create an agentic contract for [url]", "make my site agent-readable", or "update my llms.txt".

Samvida — Agentic Contracts for Your Business

Overview

This skill crawls a business website, extracts structured information, and generates a properly formatted llms.txt file — the standard that makes any business readable and transactable by AI agents.

It follows the llmstxt.org specification with business-specific extensions:

  • ## Team — builds agent trust in the people behind the business
  • ## Clients & Testimonials — social proof for agent decision-making
  • ## For Agents — how agents can interact (or a clear "coming soon" notice)

Read references/llms_txt_spec.md before generating any output.


Workflow

Step 1 — Get the URL

If the user didn't provide a URL, ask:

"What's the website URL?"

Normalize it (add https:// if missing).


Step 2 — Crawl

Run the crawler:

~/.virtualenvs/samvida/bin/python3 \
  ~/.openclaw/workspace/samvida/scripts/crawl.py \
  {url} > /tmp/llms_business_info.json

Read /tmp/llms_business_info.json. Note:

  • What pages were crawled
  • What was found vs missing (team, pricing, testimonials, API)
  • Whether an existing llms.txt was found

Tell the user briefly:

"Crawled {domain} ({N} pages). Found: {what was found}. I'll ask about a few things I couldn't determine."

If the crawl found an existing llms.txt, note it:

"I noticed you already have a llms.txt at {domain}/llms.txt. I'll generate a fresh one — you can compare and decide which to keep."

Step 3 — Ask for additional sources (always ask this first)

"Are there any other pages I should read? (docs, API reference, existing llms.txt, press page — anything useful)"

If they provide URLs, re-run the crawl with those extras:

~/.virtualenvs/samvida/bin/python3 \
  ~/.openclaw/workspace/samvida/scripts/crawl.py \
  {url} {extra_url1} {extra_url2} > /tmp/llms_business_info.json

If they say no/skip, continue.


Step 4 — Generate Pass 1 draft + gap report

Generate a draft llms.txt now using what you have from the crawl. Use all heuristic signals (team_found, testimonials_found, pricing_found, etc.) and the raw_text_summary.

Write the draft. For any section you couldn't populate confidently, use a clear [NOT FOUND] placeholder.

Then show it to the user with a gap report:

"Here's a first draft of your llms.txt: `` {draft} `` Found automatically: {brief list — e.g. emails, pricing page, testimonials from Wybrid + Cital} Couldn't determine: {brief list — e.g. team, pricing figures, API} Two questions to start: 1. {Most important gap — e.g. "Who's on the founding team? Names, roles, and an email if you're comfortable."} 2. {Second most important — e.g. "What's your pricing model? Even a rough description — per-candidate, subscription, etc."} _(I have a few more after these. Also — say 'dig deeper' if you'd rather I try to find it myself.)"

Step 4b — Handle "dig deeper" (Pass 2)

If the user says "dig deeper" (or similar — "try again", "re-crawl", "look harder"):

Re-run the crawl in deep mode:

~/.virtualenvs/samvida/bin/python3 \
  ~/.openclaw/workspace/samvida/scripts/crawl.py \
  {url} {extra_urls} --deep > /tmp/llms_business_info.json

This returns pages_raw — the full raw text of every crawled page. Use it to extract structure with the LLM. In your generation prompt (Step 5), add:

In addition to the heuristic signals, here is the full raw text from each crawled page.
Extract team members, testimonials, pricing details, and any API information directly from this text.

Homepage raw text:
{pages_raw[homepage_url]}

Team page raw text (if available):
{pages_raw[team_url]}

Pricing page raw text (if available):
{pages_raw[pricing_url]}

Tell the user:

"Doing a deeper crawl — this takes a bit longer but I'll extract everything I can from the raw page content."

After Pass 2, show the updated draft with the same gap report format. Whatever still can't be found, ask the user directly.


Step 5 — Conversational gap-filling (for anything still missing)

Ask questions one at a time — only for things still [NOT FOUND] after Pass 1/2. Wait for each answer. Stop as soon as you have enough to finalize.

Use your judgment — if the user has already filled most gaps conversationally, skip remaining questions and generate.

Q1 — Core value for agents (always ask):

"In one or two sentences: what should an AI agent understand about what it can *do* or *get* by working with {domain}?"

Q2 — Team (ask if team not found in crawl):

"I didn't find team info publicly. Want to add a Team section? It helps agents trust who's behind the business. Just names, roles, and emails if you're comfortable."

Q3 — Clients / testimonials (ask if not found):

"Any existing clients or testimonials I can include? Even a couple of company names or a one-line quote builds agent trust. Totally optional."

Q4 — API / integration (ask if api_found=false):

"Is there a public API or docs page agents can reference? (skip if not applicable)"

Q5 — Pricing (ask if pricing_found=false):

"What's the pricing model? Even a rough description helps — like 'per assessment' or 'monthly subscription'."

Q6 — ICP / agent-buyers (ask if not obvious from context):

"Who are the kinds of agents or automated systems most likely to want to work with you? (e.g. HR bots, recruiting pipelines)"

Q7 — Anything else (optional, ask last):

"Anything else agents should know before working with you? (geographic limits, onboarding steps, etc.)"

Step 6 — Generate final llms.txt

Read references/llms_txt_spec.md now if you haven't already.

Generate the complete llms.txt using ALL information gathered:

  • The crawled business_info JSON (and pages_raw if deep mode ran)
  • The user's answers from the conversation
  • The spec from references/llms_txt_spec.md

Generation rules:

  1. Follow the spec format exactly: H1 title → blockquote summary → H2 sections → named links
  2. Every bullet = - [Title](url): description — no plain text bullets
  3. Section order: Services → Team → Clients & Testimonials → Compliance → Reviews → For Agents → Pricing → API → Links → Optional
  4. ## Team: Always include. Use crawled/user-provided data. If none available, omit silently.
  5. ## Clients & Testimonials: Always try to include. Structure:

- ICP bullets first (who the business serves) - Then a ### subsection per named client where you have a real quote or case study detail - Each subsection: blockquote with verbatim/lightly-cleaned quote, optional Problem: and Outcome: lines - If you only have a name + one-liner with no detail, a single bullet is fine - Never invent quotes or outcomes

  1. ## Compliance: Include if any certifications or standards (SOC 2, ISO 27001, GDPR, HIPAA, etc.) are mentioned anywhere on the site or by the user. Omit if none found.
  2. ## Reviews: Include if any third-party ratings, scores, awards, or recognitions (G2, ProductHunt, Trustpilot, Gartner, Capterra, Forbes, YC, etc.) are mentioned. Omit if none found.
  3. ## For Agents: ALWAYS include. If no API info: add the "coming soon" notice + contact email. Never skip.
  4. ## Pricing: If unknown, link to pricing page with no summary. If no pricing page, omit.
  5. ## API: Document URL only — no auth details, no secrets.
  6. ## Optional: FAQs, blog, case studies, anything supplementary.
  7. Do NOT invent facts. If something is unknown and user didn't provide it, either omit it or note it clearly.
  8. Keep it tight — this is for agents, not humans. No marketing fluff.

Write the final llms.txt to /tmp/samvida_llms.txt.


Step 7 — Show and confirm

Show the full llms.txt to the user in a code block, then ask:

"Here's your llms.txt 👆 Does this look right? You can: - Tell me what to change - Say 'save' to download it - Say 'deploy' when you're ready to push it live (Phase 2)"

Step 8 — Handle revisions

If the user asks for changes, make them and show the updated version. Repeat until satisfied.

If they say 'save': tell them the file is at /tmp/samvida_llms.txt and they can copy it to their project.

If they say 'deploy': proceed to Step 9.


Step 9 — Deploy

If an existing llms.txt was found during crawl, warn first:

"⚠️ I found an existing llms.txt at {domain}/llms.txt. Deploying will replace it. Want to see a diff first, or go ahead?"

Show a simple diff if requested (old vs new, first 20 lines each).

First, detect the platform — check the crawl data for CMS detection, or ask:

"Which platform is {domain} hosted on? (Webflow / Framer / Cloudflare / other)"

Then follow the relevant path below.


9a — Cloudflare Workers (any site with Cloudflare DNS)

Best for: any site whose DNS goes through Cloudflare (the orange cloud ☁️ is enabled).

"To deploy to {domain}/llms.txt via Cloudflare Workers, I need 3 things: 1. API Token — Cloudflare dashboard → My Profile → API Tokens → Create Token → 'Edit Cloudflare Workers' template 2. Account ID — top-right of your Cloudflare dashboard 3. Zone ID — Cloudflare dashboard → click your domain → right sidebar under 'API' These are only used for this deployment and never stored."
~/.virtualenvs/samvida/bin/python3 \
  ~/.openclaw/workspace/samvida/scripts/deploy.py \
  --provider cloudflare \
  --llms-txt /tmp/samvida_llms.txt \
  --cf-token "{token}" \
  --account-id "{account_id}" \
  --zone-id "{zone_id}" \
  --domain "{domain}"

9b — Webflow (fully automated)

Best for: sites hosted on Webflow (webflow.io or custom domain via Webflow hosting).

"To deploy to Webflow, I need your Webflow Site API Token: Webflow dashboard → your site → Site Settings → Integrations → API Access → Generate API Token Scopes to enable: Assets (Read/Write), Sites (Read), Redirects (Read/Write), Publishing (Publish) Optionally: your Site ID (visible in the Webflow dashboard URL — auto-detected if omitted)."
~/.virtualenvs/samvida/bin/python3 \
  ~/.openclaw/workspace/samvida/scripts/deploy.py \
  --provider webflow \
  --llms-txt /tmp/samvida_llms.txt \
  --webflow-token "{token}" \
  --domain "{domain}"
  # --site-id "{site_id}"  # optional

How it works: Uploads llms.txt to Webflow's CDN → adds a 301 redirect /llms.txt → CDN URL → publishes. Agents follow the redirect transparently.

Note: Redirect API requires Webflow Basic plan or above. If the user is on Starter, Samvida will output manual redirect steps.


9c — Framer (instructions-only)

Framer has no public REST API for file hosting or redirect management. No credentials needed — just run the script and relay the output.

~/.virtualenvs/samvida/bin/python3 \
  ~/.openclaw/workspace/samvida/scripts/deploy.py \
  --provider framer \
  --llms-txt /tmp/samvida_llms.txt \
  --domain "{domain}"

The script outputs three options (A/B/C) with step-by-step instructions and prints the full llms.txt content for the user to save. Relay all of it clearly to the user.


9d — CMS detected (Cloudflare Worker deployed but CMS takes priority)

On CMS detected (output contains SAMVIDA_CMS:{name}):

"The Worker deployed successfully, but {CMS} is serving /llms.txt directly from their servers — so it takes priority over the Worker. Run the right deploy command for your platform: {paste the CMS-specific instructions from the script output}

On any error: relay the script's human-readable error message directly with a suggested fix.


Notes

  • Existing llms.txt: If the crawl found one, mention it early: "I noticed you already have a llms.txt. I'll generate a fresh one — you can compare and decide which to keep."
  • Anchor-only links (e.g. /#section): Skip for Level 2 crawling — they don't load new content.
  • The For Agents section is mandatory — even if empty of details, it signals intent to support agents and provides a contact path.
  • Never ask all questions at once — it's a conversation, not a form.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

92.09%
按下载量换算4,267

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills