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

sensecraft-ai-model-hubsensecraft AI 模型中心

Agent Skill

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

总安装

5,214

周安装

213

GitHub Stars

1

下载量

1,670
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install sensecraft-ai-model-hub

简介

将 OpenClaw 连接到 SenseCraft 公共模型库,以搜索、检查、导出和下载软件和边缘 AI 工作流程的 AI 视觉模型。

SKILL.md

name
sensecraft-ai-model-hub
description
Connect OpenClaw to the SenseCraft public model library to search, inspect, export, and download AI vision models for software and edge AI workflows.

SenseCraft AI Model Hub

Overview

Use this skill to treat the SenseCraft public model library as a practical source of pretrained vision models for OpenClaw.

The core workflow is fixed:

  1. list_model to discover model IDs
  2. view_model to resolve a model into full metadata and file_url
  3. download from file_url

Assume:

  • base URL: https://sensecraft.seeed.cc/aiserverapi
  • default appid=131
  • public endpoints are anonymous unless evidence shows otherwise
  • list responses do not include direct download URLs
  • the actual download URL is data.file_url from view_model

Use bundled script first

Prefer the bundled script for repeatable work instead of rebuilding curl pipelines every time.

Commands:

  • scripts/sensecraft_models.py list — list one page of public models
  • scripts/sensecraft_models.py view <id> — show one model detail with URL hints
  • scripts/sensecraft_models.py index — crawl all pages, fetch detail rows, summarize, and export an index
  • scripts/sensecraft_models.py download — download one or more model files and emit a manifest
  • scripts/sensecraft_webcam_person_demo.py — run a local webcam person-detection demo with a downloaded SenseCraft TFLite model

Good default responses

Find models

Use when the request is like:

  • “search SenseCraft for person models”
  • “list classification models”
  • “show models for uniform_type 32”

Prefer:

python3 scripts/sensecraft_models.py list --search person --length 30
python3 scripts/sensecraft_models.py list --task 1 --uniform-type 32 --length 50

Inspect one model

Use when the request is like:

  • “what is model 60768?”
  • “give me the download link for this model ID”

Prefer:

python3 scripts/sensecraft_models.py view 60768

This returns annotated detail including:

  • file_url
  • filename hint
  • extension hint
  • whether the URL looks like a .tflite artifact

Export a searchable full index

Use when the request is like:

  • “dump the whole public model catalog”
  • “make me a JSON/CSV index”
  • “summarize what model types are in the library”

Prefer:

python3 scripts/sensecraft_models.py index --format json --output ./sensecraft-models.json --summary --summary-json ./sensecraft-summary.json
python3 scripts/sensecraft_models.py index --format csv --output ./sensecraft-models.csv

Use filters to reduce scope when possible:

python3 scripts/sensecraft_models.py index --task 1 --uniform-type 32 --format json --output ./filtered.json
python3 scripts/sensecraft_models.py index --model-format 2 --format table --summary

Download models

Use when the request is like:

  • “download model 60768”
  • “download these several models”
  • “download everything from this exported index”

Prefer:

python3 scripts/sensecraft_models.py download --model-id 60768 --output-dir ./downloads --manifest ./downloaded.json --summary
python3 scripts/sensecraft_models.py download --from-index ./sensecraft-models.json --output-dir ./downloads --manifest ./downloaded.json --summary-json ./downloaded-summary.json

Run a local webcam demo

Use when the request is like:

  • “download a model and show me live inference from my webcam”
  • “make a local Python script that opens the camera and draws boxes”
  • “validate a SenseCraft model on my laptop before deployment”

Prefer this path for a minimal local demo:

  1. Run scripts/setup_local_demo_env.sh
  2. Let scripts/run_local_person_demo.sh auto-download model 60080 into ./models if missing
  3. Run the launcher script

Example:

bash scripts/setup_local_demo_env.sh
bash scripts/run_local_person_demo.sh

Helpful variants:

bash scripts/run_local_person_demo.sh --debug
bash scripts/run_local_person_demo.sh --camera 1
python3 scripts/sensecraft_webcam_person_demo.py --image ./sample.png --save ./annotated.png

Read references/local-webcam-demo.md before changing the postprocess logic or if the user reports bad boxes. Keep local demo assets under the skill root with this layout:

  • models/ — downloaded TFLite artifacts and manifests
  • captures/ — saved annotated frames from live demos
  • scripts/ — setup, launcher, and Python entrypoints

Output requirements

When summarizing models for the user, include as many of these as available:

  • id
  • name
  • description
  • task
  • uniform_types
  • model_format
  • file_url
  • filename or extension hint if relevant
  • whether the artifact *looks like* .tflite

When recommending a model for OpenClaw integration, also include:

  • expected purpose of the model
  • uncertainty about task mapping or format
  • whether the artifact should be inspected after download before claiming TFLite compatibility

Field interpretation rule

Do not invent semantic names for task, uniform_type, or model_format unless the mapping is documented.

Safe behavior:

  • report raw numeric values exactly
  • compare/group/filter by those raw values
  • if the user wants human-readable meanings, state that the meaning is not confirmed and ask for or look for authoritative mapping

Read references/field-mapping-notes.md if the user asks what those numeric values mean.

API behavior

List models

Call:

GET /model/list_model

Typical parameters:

  • appid=131
  • length
  • page
  • search
  • uniform_type
  • repeated task

Returned list items typically include:

  • id
  • name
  • description
  • uniform_types
  • task

Do not expect file_url here.

View model detail

Call:

GET /model/view_model?appid=131&model_id=<ID>

Read from the detail response:

  • data.id
  • data.name
  • data.description
  • data.task
  • data.uniform_types
  • data.model_format
  • data.file_url

data.file_url is the real download link.

Download model

Download with redirect following enabled.

Equivalent shell shape:

curl -L 'FILE_URL' -o output.bin

Safety and reliability rules

  • Treat the library as public, but do not assume the API contract is perfectly stable.
  • Use small delays during bulk detail fetches or downloads; avoid aggressive parallel floods.
  • Retry transient request failures a small number of times.
  • If view_model fails for a specific ID, skip it and record the failure during bulk crawls.
  • Preserve original metadata in exported JSON when possible.
  • Do not claim a model is definitely TFLite only from category or filename hints.
  • After download, inspect the artifact if exact runtime compatibility matters.
  • Do not guess YOLO-family fused-output decoding from generic tutorials when SSCMA-Micro or model-specific evidence is available.
  • For macOS local demos, warn that webcam access may fail until the terminal app has camera permission.

References

  • references/sensecraft-api.md — API contract and workflow notes
  • references/field-mapping-notes.md — guidance for unknown numeric mappings
  • references/integration-notes.md — post-download validation and TFLite integration checks
  • references/local-webcam-demo.md — proven local webcam demo flow, package choices, and decoding caveats

Decision rule

If the user wants source discovery, indexing, filtering, URL resolution, or downloading from SenseCraft, stay inside this skill.

If the user wants broader model selection across multiple ecosystems, use this skill to retrieve SenseCraft candidates first, then compare them against wider TFLite integration constraints.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.68%
按下载量换算1,331

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills