add-model-bundle

Scaffold UniRL model bundle support for diffusion or autoregressive packages.

890|61|Updated Jun 8, 2026
One-click install
npx skills add https://github.com/Tencent-Hunyuan/UniRL --skill add-model-bundle
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: add-model-bundle
Source: https://github.com/Tencent-Hunyuan/UniRL/tree/main/.claude/skills/development/add-model-bundle
Command: npx skills add https://github.com/Tencent-Hunyuan/UniRL --skill add-model-bundle

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you add or update UniRL model support without having to reverse-engineer the framework's bundle, pipeline, and conditioning patterns from scratch.

Core Features & Use Cases

  • Model Package Scaffolding: Creates the expected UniRL package structure for diffusion or autoregressive models.
  • Config and Wiring Guidance: Defines the pipeline config dataclass, bundle loader, stage classes, and export points needed for discovery and instantiation.
  • Conditioning and Runtime Integration: Guides implementation of typed conditions, rollout plumbing, LoRA targets, FSDP hints, and meta-init behavior.
  • Validation and Tests: Recommends the right condition, step, stage, and pipeline tests to keep new model support reliable.

Quick Start

Ask me to add a new UniRL model bundle and I will outline the files, classes, config fields, and tests needed to integrate it correctly.

Frequently Asked Questions about add-model-bundle

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I add a new diffusion model package to UniRL?

To add a new diffusion model package to UniRL, you scaffold the expected package directory structure, define typed dataclass configs, and implement the bundle loader and stage classes for framework discovery and instantiation.

What is a UniRL model bundle and when do I need to create one?

A UniRL model bundle is a structured package integration that defines pipeline wiring, typed conditions, and rollout integration for new diffusion or autoregressive models, needed when adding new model support to the framework without reverse-engineering patterns.

Does UniRL model bundle support require FSDP and LoRA configuration?

UniRL model bundle support requires implementing FSDP hints and LoRA targets within the conditioning and runtime integration, alongside meta-init behavior and rollout plumbing to ensure proper framework functionality.

How do I validate a new autoregressive model integration in UniRL?

To validate a new autoregressive model integration in UniRL, implement targeted condition, step, stage, and pipeline tests to ensure the new model support remains reliable and safely integrated into the framework.

What's the best way to update UniRL pipeline configs for new model families?

The best way to update UniRL pipeline configs is using plain dataclass configs with hydra-config support, defining pipeline config fields, export points, and recipe updates across the UniRL model families for safe integration.