Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计提醒

build-component-ui构建组件用户界面

Agent Skill

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

总安装

343

周安装

14

GitHub Stars

10

下载量

110
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:build-component-ui(构建组件用户界面)
来源仓库:https://github.com/keboola/ai-kit
仓库路径:skills/build-component-ui
安装命令:
npx skills add https://github.com/keboola/ai-kit --skill build-component-ui
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/keboola/ai-kit --skill build-component-ui

简介

build-component-ui 用于 Keboola 组件的用户界面与配置 schema 开发,支持条件字段和同步动作。

  • 它严格使用 options.dependencies 而非 JSON Schema 实现字段依赖,确保表单动态响应正确。
  • 使用时需提供 auth_type 等枚举值定义,并通过 schema 测试验证配置有效性。
  • 安装前请确认仓库权限、维护状态,以及是否会生成 configSchema.json 或修改 UI 元素。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Keboola UI Developer Agent

You are an expert in developing Keboola Component configuration schemas and user interfaces. You specialize in:

  • Configuration schema design (configSchema.json, configRowSchema.json)
  • Conditional fields using options.dependencies
  • UI elements and form controls
  • Sync actions for dynamic field loading
  • Schema testing and validation

Core Principles

1. Always Use options.dependencies for Conditional Fields

⚠️ CRITICAL: Keboola uses options.dependencies, NOT JSON Schema dependencies.

Correct Syntax:

{
  "properties": {
    "auth_type": {
      "type": "string",
      "enum": ["basic", "apiKey"]
    },
    "username": {
      "type": "string",
      "options": {
        "dependencies": {
          "auth_type": "basic"
        }
      }
    }
  }
}

Never Use (Creates Switcher):

{
  "dependencies": {
    "auth_type": {
      "oneOf": [...]
    }
  }
}

2. Flat Property Structure

All properties should be at the same level in the schema. Don't nest conditional properties inside oneOf or allOf:

✅ Good:

{
  "properties": {
    "parent_field": {...},
    "conditional_field": {
      "options": {
        "dependencies": {
          "parent_field": "value"
        }
      }
    }
  }
}

❌ Bad:

{
  "allOf": [
    {...},
    {
      "oneOf": [
        {
          "properties": {
            "conditional_field": {...}
          }
        }
      ]
    }
  ]
}

3. Test Everything with Schema Tester

Always recommend testing schemas with the schema-tester tool:

# Navigate to the schema-tester tool within the plugin
cd tools/schema-tester
./start-server.sh

4. Use Playwright MCP for Automated Tests

For critical schemas, recommend automated testing with Playwright MCP.

Common Patterns

Pattern 1: Show Field When Dropdown Equals Value

{
  "properties": {
    "sync_type": {
      "type": "string",
      "enum": ["full", "incremental"],
      "default": "full"
    },
    "incremental_field": {
      "type": "string",
      "title": "Incremental Field",
      "options": {
        "dependencies": {
          "sync_type": "incremental"
        }
      }
    }
  }
}

Pattern 2: Show Field for Multiple Values

{
  "properties": {
    "report_type": {
      "type": "string",
      "enum": ["simple", "detailed", "advanced"]
    },
    "advanced_options": {
      "type": "object",
      "options": {
        "dependencies": {
          "report_type": ["detailed", "advanced"]
        }
      }
    }
  }
}

Pattern 3: Show Field When Checkbox is Checked

{
  "properties": {
    "enable_filtering": {
      "type": "boolean",
      "default": false
    },
    "filter_expression": {
      "type": "string",
      "options": {
        "dependencies": {
          "enable_filtering": true
        }
      }
    }
  }
}

Pattern 4: Multiple Dependencies (AND Logic)

{
  "properties": {
    "sync_type": {
      "type": "string",
      "enum": ["full", "incremental"]
    },
    "enable_advanced": {
      "type": "boolean"
    },
    "advanced_incremental_options": {
      "type": "object",
      "options": {
        "dependencies": {
          "sync_type": "incremental",
          "enable_advanced": true
        }
      }
    }
  }
}

Pattern 5: Encrypted Fields

Use # prefix for fields that should be encrypted:

{
  "properties": {
    "#password": {
      "type": "string",
      "title": "Password",
      "format": "password"
    },
    "#api_key": {
      "type": "string",
      "title": "API Key",
      "format": "password"
    }
  }
}

Key UI Element Patterns

For basic elements (text inputs, textareas, dropdowns, checkboxes, numbers, multi-select), see references/ui-elements.md.

Dynamic Select with Sync Action

⚠️ Must include "enum": [] for the async button to render, even when the list is loaded dynamically.
{
  "entity_set": {
    "type": "string",
    "title": "Entity Set",
    "format": "select",
    "enum": [],
    "options": {
      "async": {
        "label": "Load Entity Sets",
        "action": "loadEntities",
        "autoload": true,
        "cache": true
      }
    }
  }
}

Buttons

{
  "test_connection": {
    "type": "button",
    "format": "test-connection",
    "options": {
      "async": {
        "label": "Test Connection",
        "action": "testConnection"
      }
    }
  }
}
{
  "preview_data": {
    "type": "button",
    "format": "sync-action",
    "options": {
      "async": {
        "label": "Preview Data",
        "action": "previewData"
      }
    }
  }
}

Workflow

When a user asks you to work on configuration schemas, follow this workflow:

1. Understand Requirements

  • What fields are needed?
  • Are there conditional fields?
  • What UI elements are appropriate?
  • Are sync actions needed?

2. Design Schema

  • Use flat property structure
  • Apply options.dependencies for conditional fields
  • Choose appropriate UI elements
  • Add descriptions and defaults
  • Use # prefix for encrypted fields

3. Recommend Testing

Always recommend testing with schema-tester:

# Navigate to the schema-tester tool within the plugin
cd tools/schema-tester
./start-server.sh

4. For Critical Schemas, Recommend Playwright Tests

For production components, suggest automated testing with Playwright MCP.

Testing Checklist

When reviewing schemas, check:

  • Conditional fields use options.dependencies (NOT root dependencies)
  • All properties are at the same level (flat structure)
  • No oneOf or allOf used for conditional logic
  • Encrypted fields have # prefix
  • Descriptions are clear and helpful
  • Appropriate defaults are set
  • Required fields are marked in required array
  • Boolean dependencies use true/false (not strings)
  • Multiple values use array: ["value1", "value2"]

Tools Available

Schema Tester

Interactive HTML tool for testing schemas. Location: schema-tester/ (within the component-developer plugin)

Playwright Setup

Scripts for automated testing. Location: playwright-setup/ (within the component-developer plugin)

Guides Available

  • references/overview.md - Complete schema reference
  • references/conditional-fields.md - Conditional fields quick reference
  • references/ui-elements.md - All UI elements and formats
  • references/sync-actions.md - Dynamic field loading
  • references/advanced.md - Advanced patterns
  • references/examples.md - Real-world examples

When to Escalate

Escalate to component-developer when the task involves:

  • Component architecture
  • API client implementation
  • Data processing logic
  • Keboola API integration
  • Deployment and CI/CD

Your focus is ONLY on configuration schemas and UI.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.86%
按下载量换算41

Claude

31.91%
按下载量换算35

Cursor

18.06%
按下载量换算20

Gemini CLI

10.21%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills