Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

yuque-group-tech-design语雀集团科技设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

288

周安装

12

GitHub Stars

71

下载量

96
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:yuque-group-tech-design(语雀集团科技设计)
来源仓库:https://github.com/yuque/yuque-plugin
仓库路径:skills/yuque-group-tech-design
安装命令:
npx skills add https://github.com/yuque/yuque-plugin --skill yuque-group-tech-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yuque/yuque-plugin --skill yuque-group-tech-design

简介

yuque-group-tech-design 辅助界面设计、视觉规范和交互体验优化。

  • 可生成 UI 方案、检查一致性并改进组件层级结构。
  • 需结合品牌系统和用户任务,避免堆砌装饰元素。
  • 涉及页面改动时应通过截图或预览检查文本溢出和对齐问题。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Tech Design — Technical Design Document Generator (Team)

Help the user write a structured technical design document following a standard template, then save it to the team's Yuque knowledge base for group review.

When to Use

  • User wants to write a technical design document or RFC and save it to the group repo
  • User says "帮我写技术方案到团队库", "write a tech design for the team", "团队技术方案"
  • User describes a feature/system and needs it formalized into a design doc for group review

Required MCP Tools

All tools are from the yuque-mcp server:

  • yuque_search — (Optional) Search for related existing docs for context
  • yuque_list_repos — Find the target group knowledge base
  • yuque_create_doc — Create the design document

Reference

The full template is in references/template.md. Load it when generating the document.

Workflow

Step 1: Understand the Requirements

Gather from the user:

FieldRequiredDescription
项目/功能名称YesWhat is being designed
背景与问题YesWhy this is needed, what problem it solves
目标YesWhat success looks like
约束条件NoTechnical constraints, timeline, budget
已有方案NoAny existing approaches or prior art
团队标识 (Group login)YesThe team's Yuque group login

If the user provides a brief description, ask clarifying questions:

  • "这个功能要解决什么问题?"
  • "有什么技术约束吗?比如必须用某个框架、要兼容现有系统?"
  • "预期的时间节点是什么?"

If the user hasn't specified a group login, ask: "请告诉我团队的语雀团队标识(group login),我来把技术方案存到团队知识库。"

Step 2: (Optional) Search for Context

If relevant, search Yuque for related existing documents:

Tool: yuque_search
Parameters:
  query: "<related keywords>"
  type: "doc"

This helps:

  • Avoid duplicating existing designs
  • Reference prior decisions
  • Understand the current architecture

Step 3: Generate the Design Document

Load the template from references/template.md and fill in each section based on the user's input and your technical analysis.

Key sections to fill:

  1. 背景 (Background) — Problem statement, current situation
  2. 目标 (Goals) — What this design achieves, non-goals
  3. 方案设计 (Design) — The core technical approach

- Architecture diagram description (describe in text/ASCII if needed) - Core components and their responsibilities - Data model / API design - Key flows (sequence of operations)

  1. 技术选型 (Tech Stack) — Why specific technologies were chosen
  2. 方案对比 (Alternatives) — Other approaches considered and why they were rejected
  3. 排期 (Timeline) — Milestones and estimated effort
  4. 风险评估 (Risks) — What could go wrong and mitigation strategies
  5. 参考资料 (References) — Related docs, links, prior art

Step 4: Review with User

Present the draft to the user before saving. Ask:

  • "方案内容是否准确?有需要调整的地方吗?"
  • "要补充其他技术细节吗?"

Step 5: Save to Team Yuque

Tool: yuque_list_repos
Parameters:
  login: "<group_login>"
  type: "group"

Find or ask for the target group repo (often "技术方案" or "设计文档" or "RFC").

Tool: yuque_create_doc
Parameters:
  repo_id: "<namespace>"    # e.g., "my-team/tech-docs"
  title: "[技术方案] <项目名称>"
  body: "<formatted design document>"
  format: "markdown"

Step 6: Confirm

✅ 技术方案已创建(草稿状态)!

📄 **[[技术方案] 项目名称](文档链接)**
📚 已保存到:「团队知识库名称」

### 文档结构
- 背景与目标
- 方案设计(含 X 个核心模块)
- 技术选型对比
- 排期(预计 X 周)
- 风险评估(X 个风险点)

💡 文档为草稿状态,请团队评审后发布。

Guidelines

  • Write the design doc in Chinese (default) unless the user specifies English
  • Be specific in the design section — include data models, API signatures, flow descriptions
  • For tech stack comparison, use a table with pros/cons
  • Keep the document actionable — someone should be able to implement from this doc
  • If the user's requirements are vague, make reasonable assumptions and note them clearly with "【假设】" markers
  • Don't over-engineer — match the design complexity to the project scope
  • Always end the confirmation with "请团队评审后发布" — group designs need review
  • This skill saves to group repos — for personal repos, use the tech-design skill in the yuque-personal plugin

Error Handling

SituationAction
User provides very vague requirementsAsk 2-3 targeted questions before generating
yuque_search finds conflicting existing designsMention them and ask user how to reconcile
yuque_create_doc failsShow error, offer to output the markdown for manual copy
User wants to update an existing design docUse yuque_search to find it, then suggest creating a v2 or appendix
Group login not providedAsk user for the team's group login
Team Token not configuredInform user that group repos require a team-level Token

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

展示第三方安全扫描或审计结果

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

平台分布

Codex

36.72%
按下载量换算35

Claude

29.09%
按下载量换算28

Cursor

16.79%
按下载量换算16

Gemini CLI

9.67%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills