leafygreen-authoring

bởi mongodb

Tự động kích hoạt khi viết hoặc chỉnh sửa các thành phần React (.tsx/.ts) trong dự án có chứa các gói @leafygreen-ui trong package.json. Cung cấp ánh xạ thành phần,…

npx skills add https://github.com/mongodb/leafygreen-ui --skill leafygreen-authoring

LeafyGreen Authoring Conventions

Apply these conventions whenever writing or editing React components in a project that uses @leafygreen-ui/* packages.

Always prefer LeafyGreen components over plain HTML

When a user asks to add any UI element — in plain language, from a Figma design, or anywhere else — always check if a LeafyGreen component exists for it first. Never use a plain HTML element (<button>, <input>, <select>, etc.) when an @leafygreen-ui equivalent is available.

Common mappings:

User asks for…Use
Button, CTA@leafygreen-ui/buttonButton
Text input, text field@leafygreen-ui/text-inputTextInput
Dropdown, select@leafygreen-ui/selectSelect, Option
Searchable dropdown@leafygreen-ui/comboboxCombobox
Search box@leafygreen-ui/search-inputSearchInput
Number field@leafygreen-ui/number-inputNumberInput
Checkbox@leafygreen-ui/checkboxCheckbox
Radio button@leafygreen-ui/radio-groupRadioGroup, Radio
Toggle, switch@leafygreen-ui/toggleToggle
Icon button@leafygreen-ui/icon-buttonIconButton
Icon@leafygreen-ui/iconIcon
Heading, body text, label@leafygreen-ui/typographyH1H3, Body, Label, Subtitle
Modal, dialog@leafygreen-ui/modalModal
Tooltip@leafygreen-ui/tooltipTooltip
Tabs@leafygreen-ui/tabsTabs, Tab
Table@leafygreen-ui/tableTable, Row, Cell
Badge, tag, chip@leafygreen-ui/badgeBadge
Banner, alert@leafygreen-ui/bannerBanner
Toast, notification@leafygreen-ui/toastToast
Menu, context menu@leafygreen-ui/menuMenu, MenuItem
Card@leafygreen-ui/cardCard
Code block@leafygreen-ui/codeCode
Logo / logomark@leafygreen-ui/logoMongoDBLogoMark, MongoDBLogo
Stepper, progress steps@leafygreen-ui/stepperStepper, Step
Pipeline@leafygreen-ui/pipelinePipeline, Stage

If a package is not yet installed, install it before writing the component code:

npm install @leafygreen-ui/[package-name]

Component imports

Always use named imports for LG components:

import { H1, Body, Subtitle } from '@leafygreen-ui/typography'
import { Button } from '@leafygreen-ui/button'
import Icon from '@leafygreen-ui/icon'           // default import
import { MongoDBLogoMark } from '@leafygreen-ui/logo'

Styling approach

Always use design tokens from @leafygreen-ui/tokens for colors — never hard-coded hex values. Tokens are the single source of truth for color in the design system and automatically resolve to the correct value for dark or light mode.

import { palette } from '@leafygreen-ui/tokens'

// Correct: use a token
color: palette.gray.dark2

// Avoid: hard-coded hex
color: '#3D4F58'

Figma MCP → auto-install missing packages

When implementing a design from the Figma MCP, the component descriptions include the LeafyGreen package name, e.g.:

⚛️ React name: @leafygreen-ui/text-input
⚛️ React name: @leafygreen-ui/select

Before writing any component code:

  1. Scan all ⚛️ React name: entries in the Figma design context
  2. Cross-check each @leafygreen-ui/* package against package.json
  3. Install any that are missing: npm install @leafygreen-ui/[package-name]
  4. Never substitute plain HTML for a LeafyGreen component that is called out in the design spec

File structure

  • New components go in src/components/[ComponentName].tsx
  • One component per file
  • Name files and components in PascalCase: ProjectCard.tsx, not project-card.tsx
  • Ask before creating new folders outside of src/components/

TypeScript

  • Always define prop types explicitly using TypeScript interfaces
  • Do not use any as a type

General

  • Keep components focused. If a component is doing more than one thing, split it.

Thêm skills từ mongodb

atlas-stream-processing
mongodb
Quản lý các quy trình làm việc của MongoDB Atlas Stream Processing (ASP). Xử lý việc cấp phát workspace, kết nối nguồn/đích dữ liệu, các thao tác vòng đời processor,…
official
mongodb-atlas-stream-processing
mongodb
Quản lý các quy trình làm việc của MongoDB Atlas Stream Processing (ASP). Xử lý việc cấp phát không gian làm việc, kết nối nguồn/đích dữ liệu, các thao tác vòng đời bộ xử lý,…
official
mongodb-connection
mongodb
Tối ưu hóa cấu hình kết nối client MongoDB (pools, timeouts, patterns) cho mọi ngôn ngữ driver được hỗ trợ. Sử dụng kỹ năng này khi làm việc/cập nhật/đánh giá…
official
mongodb-mcp-setup
mongodb
Hướng dẫn người dùng cấu hình các tùy chọn chính của máy chủ MongoDB MCP. Sử dụng kỹ năng này khi người dùng đã cài đặt máy chủ MongoDB MCP nhưng chưa cấu hình…
official
mongodb-natural-language-querying
mongodb
Generate read-only MongoDB queries (find) or aggregation pipelines using natural language, with collection schema context and sample documents. Use this skill…
official
mongodb-query-optimizer
mongodb
Trợ giúp tối ưu hóa truy vấn MongoDB và lập chỉ mục. Chỉ sử dụng khi người dùng yêu cầu tối ưu hóa hoặc hiệu suất: "Làm thế nào để tối ưu hóa truy vấn này?", "Làm thế nào để…
official
mongodb-schema-design
mongodb
Các mẫu thiết kế schema MongoDB và các phản mẫu. Sử dụng khi thiết kế mô hình dữ liệu, xem xét schema, di chuyển từ SQL hoặc khắc phục sự cố hiệu suất…
official
mongodb-search-and-ai
mongodb
Hướng dẫn người dùng MongoDB triển khai và tối ưu hóa các giải pháp Atlas Search (toàn văn), Vector Search (ngữ nghĩa) và Hybrid Search. Sử dụng kỹ năng này khi…
official