Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

build-nitro-modules构建硝基模块

Agent Skill

build-nitro-modules 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

333

周安装

14

GitHub Stars

35

下载量

116
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:build-nitro-modules(构建硝基模块)
来源仓库:https://github.com/riteshshukla04/agent-skills
仓库路径:skills/build-nitro-modules
安装命令:
npx skills add https://github.com/riteshshukla04/agent-skills --skill build-nitro-modules
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/riteshshukla04/agent-skills --skill build-nitro-modules

简介

用于构建 React Native Nitro Modules,涵盖 monorepo 搭建、原生代码生成和平台实现。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中开发高性能原生模块,使用 nitrogen 进行 codegen。
  • 通过 npx skills add 命令从 GitHub 安装,需遵循 spec 文件规范,勿修改生成目录内容。
  • 注意权限范围和维护状态,避免触发不必要的联网、命令执行或文件写入操作。
  • build-nitro-modules 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Build Nitro Modules

Overview

End-to-end skill for building a React Native Nitro Module: monorepo scaffolding via Nitrogen, TypeScript HybridObject spec authoring, native code generation, platform implementation (C++/Swift/Kotlin), example app wiring, and publish preparation.

Nitro Modules use a codegen pipeline (nitrogen) that reads .nitro.ts spec files and generates native C++/Swift/Kotlin boilerplate. You then fill in the implementation. This is fundamentally different from old-style turbo modules.

NEVER modify any file inside nitrogen/generated/. These files are fully regenerated every time npx nitrogen runs — any manual edits will be silently overwritten. Always edit only the .nitro.ts spec file, then re-run nitrogen to regenerate.

Ask First — Before Doing Anything

First, determine what the user wants to do:

"Are you creating a new Nitro Module library from scratch, or adding a new HybridObject to an existing library?"

If creating a new library — ask all of these before any command:

  1. Library name — What should the library be called? (e.g. react-native-math)
  2. Monorepo with packages/ folder — Should the library live in packages/<name> inside a monorepo? *(Strongly recommended — default: yes)*
  3. Example app — Should an example app be created to test the module? *(Recommended — default: yes)*
  4. Native languages — Which platforms and languages?

- iOS: swift (default) or cpp - Android: kotlin (default) or cpp - Cross-platform C++ only: both cpp

  1. Module purpose — Briefly describe what the module does so the correct spec methods can be designed

Do not proceed past Step 1 of the build sequence until all five questions are answered.

If adding a HybridObject to an existing library — ask only:

  1. HybridObject name — What should the new HybridObject be called? (e.g. Camera, Crypto)
  2. Native languages — iOS: swift or cpp? Android: kotlin or cpp?
  3. Purpose — What does this HybridObject do?

Then skip directly to spec-hybrid-object.md (write the spec), spec-nitro-json.md (add autolinking entry), native-nitrogen-codegen.md (re-run nitrogen), and the relevant native implementation file. Skip all setup, monorepo, and example app steps.

Typical Build Sequence

# 1. Scaffold
npx nitrogen@latest init react-native-math

# 2. Run codegen (from package folder after writing spec + nitro.json)
cd packages/react-native-math && npx nitrogen

# 3. Create example app
npx @react-native-community/cli@latest init --skip-install MathExample

# 4. Install and test
cd example && bun add ../packages/react-native-math
bun add react-native-nitro-modules
bun example android
bun example ios

Full step-by-step references below.

When to Apply

Reference these guidelines when:

  • Creating any new React Native native module using the Nitro framework
  • Writing HybridObject TypeScript specs (*.nitro.ts files)
  • Running Nitrogen codegen and implementing generated interfaces
  • Setting up a monorepo example app for a Nitro library
  • Configuring Android Gradle paths for a monorepo structure
  • Debugging autolinking failures or missing generated files
  • Preparing a Nitro module package for npm publishing

Priority-Ordered Guidelines

PriorityCategoryImpactReference
1Monorepo scaffoldCRITICALsetup-monorepo-init.md
2HybridObject specCRITICALspec-hybrid-object.md
3nitro.json autolinkingCRITICALspec-nitro-json.md
4Nitrogen codegenHIGHnative-nitrogen-codegen.md
5C++ implementationHIGHnative-implement-cpp.md
6Kotlin implementationHIGHnative-implement-kotlin.md
7Swift implementationHIGHnative-implement-swift.md
8Example app setup *(if requested)*HIGHexample-app-setup.md
9Android Gradle paths *(if example app)*HIGHexample-android-config.md
10Metro + install + test *(if example app)*HIGHexample-metro-install.md
11npm publish prepMEDIUMspec-package-publish.md

Quick Reference

Minimum HybridObject Spec (src/specs/Math.nitro.ts)

import { type HybridObject, NitroModules } from 'react-native-nitro-modules'

interface Math extends HybridObject<{ ios: 'swift'; android: 'kotlin' }> {
  add(a: number, b: number): number
}

const math = NitroModules.createHybridObject<Math>('Math')
export { math }

Minimum nitro.json

{
  "$schema": "https://nitro.margelo.com/nitro.schema.json",
  "cxxNamespace": ["math"],
  "ios": { "iosModuleName": "ReactNativeMath" },
  "android": {
    "androidNamespace": ["math"],
    "androidCxxLibName": "ReactNativeMath"
  },
  "autolinking": {
    "Math": { "swift": "HybridMath", "kotlin": "HybridMath" }
  }
}

Root package.json Scripts

{
  "scripts": {
    "specs": "bun --cwd packages/react-native-math run specs",
    "example": "bun --cwd example"
  }
}

Run: bun example android, bun example ios, bun specs

References

FileDescription
setup-monorepo-init.mdMonorepo workspace structure and nitrogen init scaffold
spec-hybrid-object.mdWriting *.nitro.ts specs and exporting HybridObjects
spec-nitro-json.mdnitro.json all fields, autolinking, namespace configuration
native-nitrogen-codegen.mdRunning Nitrogen and verifying generated files
native-implement-cpp.mdImplementing HybridObjects in C++
native-implement-kotlin.mdImplementing HybridObjects in Kotlin (Android)
native-implement-swift.mdImplementing HybridObjects in Swift (iOS)
example-app-setup.mdRN CLI example app init, workspace wiring, version alignment
example-android-config.mdsettings.gradle and build.gradle monorepo path fixes
example-metro-install.mdMetro watchFolders, library install, App.tsx usage, test runs
spec-package-publish.mdpackage.json author, files field, npm publish readiness

Problem → Skill Mapping

ProblemReferenceAction
Don't know where to startsetup-monorepo-init.mdScaffold with nitrogen init
Spec file syntax errorspec-hybrid-object.mdFix *.nitro.ts interface
Autolinking not workingspec-nitro-json.mdCheck nitro.json autolinking block
Nitrogen generates no filesnative-nitrogen-codegen.mdVerify spec file extension and run command from right dir
C++ types unclearnative-implement-cpp.mdFollow type reference links to canonical examples
Kotlin compilation errornative-implement-kotlin.mdCheck annotations and override modifiers
Swift compilation errornative-implement-swift.mdCheck class inheritance and property signatures
Example app won't build (Android)example-android-config.mdFix Gradle monorepo path configuration
Metro can't resolve libraryexample-metro-install.mdAdd watchFolders to metro.config.js
Version mismatch between example and packageexample-app-setup.mdAlign react-native versions across workspaces
Package missing files on npmspec-package-publish.mdFix files field in package.json

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.35%
按下载量换算42

Claude

30.12%
按下载量换算35

Cursor

19.16%
按下载量换算22

Gemini CLI

8.73%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills