Claude-skill-registry 1k-architecture
OneKey monorepo architecture and code organization. Use when understanding project structure, package relationships, import rules, or component organization. Triggers on architecture, structure, packages, imports, hierarchy, dependencies, monorepo, organization.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/1k-architecture" ~/.claude/skills/majiayu000-claude-skill-registry-1k-architecture && rm -rf "$T"
manifest:
skills/data/1k-architecture/SKILL.mdsource content
OneKey Architecture Overview
Platform Structure
- Electron desktop app (Windows, macOS, Linux)apps/desktop/
- React Native mobile app (iOS, Android)apps/mobile/
- Browser extension (Chrome, Firefox, Edge, Brave)apps/ext/
- Progressive web applicationapps/web/
- Embeddable wallet componentsapps/web-embed/
Core Packages
- Blockchain protocol implementations, cryptography, hardware wallet communicationpackages/core/
- Application logic, state management, API integrationspackages/kit/
- Background services and workerspackages/kit-bg/
- Tamagui-based cross-platform UI componentspackages/components/
- Platform abstractions, utilities, build configurationspackages/shared/
- Air-gapped wallet QR communicationpackages/qr-wallet-sdk/
Key Architectural Patterns
- Multi-chain support: 40+ blockchains with pluggable chain implementations
- Cross-platform UI: Tamagui for universal components with platform-specific adaptations
- Platform-specific files: Use
,.native.ts
,.desktop.ts
,.web.ts
suffixes.ext.ts - Hardware wallet integration: Custom
SDK packages@onekeyfe/hd-* - State management: Jotai for atomic state management
Code Organization
File Naming Conventions
- Platform-specific implementations use suffixes:
,.native.ts
,.web.ts
,.desktop.ts.ext.ts - Component files use PascalCase:
ComponentName.tsx - Hook files use camelCase with
prefix:useuseHookName.ts - Utility files use camelCase:
utilityName.ts
Import Patterns
- Use workspace references:
,@onekeyhq/components
,@onekeyhq/core@onekeyhq/kit - Platform detection via
@onekeyhq/shared/src/platformEnv - Conditional imports based on platform capabilities
Import Hierarchy Rules - STRICTLY ENFORCED
CRITICAL: Violating these rules WILL break the build and cause circular dependencies.
HIERARCHY (NEVER violate this order):
- FORBIDDEN to import from any other OneKey packages@onekeyhq/shared
- ONLY allowed to import from@onekeyhq/componentsshared
- ONLY allowed to import from@onekeyhq/kit-bg
andshared
(NEVERcore
orcomponents
)kit
- Can import from@onekeyhq/kit
,shared
, andcomponentskit-bg- Apps (desktop/mobile/ext/web) - Can import from all packages
BEFORE ADDING ANY IMPORT:
- Verify the import respects the hierarchy above
- Check if the import creates a circular dependency
- If unsure, find an alternative approach that respects the hierarchy
COMMON VIOLATIONS TO AVOID:
- ❌ Importing from
in@onekeyhq/kit@onekeyhq/components - ❌ Importing from
in@onekeyhq/components@onekeyhq/kit-bg - ❌ Importing from
in@onekeyhq/kit@onekeyhq/core - ❌ Any "upward" imports in the hierarchy
Component Structure
- UI components in
packages/components/src/ - Business logic in
packages/kit/src/ - Chain-specific code in
packages/core/src/chains/
Deep Analysis & Architecture Consistency Framework
Pre-Modification Analysis Protocol
MANDATORY ANALYSIS STEPS (Execute BEFORE any code changes):
-
Scope Impact Assessment
- Identify ALL packages/apps affected by the change
- Map dependencies that will be impacted (use
if needed)yarn why <package> - Evaluate cross-platform implications (desktop/mobile/web/extension)
- Assess backward compatibility requirements
-
Pattern Consistency Verification
- Examine existing similar implementations in the codebase
- Identify established patterns and conventions used
- Verify new code follows identical patterns
- Check naming conventions align with existing code
-
Architecture Integrity Check
- Validate against monorepo import hierarchy rules
- Ensure separation of concerns is maintained
- Verify platform-specific code uses correct file extensions
- Check that business logic stays in appropriate packages
-
Performance Impact Evaluation
- Consider bundle size implications (especially for web/extension)
- Evaluate runtime performance effects
- Assess memory usage implications
- Consider impact on application startup time
Code Pattern Recognition Framework
WHEN ADDING NEW FUNCTIONALITY:
- Find Similar Examples: Search codebase for similar implementations
- Extract Patterns: Identify common approaches, naming, structure
- Follow Conventions: Mirror existing patterns exactly
- Validate Consistency: Ensure new code looks like existing code
WHEN MODIFYING EXISTING CODE:
- Understand Context: Read surrounding code and imports
- Preserve Patterns: Maintain existing architectural decisions
- Consistent Style: Match existing code style and structure
- Validate Integration: Ensure changes integrate seamlessly
Architecture Validation Checklist
BEFORE COMMITTING ANY CHANGES:
- Import hierarchy rules respected (no upward imports)
- Platform-specific files use correct extensions
- Security patterns maintained (especially for crypto operations)
- Error handling follows established patterns
- State management patterns consistently applied
- UI component patterns followed (Tamagui usage)
- Translation patterns properly implemented
- Testing patterns maintained and extended