Skip to main content

trezor/trezor-suite

SkillsMP 已收集 trezor/trezor-suite 中的 29 个 Skill。打开任一 Skill 可查看来源和详情。

最近记录的来源活动
SkillsMP 收录数据更新
已收集 skills
29
GitHub 星标
1,032
GitHub Forks
376

已展示 29 / 29 个已收集 Skill。

职业分类
未分类
描述

Type safety practices including exhaustive checks, explicit return types, Result-based error handling, and non-mutating array methods. Use when writing TypeScript logic that handles multiple cases or error conditions, or when sorting, reversing, splicing, or…

原文语言:英语

更新
职业分类
未分类
描述

Collection-handling performance for Trezor Suite — indexing before iteration, O(1) sort comparators, and reduce accumulators that don't allocate. Use when writing a loop, sort or reduce over accounts, tokens, transactions or UTXOs.

原文语言:英语

更新
职业分类
未分类
描述

Browser rendering performance for Trezor Suite — forced synchronous layout from geometry reads, observer APIs instead of measuring an element, and transitioning only compositor properties. Use when measuring, scrolling or animating a DOM element, or when…

原文语言:英语

更新
职业分类
未分类
描述

React render performance for Trezor Suite — memoization under React Compiler, referentially stable hook dependencies, minimal dependency arrays, and telling a wasted memo from a render loop. Use when adding useMemo, useCallback or memo, when writing a…

原文语言:英语

更新
职业分类
未分类
描述

Deferring non-essential work with requestIdleCallback. Use when a startup path blocks interaction, or when scheduling analytics, prefetch or other background work.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Dependency management, package creation, and troubleshooting commands for the Trezor Suite monorepo. Use when managing dependencies or debugging build issues.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Redux Toolkit patterns including slices, selectors, thunks, and middleware conventions for Trezor Suite. Use when writing or reviewing Redux state management code.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Comment conventions for Trezor Suite — prefer self-documenting code, and how to write and format a comment when one is actually needed. Use when writing or reviewing code comments.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

TDD practices and test utilities for suite-common packages, including Red-Green-Refactor workflow and @suite-common/test-utils usage. Use when writing tests for suite-common packages.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Test style guidelines including naming conventions, mock organization, translation handling, and file structure. Use when writing or organizing tests in the Trezor Suite codebase.

原文语言:英语

更新
职业分类
软件开发工程师
描述

publishConfig rules for public npm packages in the Trezor Suite monorepo. Use when adding or editing publishConfig, exports, or preparing a package for npm publishing.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Dependency Injection pattern for service definitions, factories, and composition roots. Use when working with packages that use the DI pattern.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Known issues and their solutions in the Trezor Suite monorepo. Use when encountering build failures, test failures, or environment problems.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Commands for running apps, linting, testing, and building in the Trezor Suite monorepo. Use when you need to run, build, or check code quality.

原文语言:英语

更新
职业分类
网页开发工程师
描述

React component file structure and patterns for Trezor Suite. Use when creating or reviewing React components, including prop passing and component organization.

原文语言:英语

更新
职业分类
软件开发工程师
描述

How to create and structure packages in the Trezor Suite monorepo, including scopes and sizing guidance. Use when creating new packages or resolving cyclic dependencies.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Use when writing component or hook tests in suite-native and need to choose between renderWithBasicProvider, renderWithStoreProvider, or store helpers like createStoreFromPreloadedState, createLightStore, or mergePreloadedState.

原文语言:英语

更新
职业分类
信息安全分析师
描述

Generated code must be aligned with security headers (e.g. no unsave JS eval). The permissions policy is especially relevant when changing any code related with the `navigator` object.

原文语言:英语

更新
职业分类
其他计算机职业
描述

Trigger on any mention of Trezor wallet interaction, crypto addresses, sending crypto, checking balances, signing messages, or hardware wallet operations via MCP. Also trigger when users mention configuring or troubleshooting the Trezor MCP server connection.

原文语言:英语

更新
职业分类
数据库架构师
描述

How to create and implement IndexedDB storage migrations in the Trezor Suite web app. Use when writing migrations that transform persisted data between Suite versions.

原文语言:英语

更新
职业分类
软件开发工程师
描述

If-else formatting, spacing, function parameters, and conditional rendering rules for the Trezor Suite codebase. Use when writing or reviewing TypeScript/React code.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Conventional Commits format, commit types, scopes, and PR best practices for Trezor Suite. Use when committing code or creating pull requests.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Named export conventions and barrel file usage rules for the Trezor Suite codebase. Use when writing imports, exports, or deciding on module structure.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Naming conventions for variables, functions, booleans, components, and domain-specific terms in Trezor Suite. Use when naming anything in the codebase.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Overview of the Trezor Suite monorepo structure and key directories. Use when navigating the codebase or deciding where to place new code.

原文语言:英语

更新
职业分类
软件开发工程师
描述

Prerequisites and initial environment setup for the Trezor Suite monorepo, including Node.js, Yarn, Git LFS, and submodules. Use when setting up or troubleshooting the development environment.

原文语言:英语

更新
职业分类
软件开发工程师
描述

How to contribute to the Trezor Suite code style guide, including issue proposals and pull request workflows. Use when proposing code style changes.

原文语言:英语

更新
职业分类
软件质量保证分析师与测试员
描述

Commands for running unit tests in the Trezor Suite monorepo. Use when you need to run tests for specific packages or the entire project.

原文语言:英语

更新
职业分类
软件开发工程师
描述

TypeScript-specific conventions including ts-expect-error usage, unknown vs any, const assertions, and type vs interface preferences. Use when writing TypeScript code.

原文语言:英语

更新
已展示 29 / 29 个已收集 Skill。