npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

hi-aiot-cli

v1.3.3

Published

Hi-AIoT Agent Skills 集合 — HiSilicon Hi3516CV610s 嵌入式平台开发工具集

Readme

hi-aiot-cli

Hi-AIoT Agent Skills 集合 — HiSilicon Hi3516CV610/CV608 嵌入式平台开发工具集。

安装

npm install -g hi-aiot-cli

安装后自动将 skills 部署到 ~/.config/hi-aiot-cli/.agents/,并提供 hi-aiot-cli 命令。

使用

初始化

# 初始化暂存区(首次使用或恢复内置 skills)
hi-aiot-cli setup

查看 skills

# 按分组列出所有 skills
hi-aiot-cli list

# 查看支持的 AI 工具
hi-aiot-cli list --targets

# 交互式管理暂存区(删除 / 选择安装)
hi-aiot-cli list -i

从 GitCode 下载 skills

# 全量下载指定仓库的子目录
hi-aiot-cli install skill --gitcode https://gitcode.com/<owner>/<repo>/tree/main/skills

# 交互式选择要保留的 skill
hi-aiot-cli install skill --gitcode https://gitcode.com/<owner>/<repo>/tree/main/skills -i

# 指定分支(分支名含 / 时必须使用 --ref)
hi-aiot-cli install skill --gitcode https://gitcode.com/<owner>/<repo> \
  --ref feature/v2 --path skills

安装部署

# 安装到当前项目(默认 .agents/ 目录)
hi-aiot-cli start

# 交互式选择后安装
hi-aiot-cli start -i

# 安装到当前项目,适配 Claude Code(.claude/ 目录)
hi-aiot-cli start --target claude

# 全局安装到 Claude Code 的 skills 目录
hi-aiot-cli start -g --target claude

# 全局安装到 OpenCode 的 skill 目录
hi-aiot-cli start -g --target opencode

# 安装到自定义路径
hi-aiot-cli start --path /path/to/project

目录结构

~/.config/hi-aiot-cli/
├── .agents/
│   ├── skills/
│   │   ├── origin/                       ← 内置 skills
│   │   └── <owner>_<repo>_<subpath>/     ← 从 GitCode 下载的 skills
│   ├── rules/                            ← 编码规范
│   └── backups/                          ← 重复下载时的旧版本备份

支持的 AI 工具

| 目标 | 项目目录 | 全局目录 | |------|----------|----------| | agents(默认) | .agents/ | ~/.agents/ | | claude | .claude/ | ~/.claude/skills/ | | opencode | .opencode/ | ~/.config/opencode/skill/ |

内置的 Skills(19 个)

需求分析

  • requirement-analysis — 需求结构化分析

驱动适配与硬件 Bring-up

  • flash-adapter — FMC SPI NAND/NOR Flash 适配
  • sensor-driver-adapter — Sensor 驱动适配/移植
  • spi-panel-bringup — SPI 屏幕 DRM 适配
  • touch-panel-bringup — 电容触摸屏适配
  • cross-compile — ARM 嵌入式交叉编译

烧录与板端控制

  • hi3516cv610-burn — 三机联动烧录
  • hi3516cv610-burn-docker — Docker 内烧录
  • hi3516cv610-burn-local — 纯本地 Windows 烧录
  • board-ssh-control — SSH 板端控制

UI 设计与开发

  • pencil-ui-design-skill — Pencil UI 设计
  • lvgl-ui-code-skill — LVGL UI 代码生成

代码审查与提交

  • gitcode-review-pr — GitCode PR Review
  • gitcode-submit-pr — GitCode PR 提交
  • gitcode-code-pull — GitCode 代码同步
  • hisi-code-review — 双轨并行源码审查

编译

  • hi_aiot_build — Hi-AIoT 编译构建

测试

  • auto-ut-skill — 嵌入式 C 单元测试

其他

  • svp-integrate — SVP 智能视频处理集成

版本命名规范

语义化版本MAJOR.MINOR.PATCH

  • MAJOR:CLI 接口变更、删除 skill
  • MINOR:新增 skill、新增 targets
  • PATCH:文档修复、内容更新

详见 .config/VERSIONING.md