Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

design-kernel设计内核

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

512

周安装

22

GitHub Stars

公开资料未说明

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:design-kernel(设计内核)
来源仓库:https://github.com/pepperu96/hyper-mla
仓库路径:skills/design-kernel
安装命令:
npx skills add https://github.com/pepperu96/hyper-mla --skill design-kernel
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pepperu96/hyper-mla --skill design-kernel

简介

提供跨领域特定语言(DSL)的统一工作流程与共享规则。

  • 根据实现语言加载对应的设计技能以获取运行时模式与API指引。
  • 使用时需先确定语言类型(如 cutile-dsl 或 cute-dsl)再选择匹配技能。
  • 安装方式:GitHub,命令为 npx skills add https://github.com/pepperu96/hyper-mla --skill design-kernel。
  • 注意:此为元技能,不直接生成设计,需配合语言专用技能协同工作。

SKILL.md

Kernel Design — Shared Workflow

This skill contains everything that is common across all supported DSLs. Once the implementation language is known, also load the matching language-specific design skill for DSL-specific runtime patterns, pitfalls, and API guidance.

Language Selection

Language keyPython package pathDesign skillAPI reference skillUse when
cutile-dslcutile/design-cutile-dsl-kernel/cutile-dsl-refBlock-level control, tiling, CTA remapping, compiler hints are sufficient
cute-dslcute_python/design-cute-dsl-kernel/cute-dsl-refExplicit thread/warp scheduling, TMA pipelines, shared memory control needed

Naming Conventions

  • Public-facing names, docs, skills, and knowledge-base entries use kebab-case language keys (e.g., cute-dsl).
  • Python packages use underscores where required (e.g., cute_python).
  • Kernel package nesting: src/mla_var3/kernel/<lang_pkg>/mla/<design>/....
  • The shortcut CLI python -m mla_var3.kernel <kernel> [<version>] is the preferred user-facing entry point.

Kernel Structure and Versioning

We use a nested structure for kernel packages inside the kernel sub-package:

  1. Language level: which DSL the kernel is implemented in (e.g., kernel.cutile, kernel.cute_python).
  2. Layer level: which model layer the kernel targets (e.g., kernel.cutile.mla).
  3. Design level: the kernel design (e.g., kernel.cutile.mla.flash_mla).
  4. Version level: the kernel version (e.g., kernel.cutile.mla.flash_mla.flash_mla_v2). The first version has no suffix and is called the "base version".
  5. Entry module: inside the version package, a module named after the version's full name (e.g., flash_mla_v2.py) must contain the KernelPlan subclass.

Package Nesting Pattern

kernel.<lang_pkg>.mla.<design>.<design>[_v<N>].<design>[_v<N>].py

Rules

  • Base version: <design>/<design>/ (no suffix, aliased as v0)
  • Version N: <design>/<design>_vN/
  • Kernel entry function name MUST match the module filename
  • Each version is a sibling package under the design package

CLI Usage

# Full path
python -m mla_var3.kernel.<lang_pkg>.mla.<design> [<version>] [args]
# Shortcut (discovers across all languages)
python -m mla_var3.kernel <design> [<version>] [args]

# Examples
python -m mla_var3.kernel.cutile.mla.mla_var6_plus v4 --b=32 --s=16 --t=4096
python -m mla_var3.kernel mla_var6_plus v4 --b=32 --s=16 --t=4096

Version Creation Checklist

  1. Clone the previous version: source.venv/bin/activate python./scripts/clone-kernel.py <kernel_full_name> <new_suffix>
  2. The script rewrites versioned symbols automatically:

- Python module filenames - Decorated kernel function names (@ct.kernel, @cute.kernel, @cute.jit) - KernelPlan subclass names - Tiling subclass names - Intra-package imports - Quoted forward references and embedded package-name string literals

  1. Modify the cloned files to implement the new optimization.
  2. Manual fallback if the script is unavailable:

- Copy the latest version directory - Rename the versioned module files - Update class names, function names, imports, and pipeline name strings by hand

  1. Verify correctness: source.venv/bin/activate python -m mla_var3.kernel.<lang_pkg>.mla.<design> <version> --prof_type=disabled --check
  2. Update devlog with "What changed" section.

KernelPlan Structure

Every kernel version must implement a KernelPlan subclass. The plan() method returns a DSL-specific runtime wrapper (see the language-specific skill for the concrete type).

@dataclass
class MyKernel(KernelPlan):
    b: int = 64; s: int = 1; t: int = 4096  # problem dimensions
    tiling: MyTiling = field(default_factory=MyTiling)

    def prepare_inputs(self, device) -> tuple:
        # Allocate and return input tensors

    def reference_fn(self, *inputs) -> tuple:
        # Reference implementation for --check

    def _autotune_configs(self) -> list[MyTiling]:
        # Candidate tiling configs for autotuner search

    def _algorithmic_flops_bytes(self, tiling) -> tuple[int, int]:
        # Analytical (FLOPs, bytes) for roofline

    def plan(self, *inputs) -> BenchmarkFn:
        # Build executable runtime object (DSL-specific)

    def plan_empty(self, peak_tflops, peak_gbps) -> BenchmarkFn:
        # Roofline-only prediction (no real tensors)

Tiling Dataclass

@dataclass
class MyTiling(Tiling):
    # DSL-specific fields — see the language-specific skill for examples

    def validate(self, pd: "MyKernel") -> bool:
        # Return True if this tiling is valid for the given problem dimensions
        ...

Composition Patterns

Sequential pipeline

def plan(self, *inputs) -> KernelPipeline:
    stage1 = stage1_plan.plan(...)
    stage2 = stage2_plan.plan(...)
    return KernelPipeline(_name="my_pipeline", stages=[stage1, stage2])

Concurrent stages + sequential combine

def plan(self, *inputs) -> KernelPipeline:
    a = plan_a.plan(...)
    b = plan_b.plan(...)
    concurrent = ConcurrentKernels(
        _name="overlap_group", concurrent_kernels=[a, b],
        validate_joint_tiling_fn=validate_fn,
    )
    combine = combine_plan.plan(...)
    return KernelPipeline(_name="pipeline", stages=[concurrent, combine])

Implementation Workflow

  1. Read current kernel source — understand the existing implementation
  2. Read optimization instructions from orchestrator (specific optimizations to apply)
  3. Load the DSL API reference skill — do not hallucinate APIs
  4. Check the DSL suitability gate (in the language-specific skill) before implementing
  5. Clone the current version with python./scripts/clone-kernel.py
  6. Read optimization detail files from docs/knowledge/ for implementation patterns
  7. Implement changes in the new version files
  8. Test correctness: --prof_type=disabled --check
  9. Update devlog with "What changed" and "High-level description"
  10. If committing, use a Conventional Commits message

Knowledge Base Links

  • Put reusable algorithmic/device/hardware findings in docs/knowledge/optimizations/ or docs/knowledge/anti-patterns/.
  • Put DSL-specific implementation findings in docs/knowledge/languages/<language>/....
  • Use the language-specific optimization catalog skill together with the language-specific design skill.

Development Log Entry Template

Add to docs/kernels/<kernel>.md under ## Development log:

### V<N>: [Brief Description]

**Location**: `src/mla_var3/kernel/<lang_pkg>/mla/<kernel>/<kernel>_v<N>/`

**What changed**:
- [Bullet list of changes]

**High-level description of main code changes**:
- [Description of optimizations and how they relate to profiling insights]

Performance metrics, bottleneck analysis, issues, and insights are filled by the profiler agent after profiling.

Designer Output Contract

Return results to the orchestrator in this format:

## New Version: [kernel] [version]

### Changes Applied
1. [change + rationale]

### Files
- Created: [paths]
- Modified: [paths]

### Correctness: [PASS/FAIL]

### Devlog Entry Written: [path]

References

  • Optimization patterns: docs/knowledge/optimizations/
  • Anti-patterns: docs/knowledge/anti-patterns/
  • Kernel devlogs: docs/kernels/<kernel>.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.8%
按下载量换算68

Claude

29.58%
按下载量换算53

Cursor

20.39%
按下载量换算37

Gemini CLI

8.37%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills