ecosystem/semi-ui-skills/SKILL.md
使用 Semi Design 组件的完整指南,包括 MCP 工具使用流程、常见模式、最佳实践。当你需要查询 Semi Design 组件、生成组件代码或解决使用问题时,请使用此技能。
npx skillsauth add douyinfe/semi-design semi-design-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
此 Skill 帮助你高效使用 Semi Design 组件库完成常见开发任务。
本 Skill 由以下文件组成,每个文件专注于特定方面的指导:
内容:使用 Semi MCP 工具的完整工作流程。
包含:
get_semi_document、get_component_file_list、get_file_code、get_function_code 四个工具的功能和使用场景何时使用:当你需要查询组件文档、了解组件 API、实现某个具体功能但不确定如何下手时。
内容:使用 Semi Design 组件的最佳实践和注意事项。
包含:
何时使用:当你需要确保代码符合最佳实践、解决组件使用中的疑难问题时。
| 需求 | 查看 | |------|------| | 如何使用 MCP 工具查询组件 | WORKFLOWS.md | | 组件使用的最佳实践 | BEST_PRACTICES.md |
Semi Design 是字节跳动推出的企业级 UI 组件库。此 Skill 配合 Semi MCP 工具使用,提供:
使用此技能前,请确保已配置 Semi MCP:
{
"mcpServers": {
"semi-mcp": {
"command": "npx",
"args": ["-y", "@douyinfe/semi-mcp"]
}
}
}
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.