Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

syncfusion-aspnetcore-chat-ui同步融合 aspnetcore 聊天 ui

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:syncfusion-aspnetcore-chat-ui(同步融合 aspnetcore 聊天 ui)
来源仓库:https://github.com/syncfusion/aspnetcore-ui-components-skills
仓库路径:skills/syncfusion-aspnetcore-chat-ui
安装命令:
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-chat-ui
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/syncfusion/aspnetcore-ui-components-skills --skill syncfusion-aspnetcore-chat-ui

简介

用于辅助界面设计和视觉规范优化。syncfusion-aspnetcore-chat-ui 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

  • 适合整理页面结构、生成 UI 方案或检查一致性。
  • 通过 GitHub 仓库安装,需结合现有品牌和用户任务使用。
  • 涉及真实页面改动时应通过截图检查文本溢出和对齐。
  • 不应只堆装饰元素,需关注响应式表现。

SKILL.md

Syncfusion ASP.NET Core Chat-UI Control

Overview

The Chat-UI component provides a complete conversational interface with real-time messaging, file attachments, user presence, and extensive customization options. This skill guides you through implementing chat interfaces for customer support, team collaboration, and interactive applications using ASP.NET Core tag helpers and Razor pages.

The Chat-UI component is an interactive messaging interface featuring:

  • Rich Message Support: Text content, pinned messages, threaded replies, message forwarding
  • User Management: Multi-user conversations, presence status, user configuration
  • File Attachments: Upload, preview, download with file type/size restrictions
  • Event System: Created, message send, user typing, attachment events
  • Templates: Customizable UI for empty chat, messages, typing indicator, suggestions, footer
  • Appearance: Configurable placeholder, width, height, CSS classes
  • Timestamps: Show/hide timestamps with customizable format
  • Advanced Features: Compact mode, globalization, RTL support, speech-to-text

Quick Start Example

@using Syncfusion.EJ2.InteractiveChat;

<div style="height:400px; width:450px">
    <ejs-chatui id="chatUI">
        <e-chatui-user id="user1" user="Albert"></e-chatui-user>
        <e-chatui-messages>
            @foreach (var message in ViewBag.ChatMessagesData)
            {
                <e-chatui-message text="@message.Text" author="@message.Author"></e-chatui-message>
            }
        </e-chatui-messages>
    </ejs-chatui>
</div>

Corresponding C# Controller:

using Syncfusion.EJ2.InteractiveChat;

public ActionResult Default()
{
    var currentUser = new ChatUIUser() { Id = "user1", User = "Albert" };
    var otherUser = new ChatUIUser() { Id = "user2", User = "Michale Suyama" };

    var messages = new List<ChatUIMessage>()
    {
        new ChatUIMessage() { Text = "Hi Michale, are we on track?", Author = currentUser },
        new ChatUIMessage() { Text = "Yes, all set!", Author = otherUser }
    };

    ViewBag.ChatMessagesData = messages;
    return View();
}

Documentation Navigation

Getting Started

📄 Read: references/getting-started.md

  • NuGet package installation and dependencies
  • ASP.NET Core project setup with Razor pages
  • Tag helper registration and configuration
  • CDN stylesheet and script setup
  • Script manager registration
  • Basic Chat-UI implementation
  • Initial user and message configuration

Message Configuration

📄 Read: references/messages-configuration.md

  • Message model setup and properties
  • Adding and managing text messages
  • Message configuration (ID, text, author, timestamp)
  • Pinned messages for important conversations
  • Reply-to for threaded conversations
  • Forwarded messages and message tracking
  • Compact mode for streamlined layouts

User Configuration

📄 Read: references/user-configuration.md

  • ChatUIUser model setup and properties
  • User identity configuration
  • Setting current user context
  • Multi-user support and management
  • User presence and status indicators
  • Avatar configuration and styling

Appearance & Styling

📄 Read: references/appearance-styling.md

  • Placeholder text customization
  • Width and height configuration
  • CSS class application and customization
  • Component-level styling
  • Theme customization approaches
  • Responsive design patterns

Events & Interactions

📄 Read: references/events-interactions.md

  • Created event for initialization
  • Message send event handling
  • User typing event detection
  • Attachment upload events (before, success, failure)
  • Attachment removal and click events
  • Event binding patterns and best practices

Methods & API

📄 Read: references/methods-api.md

  • addMessage method for programmatic message addition
  • updateMessage method for editing existing messages
  • scrollToBottom method for view navigation
  • Real-time integration with SignalR
  • Best practices for performance and error handling

Templates & Customization

📄 Read: references/templates-customization.md

  • Empty chat template for initial states
  • Message custom templates with jsrender
  • Time break template for message organization
  • Typing indicator template customization
  • Suggestion template for auto-complete
  • Footer template for custom input areas
  • Advanced template patterns and styling

File Attachments

📄 Read: references/file-attachments.md

  • Enable attachment support with enableAttachments
  • Configure attachment settings
  • Save and remove URL endpoints
  • File type restrictions (allowedFileTypes)
  • File size limits (maxFileSize)
  • Save format options (Blob vs Base64)
  • Drag-and-drop support configuration
  • Server path and upload handling

Header & Footer

📄 Read: references/header-footer.md

  • Show/hide header with showHeader property
  • Header text configuration and display
  • Header icon styling with headerIconCss
  • Show/hide footer with showFooter property
  • Footer template customization
  • Input area configuration

Timestamps & Time Breaks

📄 Read: references/timestamps-timebreaks.md

  • Show/hide timestamps with showTimeStamp
  • Timestamp format customization (timeStampFormat)
  • Time break separators for message organization
  • Date-wise message grouping
  • Timestamp template patterns

Typing Indicators

📄 Read: references/typing-indicator.md

  • Show/hide typing indicator
  • Multi-user typing display
  • Typing indicator template customization
  • User presence detection
  • Styling typing indicator UI

Mentions & User References

📄 Read: references/mentions-integration.md

  • Configure mentionable users
  • Mention trigger character customization
  • Predefined mentions in messages
  • Mention selection and events
  • Mention item template and styling

Globalization & RTL

📄 Read: references/globalization-rtl.md

  • Localization and multi-language support
  • Setting culture and locale
  • RTL (Right-to-Left) layout support
  • Language-specific templates
  • Speech-to-text localization

Toolbar Configuration

📄 Read: references/toolbar-configuration.md

  • Header toolbar configuration and items
  • Message toolbar settings and customization
  • Toolbar item configuration and events
  • Custom toolbar actions and handlers
  • Toolbar visibility and styling

Advanced Features

📄 Read: references/advanced-features.md

  • Load on demand with scroll handling
  • Auto-scroll to bottom behavior
  • Enable persistence for state management
  • Performance optimization techniques
  • Server-side data loading strategies

Suggestions Feature

📄 Read: references/suggestions-feature.md

  • Enable suggestions with suggestions property
  • Suggestion template customization
  • Context-based suggestion filtering
  • Suggestion selection and handling
  • Custom suggestion UI and styling

Common Patterns

Create a Basic Chat Interface

<div style="height:400px; width:500px">
    <ejs-chatui id="chatUI"
                 placeholder="Type a message..."
                 showHeader="true"
                 headerText="Support Chat">
        <e-chatui-user id="user1" user="Support Agent"></e-chatui-user>
    </ejs-chatui>
</div>

Add Messages with Events

<ejs-chatui id="chatUI" messageSend="onMessageSend">
    <e-chatui-user id="user1" user="Albert"></e-chatui-user>
    <e-chatui-messages>
        @foreach (var message in ViewBag.ChatMessagesData)
        {
            <e-chatui-message text="@message.Text"
                            author="@message.Author"
                            timeStamp="@message.TimeStamp"></e-chatui-message>
        }
    </e-chatui-messages>
</ejs-chatui>

<script>
    function onMessageSend(args) {
        // Handle message send event
        console.log("Message sent:", args);
    }
</script>

Enable File Attachments

<ejs-chatui id="chatUI" enableAttachments="true">
    <e-chatui-user id="user1" user="Albert"></e-chatui-user>
    <e-chatui-attachmentsettings
        saveUrl=@Url.Content("https://services.syncfusion.com/aspnet/production/api/FileUploader/Save")
        removeUrl=@Url.Content("https://services.syncfusion.com/aspnet/production/api/FileUploader/Remove")
        maxFileSize="5000000"
        allowedFileTypes=".pdf,.docx,.xlsx">
    </e-chatui-attachmentsettings>
</ejs-chatui>

Key Properties

PropertyTypePurpose
idstringUnique identifier for the ChatUI component
placeholderstringInput field hint text (default: "Type your message…")
widthstringChat UI width (default: 100%)
heightstringChat UI height (default: 100%)
showHeaderbooleanDisplay header section (default: true)
headerTextstringHeader title/name display
headerToolbarobjectConfigure toolbar items in header
showFooterbooleanDisplay input footer (default: true)
showTimeStampbooleanDisplay message timestamps (default: true)
timeStampFormatstringTimestamp format pattern (default: "dd/MM/yyyy hh:mm a")
cssClassstringCSS classes for styling
enableAttachmentsbooleanEnable file upload support (default: false)
enableCompactModebooleanAlign all messages left (default: false)
loadOnDemandbooleanEnable lazy loading of messages (default: false)
autoScrollToBottombooleanAutomatically scroll to latest message (default: true)
enablePersistencebooleanPersist chat state across sessions (default: false)
suggestionsarrayQuick reply suggestions for users
messageToolbarSettingsobjectConfigure message-level toolbar actions

Common Use Cases

Use Case 1: Customer Support Chat

  • Multiple support agents handling customer queries
  • File attachment for screenshots/documents
  • Message history with timestamps
  • Typing indicators to show agent engagement
  • Header with support agent name and status

Use Case 2: Team Collaboration

  • Mention team members with @ mentions
  • Pin important discussion points
  • Forward messages for reference
  • Message editing and deletion
  • Multi-user presence indicators

Use Case 3: Multilingual Support

  • RTL support for Arabic/Hebrew languages
  • Localized UI strings via globalization
  • Culture-specific timestamp formats
  • Support for multiple character sets

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.6%
按下载量换算27

Claude

29.39%
按下载量换算21

Cursor

18.31%
按下载量换算13

Gemini CLI

10.27%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills