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

radxa-docsradxa 文档

Agent Skill

用于辅助文档、README、Markdown、说明文和内容稿件的整理与改写。它适合让 Agent 提炼结构、补齐章节、统一术语、检查链接或把零散材料整理成可读文档。使用时应保留项目已有事实、命令和路径,不要把未确认的信息写成确定结论;涉及对外文案时,还需要控制语气,避免过度营销或夸大能力。

总安装

2,822

周安装

120

GitHub Stars

公开资料未说明

下载量

989
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install radxa-docs

简介

自动检测 Radxa 开发板型号并映射对应产品线的完整离线文档。

  • 部署本地化知识库,涵盖系统烧录、驱动配置与外设接入指南。
  • 支持命令行查询与交互式引导,降低嵌入式开发入门门槛。
  • 文档内容以板卡硬件版本为准,跨代产品间可能存在接口差异。
  • 安装命令:openclaw skills install radxa-docs

SKILL.md

name
radxa-local-docs
description
Use when one Radxa skill should cover the full offline documentation workflow: detect the current board model, map it to the correct product series, deploy or update the local MDMaker documentation mirror under ~/.openclaw/MDMaker, and query board-specific offline docs before coding, debugging, or hardware operations.

Radxa Local Docs

Purpose

Combine the previous device-info, mdmaker-deploy, and radxa-doc capabilities into one publishable skill.

Use Bundled Resources

  • Run scripts/detect_device.sh to detect the current device model with Device Tree, DMI, hostname, and /proc/cpuinfo fallbacks.
  • Read references/device-series-map.md when a detected or user-provided model must be mapped to a Radxa product series.

Workflow

  1. Detect the current board model first.
  2. If detection fails or the host is not a Radxa board, fall back to the user-provided model name instead of guessing.
  3. Map the board model to a Radxa series with references/device-series-map.md.
  4. Check whether the local documentation mirror already exists under ~/.openclaw/MDMaker/dist/zh/ or ~/.openclaw/MDMaker/dist/en/.
  5. If the user asks to deploy or update docs, use the MDMaker workflow below.
  6. If the user asks a documentation question, locate the right language directory, product series, model directory, and topic-specific markdown file before answering.

MDMaker Workflow

Deploy

cd ~/.openclaw
git clone -b agent https://github.com/ZIFENG278/MDMaker.git
cd ~/.openclaw/MDMaker
python3 -m venv venv
source venv/bin/activate
pip install requests tqdm
python build_md_docs.py

Raw Docs Source

Prefer the upstream GitHub source first. Only fall back to the domestic GitCode mirror if GitHub clone or pull fails.

Primary source:

git clone https://github.com/radxa-docs/docs.git ~/.openclaw/MDMaker/radxa-docs

Fallback source:

git clone https://gitcode.com/radxa-docs/docs.git ~/.openclaw/MDMaker/radxa-docs

If ~/.openclaw/MDMaker/radxa-docs/ already exists and GitHub access fails, switch the existing repo to GitCode and retry:

cd ~/.openclaw/MDMaker/radxa-docs
git remote set-url origin https://gitcode.com/radxa-docs/docs.git
git pull

Update

cd ~/.openclaw/MDMaker
source venv/bin/activate
python update_md_docs.py

Expected Paths

  • Project root: ~/.openclaw/MDMaker/
  • Source repo: ~/.openclaw/MDMaker/radxa-docs/
  • Primary upstream: https://github.com/radxa-docs/docs.git
  • Domestic upstream mirror: https://gitcode.com/radxa-docs/docs.git
  • Chinese docs: ~/.openclaw/MDMaker/dist/zh/
  • English docs: ~/.openclaw/MDMaker/dist/en/

If the mirror is missing and the user did not ask to deploy it, report that the prerequisite is missing instead of fabricating documentation answers.

Offline Query Workflow

Directory Selection

  • Choose zh/ or en/ first.
  • Then enter dist/<lang>/<series>/<model>/.
  • Common sections include getting-started, hardware-design, low-level-dev, os-config, radxa-os, other-os, app-development, and apps-deployment.

Search Strategy

Prefer targeted file discovery over broad scans:

find ~/.openclaw/MDMaker/dist/<lang>/<series>/<model> -name "*<keyword>*.md"
rg -n "<keyword>" ~/.openclaw/MDMaker/dist/<lang>/<series>/<model>

Use hardware-design for pinouts, interfaces, power, and schematic-adjacent questions. Use getting-started and os-config for installation, boot, networking, and system setup. Use low-level-dev for bootloader, Device Tree, and low-level platform details. Use app-development and apps-deployment for software stacks and deployment topics.

Relative Link Handling

When a document contains relative .md links with ../, normalize the link against the current document path, then open the resolved file under the same dist/<lang>/ tree.

Output Rules

  • Quote concrete file paths when citing local documentation.
  • State clearly when the answer is confirmed from local docs versus inferred from model mapping.
  • If multiple boards fit the same series, ask or infer only from explicit evidence such as detection output or the user’s board name.

Safety

  • Do not assume a board model without evidence.
  • Do not perform flashing, partitioning, bootloader overwrite, or EEPROM changes as part of this skill.
  • Keep commands low-risk unless the user explicitly asks for deployment or update actions.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

89.61%
按下载量换算886

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills