Back to list
OneKeyHQ

1k-dev-commands

by OneKeyHQ

Secure, open source and community driven crypto wallet runs on all platforms and trusted by millions.

2,181🍴 470📅 Jan 23, 2026

Use Cases

📜

Smart Contract Development

Streamline smart contract creation and deployment.

👛

Wallet Integration

Implement integration with crypto wallets.

🔎

Transaction Analysis

Analyze and track blockchain transactions.

SKILL.md


name: 1k-dev-commands description: Development commands for OneKey monorepo. Use when running dev servers, building apps, linting, testing, or troubleshooting build issues. Triggers on yarn, dev, build, lint, test, desktop, mobile, web, extension, ios, android, compile, bundle. allowed-tools: Bash, Read

OneKey Development Commands

Application Development Commands

PLATFORM-SPECIFIC DEVELOPMENT:

  • yarn app:desktop - Start desktop Electron app development

    • Runtime: 30-60 seconds to start
    • Common issues: Node version conflicts, missing native dependencies
    • Troubleshooting: Run yarn clean && yarn reinstall if startup fails
  • yarn app:web - Start web development server (port 3000)

    • Runtime: 15-30 seconds to start
    • Common issues: Port 3000 already in use, webpack compilation errors
    • Troubleshooting: Kill existing processes on port 3000, check console for specific errors
  • yarn app:ext - Start browser extension development

    • Runtime: 20-40 seconds to start
    • Common issues: Manifest v3 validation errors, permission issues
    • Troubleshooting: Check extension manifest validity, verify content security policy
  • yarn app:ios - Start iOS mobile development

    • Runtime: 1-2 minutes (includes Metro bundler)
    • Common issues: Xcode setup, simulator issues, pod install failures
    • Prerequisites: Xcode installed, iOS simulator available
  • yarn app:android - Start Android mobile development

    • Runtime: 1-2 minutes (includes Metro bundler)
    • Common issues: Android SDK path, emulator setup, gradle build failures
    • Prerequisites: Android Studio, SDK tools, emulator configured
  • yarn app:web-embed - Start embeddable components development

    • Runtime: 15-30 seconds
    • Usage: For developing standalone wallet components

Build Commands

PRODUCTION BUILDS (Use for final validation):

  • yarn app:desktop:build - Build desktop app for all platforms

    • Runtime: 5-10 minutes (multi-platform build)
    • Output: Platform-specific installers in apps/desktop/dist/
    • Common issues: Code signing, platform-specific dependencies
    • Verification: Test installers on target platforms
  • yarn app:ext:build - Build browser extension

    • Runtime: 2-3 minutes
    • Output: Extension packages in apps/ext/dist/
    • Common issues: Manifest validation, content security policy violations
    • Verification: Load extension in browser for testing
  • yarn app:web:build - Build web application

    • Runtime: 3-5 minutes
    • Output: Static files in apps/web/dist/
    • Common issues: Bundle size limits, missing environment variables
    • Verification: Serve built files and test functionality
  • yarn app:native-bundle - Bundle React Native app

    • Runtime: 3-5 minutes
    • Output: Platform-specific bundles
    • Common issues: Native module linking, Metro bundler errors
    • Prerequisites: Platform development environment properly configured

Development Tools & Quality Assurance

CRITICAL QUALITY COMMANDS (YOU MUST run these after any code changes):

  • yarn lint - MANDATORY comprehensive linting (TypeScript, ESLint, folder structure, i18n)
    • Expected runtime: 5-10 minutes (NEVER skip due to timeout)
    • Zero tolerance: ALL warnings and errors MUST be fixed
    • When it fails: Check specific error categories and fix systematically
  • yarn test - MANDATORY Jest test execution
    • Expected runtime: 2-5 minutes depending on test scope
    • Failure handling: Investigate failed tests, do not ignore or skip

DEVELOPMENT QUALITY WORKFLOW:

  1. Make code changes
  2. Run yarn tsc:only immediately to catch type errors
  3. Run yarn lint to ensure code quality (accept full timeout)
  4. Run yarn test to verify functionality
  5. Only proceed if ALL commands pass without errors or warnings

OTHER TOOLS:

  • yarn lint:only - ESLint only (use for quick syntax checks)
  • yarn clean - Clean all build artifacts and node_modules
  • yarn reinstall - Full clean install (use when dependency issues occur)

Testing

  • Jest configuration in jest.config.js
  • Test setup in jest-setup.js
  • Tests located in @tests/ directories within packages
  • Mobile tests use jest-expo preset

Score

Total Score

90/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 1000以上

+15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

0/5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon