Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问clear审计未展示

fix-lint修复棉绒

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

306

周安装

13

GitHub Stars

2,413

下载量

107
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/onekeyhq/app-monorepo --skill fix-lint

简介

用于辅助前端页面、组件和交互逻辑的开发维护。

  • 适合生成或审查 React、Next.js、CSS 等相关代码。
  • 通过 npx skills add 命令从 onekeyhq/app-monorepo 仓库安装。
  • 需结合项目构建工具和路由配置使用。fix-lint 属于前端设计类 Skill,可作为该场景下的辅助能力补充。
  • 建议配合 lint 工具链验证代码规范。

SKILL.md

Fix Lint Skill

This skill helps fix oxlint warnings in the OneKey app-monorepo codebase.

IMPORTANT: This project uses oxlint (not ESLint). The active linting configuration is in .oxlintrc.json.

Usage

Use this skill when:

  • Running yarn lint and encountering warnings
  • Cleaning up code before committing
  • Fixing spellcheck, unused variable, or other ESLint warnings

Workflow

Step 1: Run Lint and Analyze Warnings

yarn lint:only 2>&1 | tail -100

Step 2: Categorize Warnings

Warnings typically fall into these categories:

CategoryRuleFix Strategy
Spellcheck@cspell/spellcheckerAdd to skip list or fix typo
Unused vars@typescript-eslint/no-unused-varsRemove import or prefix with _
Non-null assertion@typescript-eslint/no-non-null-assertionAdd type guard or cast
Nested componentsreact/no-unstable-nested-componentsExtract component
Import orderimport/orderFix import ordering

Step 3: Fix Each Category

Spellcheck Warnings (@cspell/spellchecker)

  1. Evaluate the word: Is it a legitimate technical term or a typo?
  2. For legitimate technical terms, add to skip list: # File: development/spellCheckerSkipWords.txt # Add the word on a new line at the end of the file newTechnicalTerm
  3. For known typos that can't be fixed (e.g., in translation keys), add with a comment above: # Known typo - exsited -> existed (ETranslations.some_key) exsited
  4. Common legitimate terms to add:

- Build tools: chunkhash, minimizer, rspack - Blockchain: lovelace, Kusama, workchain, feebump - UI: Virtualized, overscan, overscrolling - Crypto: nacl, Bech32, secp256k1

Unused Variable Warnings (@typescript-eslint/no-unused-vars)

  1. Unused imports - Remove the import: // Before import {Used, Unused} from 'package'; // After import {Used} from 'package';
  2. Unused function parameters - Prefix with underscore: // Before function foo(used: string, unused: number) {return used;} // After function foo(used: string, _unused: number) {return used;}
  3. Unused destructured variables - Prefix with underscore: // Before const {used, unused} = obj; // After const {used, unused: _unused} = obj;
  4. Unused assigned variables - Prefix with underscore: // Before const unused = getValue(); // After const _unused = getValue();

Non-null Assertion Warnings (@typescript-eslint/no-non-null-assertion)

Add type assertions or guards:

// Before
const value = obj.prop!.name;
// After
const value = (obj.prop as { name: string } | undefined)?.name;

Nested Component Warnings (react/no-unstable-nested-components)

Extract the component outside the parent:

// Before
function Parent() {
  const NestedComponent = () => <div />;
  return <NestedComponent />;
}

// After
const ExtractedComponent = () => <div />;
function Parent() {
  return <ExtractedComponent />;
}

Step 4: Verify Fixes

yarn lint:only 2>&1 | tail -50

Common Patterns in This Codebase

Translation Key Typos

Translation enum keys (e.g., ETranslations.perp_invaild_tp_sl) cannot be easily renamed as they're managed externally. Add to skip list with a comment:

# Known typo in translation key - invaild -> invalid
invaild

Provider API Methods

Methods like openInMobileApp that throw NotImplemented() often have unused parameters:

public async openInMobileApp(
  _request: IJsBridgeMessagePayload,
  _params: ISignMessagePayload,
): Promise<void> {
  throw new NotImplemented();
}

Destructuring from Hooks

When destructuring from hooks but not using all values:

const { used, unused: _unused } = usePromiseResult(...);

Tips

  1. Run lint with increased memory for large codebases: yarn lint:only
  2. Check if word is in skip list before adding: grep -i "wordToCheck" development/spellCheckerSkipWords.txt
  3. For bulk fixes, use Task agents to parallelize work across multiple files
  4. Verify no regressions after fixes: yarn tsc:only

Files Modified During Lint Fixes

  • development/spellCheckerSkipWords.txt - Add technical terms and known typos (one word per line, use # for comments)
  • Various .ts and .tsx files - Fix unused variables and imports

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

28.58%
按下载量换算31

Gemini CLI

22.7%
按下载量换算24

Antigravity

18.87%
按下载量换算20

OpenCode

13.18%
按下载量换算14

Codex

7.54%
按下载量换算8

github-copilot

3.68%
按下载量换算4

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills