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

seed-hypermedia-read种子超媒体阅读

Agent Skill

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

总安装

480

周安装

20

GitHub Stars

52

下载量

160
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:seed-hypermedia-read(种子超媒体阅读)
来源仓库:https://github.com/seed-hypermedia/seed
仓库路径:skills/seed-hypermedia-read
安装命令:
npx skills add https://github.com/seed-hypermedia/seed --skill seed-hypermedia-read
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/seed-hypermedia/seed --skill seed-hypermedia-read

简介

用于超媒体内容的智能解析。seed-hypermedia-read 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合结构化非文本信息的提取。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 可支持知识图谱构建和数据关联。
  • 需验证来源可靠性避免错误关联。
  • 建议结合上下文理解语义关系。

SKILL.md

Seed Hypermedia gRPC Skill

Scope: Read-only gRPC access to Seed Hypermedia. If the user wants to write, update, or delete, refuse and route to the seed-hypermedia-write skill.

Prerequisites

Check if grpcurl is installed:

which grpcurl

If not installed:

# macOS
brew install grpcurl

# Linux (package manager)
# Debian/Ubuntu
sudo apt-get install grpcurl

# Fedora/RHEL
sudo dnf install grpcurl

# Arch
sudo pacman -S grpcurl

# Or download binary from: https://github.com/fullstorydev/grpcurl/releases

Server Endpoints

Seed gRPC server runs on:

  • Dev: localhost:58002
  • Production: localhost:56002

Check which is available first.

Hypermedia IRI Format

Document IRI: hm://<account>/<path>?v=<version>#<block>&l

  • Only <account> is required (e.g., z6Mk...)
  • <path>: Optional document path
  • ?v=<version>: Optional specific version
  • #<block>: Optional block ID
  • &l: Optional latest version flag

Comment IRI: hm://<author>/<tsid>

  • <author>: Account identifier
  • <tsid>: Timestamp-based comment ID

Workflow

1. Check Server

grpcurl -plaintext localhost:58002 list  # Try dev first
grpcurl -plaintext localhost:56002 list  # Then production

2. Initial API Discovery (Once per Session)

Use reflection to discover the API structure for new commands you don't know about. Important: Once you've discovered a service/method structure, you can reause it without doing reflection again. Assume the server does not change. However if subsequent requests fail (read the error message) and they fail because of structure, then you may do reflection again.

# List all services
grpcurl -plaintext <host:port> list

# Describe a service to see its methods
grpcurl -plaintext <host:port> describe <service.name>

# Describe a method to see its signature
grpcurl -plaintext <host:port> describe <service.name.MethodName>

# Describe message structure to see required fields
grpcurl -plaintext <host:port> describe <message.type>

3. Parse User Intent

  • Extract what Seed operation is needed
  • If the request is write/update/delete, refuse and route to seed-hypermedia-write (do not call any gRPC method)
  • Parse any IRIs to get account, path, version, etc.
  • If needed service/method is unknown, use reflection to discover it (once)
  • Determine if this requires single or multiple calls

4. Make RPC Calls

Single operation:

grpcurl -plaintext -d '{"field": "value"}' <host:port> <service/Method>

Compound operations (multiple dependent calls):

# Get data from first call
RESULT=$(grpcurl -plaintext -d '{...}' <host:port> <service1/Method1>)

# Extract needed field using jq
VALUE=$(echo "$RESULT" | jq -r '.fieldName')

# Use in next call
grpcurl -plaintext -d "{\"field\": \"$VALUE\"}" <host:port> <service2/Method2>

### 5. Download media referenced by IPFS

When a document references a media file (audio/video/image/document), it will often be an IPFS URI like:

`ipfs://<cid>`

To download the bytes, use the **local HTTP gateway** (this is not gRPC):

- URL format: `http://localhost:<httpport>/ipfs/<cid>`
- Port mapping: `httpport = grpcport - 1`
	- Dev: gRPC `58002` → HTTP `58001`
	- Production: gRPC `56002` → HTTP `56001`

Example:

`curl -L "http://localhost:58001/ipfs/<cid>" --output /tmp/downloaded-file`
select the extension according to the media type

IRI Parsing

Document IRI hm://<account>/<path>?v=<version>#<block>&l:

  • account: Text after hm:// until first /, ?, #, or &
  • path: Text after first / until ?, #, or & (empty string if absent)
  • version: Value after ?v= (if present)
  • block: Value after # (if present)
  • latest: Check for &l flag

Comment IRI hm://<author>/<tsid>:

  • author: Text after hm:// until /
  • tsid: Text after /

CLI Export

For exporting documents as markdown (with frontmatter and block IDs), use the Seed CLI instead of gRPC. The CLI's document get command outputs round-trip-compatible markdown by default:

if command -v seed-cli &>/dev/null; then
  SEED_CLI="seed-cli"
else
  SEED_CLI="bun run frontend/apps/cli/src/index.ts"
fi

# Default output: markdown with frontmatter and block IDs
$SEED_CLI document get hm://z6Mk.../my-doc

# Write to file
$SEED_CLI document get hm://z6Mk.../my-doc -o doc.md

# Structured output (JSON/YAML)
$SEED_CLI document get hm://z6Mk.../my-doc --json

For piping exported markdown back into write operations, see the seed-hypermedia-write skill.

Key Rules

  1. Read-only only - This skill must never call write/update/delete endpoints. Refuse any request that would modify Seed data and route to seed-hypermedia-write.
  2. Discover once per session - Use reflection to learn API structure, then reuse that knowledge. The server won't likely change during the session.
  3. Parse IRIs carefully - Extract all components according to format above
  4. Omit optional fields - If IRI component is absent, don't send it (not even empty string)
  5. Check signatures before first use - Use describe to understand method parameters
  6. Chain efficiently - For compound operations, minimize calls while getting needed data
  7. Handle pagination - Check for page_size/page_token fields, default to 50-100 for page_size
  8. Summarize large responses - Show key data for responses >10KB
  9. Prefer account names over account IDs - Do not surface raw account IDs to the user when referring to standalone accounts/authors (e.g., in “Author”, “Account”, “Owner” fields). Instead, resolve a human-friendly account name using the server’s account lookup/search RPC (discover it via reflection if needed). Exception: when displaying a Document IRI or Comment IRI (e.g., hm://<account>/...), keep the <account> portion unchanged because it is part of the URL; if helpful, present the resolved display name separately alongside the IRI.

Response Handling

  • Extract key Seed metadata (names, authors, timestamps)
  • Explain errors in user-friendly terms
  • If method doesn't exist, use reflection to find alternatives

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.33%
按下载量换算52

Claude

29.92%
按下载量换算48

Cursor

20.09%
按下载量换算32

Gemini CLI

8.7%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills