Skip to main content

tomevault-io/tomes

SkillsMP는 tomevault-io/tomes에서 18,034개의 skill을 수집했습니다. skill을 열어 소스와 세부 정보를 확인하세요.

최근 기록된 소스 활동
SkillsMP 카탈로그 업데이트
수집된 skills
18,034
GitHub 스타
1
GitHub 포크
0

수집된 skill 18,034개 중 40개를 표시합니다.

직업 분류
소프트웨어 개발자
설명

> Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing a Rust test that exercises a failure path or a MASM test that expects a `panic` / `assert` — assert on the specific expected error variant or error code.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing or reviewing MASM hot paths — prefer the cheaper equivalent instruction: `neq.0` over `gt.0` for non-zero checks, `cdrop` over an `if/else` selecting between two values, `dup.N` over `loc_load` for a value still on the stack, `eqw` over…

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing Rust arithmetic on amounts or other quantities derived from external/user input — guard against silent overflow.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when naming a conversion or accessor method in Rust — follow the Rust API naming conventions for the method's cost and ownership.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing a MASM procedure inside a reusable account component that accesses account storage — receive the storage slot as a parameter so the component is portable across storage layouts.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when introducing API parameters, struct fields, or return types that carry a domain value — represent them with a domain newtype that enforces their invariants.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when constructing a `Felt` from a numeric value in Rust — avoid silently truncating values that may exceed the field modulus.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing or editing a Rust doc comment that references a type, method, or module — link the reference so renames are caught by rustdoc.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing or editing a Rust error message, panic/assert string, or MASM `ERR_*` constant — follow the Rust convention for error-message casing and punctuation.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Enforce constant definition and organization conventions for Miden Assembly (.masm) files. Use when editing, reviewing, or creating .masm files that define or use constants. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Enforce doc comment conventions for Miden Assembly (.masm) procedures. Use when editing, reviewing, or creating .masm procedures, especially when documenting inputs, outputs, panic conditions, or invocation types. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when adding or editing MASM `assert*` / `panic` instructions — give every assertion a descriptive named error code.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when defining the interface for a new MASM procedure — keep its inputs explicit on the stack so the signature reflects what it consumes.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Enforce file structure and section ordering for Miden Assembly (.masm) files. Use when editing, reviewing, or creating .masm files. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Enforce inline commenting conventions for Miden Assembly (.masm) files. Use when editing, reviewing, or creating .masm files. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when a MASM procedure needs temporary scratch storage — keep it in procedure-local memory so it cannot collide in a shared global region.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing or editing MASM or Rust code that contains meaningful numeric literals — promote them to named constants with a single source of truth.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Enforce stack padding conventions for Miden Assembly (.masm) procedures based on invocation type (call vs exec). Use when editing, reviewing, or creating .masm procedures, especially those with Invocation annotations. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when changing a numeric or string constant in Rust or MASM that has a counterpart on the other side — keep the two definitions from drifting apart.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when defining a public `enum` or `struct` in a library crate that may gain variants or fields later — keep future additions from being breaking changes.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 품질 보증 분석가·테스터
설명

Use when writing two or more tests that differ only by inputs or expected outputs — collapse the duplication into parameterized cases.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when defining a new error variant or wrapping a lower-level error — keep the underlying error's source chain intact.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when adding a public struct or changing a field's visibility in a Rust library crate — keep fields encapsulated so the layout can evolve without breaking callers.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing a public Rust API, a deserialization path, or any code reachable from untrusted input — surface recoverable failures as a `Result`.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing MASM `u32*` instructions on values from user input or untrusted sources — ensure the operands are valid u32s first.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when introducing a Rust type whose constructor takes more than ~3 optional or named parameters — give it a generated builder instead of hand-written boilerplate.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when a Rust or MASM test needs to construct an account, note, transaction, or other domain object — build it with the existing test fixtures.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when writing or reviewing a Rust constructor, `try_new`, or builder `build` — centralize validation so every instance is valid by construction.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Use when adding or modifying a dependency in a crate's `Cargo.toml` that is or may become shared by multiple workspace crates — keep its version defined in one place.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

通过 vite-plugin-pilot 在浏览器中测试页面。当需要查看页面状态、与页面元素交互、验证前端功能时使用。前置条件:vite-plugin-pilot 已安装且 dev server 已启动。 Use when this capability is needed.

원문 언어: 중국어

업데이트
직업 분류
소프트웨어 개발자
설명

React Native development. Cross-platform code, native modules, performance. Use when building mobile apps. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

| Use when this capability is needed.

원문 언어: 중국어

업데이트
직업 분류
소프트웨어 개발자
설명

Repository-specific Nx monorepo structure, library placement rules, scoped path aliases, and migration guardrails for portal/workspace/app code. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Repository-specific guidance for Electron non-EPG SQLite worker boundaries, request-scoped DB progress events, and validation for slow DB operations. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

Theme architecture, design tokens, shared SCSS library, portal header/sidebar patterns, Electron drag regions, and cross-portal style consistency. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
웹·디지털 인터페이스 디자이너
설명

Repository-specific UI design guidance for IPTVnator channel rows, EPG views, settings surfaces, shared selection styles, and light/dark theme consistency. Use when this capability is needed.

원문 언어: 영어

업데이트
직업 분류
소프트웨어 개발자
설명

IPTVnator's Electron-first Xtream implementation, including feature/data-access boundaries, worker-backed DB flows, and Xtream loading/progress UX. Use when this capability is needed.

원문 언어: 영어

업데이트
수집된 skill 18,034개 중 40개를 표시합니다.