Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计通过

slack-block-kitSlack block KIT 前端

Agent Skill

用于处理 Slack 工作区里的频道、消息、线程、用户和通知信息。它适合让 Agent 查询团队沟通记录、整理上下文、回复线程或辅助协作提醒。使用时需要确认机器人或用户 token 是否具备目标频道访问权,私有频道和历史消息通常有额外权限限制;发送消息、@成员或批量读取对话时,应避免泄露内部讨论和敏感工作信息。

总安装

1,022

周安装

43

GitHub Stars

4

下载量

358
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:slack-block-kit(Slack block KIT 前端)
来源仓库:https://github.com/linehaul-ai/linehaulai-claude-marketplace
仓库路径:skills/slack-block-kit
安装命令:
npx skills add https://github.com/linehaul-ai/linehaulai-claude-marketplace --skill slack-block-kit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/linehaul-ai/linehaulai-claude-marketplace --skill slack-block-kit

简介

提供 Slack Block Kit 前端组件支持,简化富文本消息构建。

  • 适用于创建交互式按钮、表单或结构化内容展示的应用场景。
  • 通过 GitHub 安装,集成到 Codex、Claude 等开发环境。
  • 需确保输出格式符合 Slack API 规范,避免渲染异常。
  • 建议参考官方文档调试布局与交互行为的一致性。

SKILL.md

Slack Block Kit

Expert guide for building Slack UIs with Block Kit.

Overview

Block Kit is Slack's UI framework for creating rich, interactive messages, modals, and Home tabs. It uses a JSON-based structure with three main components:

  • Blocks: Layout containers (Section, Actions, Input, Header, etc.)
  • Elements: Interactive components (Buttons, Selects, Date pickers)
  • Composition Objects: Text, options, and confirmations

Surfaces

Block Kit works on three surfaces:

SurfaceMax BlocksUse Cases
Messages50Notifications, bot responses, channel posts
Modals100Forms, confirmations, multi-step workflows
Home tabs100App dashboards, user-specific content

Quick Start

Simple Message

{
  "blocks": [
    {
      "type": "header",
      "text": {
        "type": "plain_text",
        "text": "New Order Received"
      }
    },
    {
      "type": "section",
      "fields": [
        {
          "type": "mrkdwn",
          "text": "*Order ID:*\n#12345"
        },
        {
          "type": "mrkdwn",
          "text": "*Customer:*\nJohn Doe"
        }
      ]
    },
    {
      "type": "actions",
      "elements": [
        {
          "type": "button",
          "text": {
            "type": "plain_text",
            "text": "View Order"
          },
          "style": "primary",
          "action_id": "view_order",
          "value": "12345"
        }
      ]
    }
  ]
}

Using slack-block-builder (JavaScript)

import { Message, Blocks, Elements } from 'slack-block-builder';

const orderNotification = ({ orderId, customer, channel }) => {
  return Message({ channel, text: 'New Order Received' })
    .blocks(
      Blocks.Header({ text: 'New Order Received' }),
      Blocks.Section()
        .fields([
          `*Order ID:*\n#${orderId}`,
          `*Customer:*\n${customer}`
        ]),
      Blocks.Actions()
        .elements(
          Elements.Button({ text: 'View Order', actionId: 'view_order' })
            .primary()
            .value(orderId)
        )
    )
    .buildToObject();
};

Blocks Reference

Header Block

Displays large text for titles.

{
  "type": "header",
  "text": {
    "type": "plain_text",
    "text": "Budget Performance",
    "emoji": true
  }
}

Fields:

  • type (required): Always "header"
  • text (required): plain_text object, max 150 chars
  • block_id (optional): Unique identifier, max 255 chars

Surfaces: Messages, Modals, Home tabs

Section Block

Most versatile block for text and accessories.

{
  "type": "section",
  "text": {
    "type": "mrkdwn",
    "text": "*Project Update*\nThe deployment is complete."
  },
  "accessory": {
    "type": "button",
    "text": {
      "type": "plain_text",
      "text": "View Details"
    },
    "action_id": "view_details"
  }
}

With Fields (two-column layout):

{
  "type": "section",
  "fields": [
    {
      "type": "mrkdwn",
      "text": "*Status:*\nApproved"
    },
    {
      "type": "mrkdwn",
      "text": "*Created:*\nDec 15, 2025"
    },
    {
      "type": "mrkdwn",
      "text": "*Priority:*\nHigh"
    },
    {
      "type": "mrkdwn",
      "text": "*Assignee:*\n<@U123ABC>"
    }
  ]
}

Fields:

  • type (required): Always "section"
  • text (optional): Text object (mrkdwn or plain_text), max 3000 chars
  • fields (optional): Array of text objects (max 10), each max 2000 chars
  • accessory (optional): One interactive element
  • block_id (optional): Unique identifier
  • expand (optional): Boolean, expand text by default

Surfaces: Messages, Modals, Home tabs

Actions Block

Contains multiple interactive elements.

{
  "type": "actions",
  "block_id": "approval_actions",
  "elements": [
    {
      "type": "button",
      "text": {
        "type": "plain_text",
        "text": "Approve"
      },
      "style": "primary",
      "action_id": "approve_request",
      "value": "approved"
    },
    {
      "type": "button",
      "text": {
        "type": "plain_text",
        "text": "Reject"
      },
      "style": "danger",
      "action_id": "reject_request",
      "value": "rejected"
    }
  ]
}

Fields:

  • type (required): Always "actions"
  • elements (required): Array of interactive elements (max 25)
  • block_id (optional): Unique identifier

Surfaces: Messages, Modals, Home tabs

Input Block

Collects user input (modals and Home tabs primarily).

{
  "type": "input",
  "block_id": "description_input",
  "label": {
    "type": "plain_text",
    "text": "Description"
  },
  "element": {
    "type": "plain_text_input",
    "action_id": "description_value",
    "multiline": true,
    "placeholder": {
      "type": "plain_text",
      "text": "Enter a description..."
    }
  },
  "optional": true,
  "hint": {
    "type": "plain_text",
    "text": "Provide additional context"
  }
}

Fields:

  • type (required): Always "input"
  • element (required): Input element (text input, select, date picker, etc.)
  • label (required): plain_text object, max 2000 chars
  • block_id (optional): Unique identifier
  • hint (optional): plain_text object, max 2000 chars
  • optional (optional): Boolean, default false
  • dispatch_action (optional): Boolean, dispatch block_actions on change

Surfaces: Modals, Messages, Home tabs

Context Block

Displays secondary, contextual information.

{
  "type": "context",
  "elements": [
    {
      "type": "image",
      "image_url": "https://example.com/avatar.png",
      "alt_text": "User avatar"
    },
    {
      "type": "mrkdwn",
      "text": "Posted by <@U123ABC> on Dec 15, 2025"
    }
  ]
}

Fields:

  • type (required): Always "context"
  • elements (required): Array of image/text elements (max 10)
  • block_id (optional): Unique identifier

Surfaces: Messages, Modals, Home tabs

Divider Block

Visual separator between blocks.

{
  "type": "divider"
}

Surfaces: Messages, Modals, Home tabs

Image Block

Displays an image.

{
  "type": "image",
  "image_url": "https://example.com/chart.png",
  "alt_text": "Sales chart",
  "title": {
    "type": "plain_text",
    "text": "Q4 Sales Performance"
  }
}

Fields:

  • type (required): Always "image"
  • image_url (required*): Public URL, max 3000 chars
  • slack_file (required*): Alternative to image_url
  • alt_text (required): Description, max 2000 chars
  • title (optional): plain_text object, max 2000 chars
  • block_id (optional): Unique identifier

*One of image_url or slack_file is required

Surfaces: Messages, Modals, Home tabs

Markdown Block

Displays formatted markdown (messages only).

{
  "type": "markdown",
  "text": "**Important:** This is *formatted* text with `code`."
}

Surfaces: Messages only

Rich Text Block

Structured text representation.

{
  "type": "rich_text",
  "elements": [
    {
      "type": "rich_text_section",
      "elements": [
        {
          "type": "text",
          "text": "Hello ",
          "style": {
            "bold": true
          }
        },
        {
          "type": "user",
          "user_id": "U123ABC"
        }
      ]
    }
  ]
}

Surfaces: Messages, Modals, Home tabs

Video Block

Embeds a video player.

{
  "type": "video",
  "title": {
    "type": "plain_text",
    "text": "Product Demo"
  },
  "video_url": "https://example.com/video.mp4",
  "thumbnail_url": "https://example.com/thumb.png",
  "alt_text": "Product demonstration video"
}

Surfaces: Messages, Modals, Home tabs

Elements Reference

Button Element

Interactive button for actions.

{
  "type": "button",
  "text": {
    "type": "plain_text",
    "text": "Click Me",
    "emoji": true
  },
  "action_id": "button_click",
  "value": "button_value",
  "style": "primary"
}

Fields:

  • type (required): Always "button"
  • text (required): plain_text object, max 75 chars
  • action_id (optional): Identifier for interaction, max 255 chars
  • value (optional): Payload value, max 2000 chars
  • style (optional): "primary" (green) or "danger" (red)
  • url (optional): URL to open, max 3000 chars
  • confirm (optional): Confirmation dialog
  • accessibility_label (optional): Screen reader text, max 75 chars

Works with: Section (accessory), Actions

Static Select Menu

Dropdown with predefined options.

{
  "type": "static_select",
  "action_id": "priority_select",
  "placeholder": {
    "type": "plain_text",
    "text": "Select priority"
  },
  "options": [
    {
      "text": {
        "type": "plain_text",
        "text": "High"
      },
      "value": "high"
    },
    {
      "text": {
        "type": "plain_text",
        "text": "Medium"
      },
      "value": "medium"
    },
    {
      "text": {
        "type": "plain_text",
        "text": "Low"
      },
      "value": "low"
    }
  ],
  "initial_option": {
    "text": {
      "type": "plain_text",
      "text": "Medium"
    },
    "value": "medium"
  }
}

Fields:

  • type (required): "static_select"
  • action_id (optional): Interaction identifier
  • options (required*): Array of option objects (max 100)
  • option_groups (required*): Grouped options (max 100 groups)
  • initial_option (optional): Pre-selected option
  • placeholder (optional): Placeholder text, max 150 chars
  • confirm (optional): Confirmation dialog
  • focus_on_load (optional): Auto-focus in modals

*One of options or option_groups required

External Select Menu

Dropdown with dynamically loaded options.

{
  "type": "external_select",
  "action_id": "customer_select",
  "placeholder": {
    "type": "plain_text",
    "text": "Search customers..."
  },
  "min_query_length": 2
}

Fields:

  • type (required): "external_select"
  • action_id (optional): Interaction identifier
  • min_query_length (optional): Min chars before query (default 3)
  • initial_option (optional): Pre-selected option
  • placeholder (optional): Placeholder text

Users Select Menu

Select workspace users.

{
  "type": "users_select",
  "action_id": "assignee_select",
  "placeholder": {
    "type": "plain_text",
    "text": "Select assignee"
  },
  "initial_user": "U123ABC"
}

Channels Select Menu

Select public channels.

{
  "type": "channels_select",
  "action_id": "channel_select",
  "placeholder": {
    "type": "plain_text",
    "text": "Select channel"
  },
  "initial_channel": "C123ABC"
}

Conversations Select Menu

Select any conversation (channels, DMs, groups).

{
  "type": "conversations_select",
  "action_id": "conversation_select",
  "placeholder": {
    "type": "plain_text",
    "text": "Select conversation"
  },
  "default_to_current_conversation": true
}

Multi-Select Menus

All select menus have multi-select variants:

  • multi_static_select
  • multi_external_select
  • multi_users_select
  • multi_channels_select
  • multi_conversations_select
{
  "type": "multi_users_select",
  "action_id": "team_select",
  "placeholder": {
    "type": "plain_text",
    "text": "Select team members"
  },
  "max_selected_items": 5
}

Date Picker

Select a date.

{
  "type": "datepicker",
  "action_id": "due_date",
  "placeholder": {
    "type": "plain_text",
    "text": "Select due date"
  },
  "initial_date": "2025-12-31"
}

Time Picker

Select a time.

{
  "type": "timepicker",
  "action_id": "meeting_time",
  "placeholder": {
    "type": "plain_text",
    "text": "Select time"
  },
  "initial_time": "14:30"
}

Datetime Picker

Select date and time together.

{
  "type": "datetimepicker",
  "action_id": "event_datetime",
  "initial_date_time": 1734307200
}

Checkboxes

Multiple selection from options.

{
  "type": "checkboxes",
  "action_id": "features_select",
  "options": [
    {
      "text": {
        "type": "plain_text",
        "text": "Email notifications"
      },
      "value": "email",
      "description": {
        "type": "mrkdwn",
        "text": "*Receive daily summary*"
      }
    },
    {
      "text": {
        "type": "plain_text",
        "text": "Slack notifications"
      },
      "value": "slack"
    }
  ],
  "initial_options": [
    {
      "text": {
        "type": "plain_text",
        "text": "Email notifications"
      },
      "value": "email"
    }
  ]
}

Radio Buttons

Single selection from options.

{
  "type": "radio_buttons",
  "action_id": "urgency_select",
  "options": [
    {
      "text": {
        "type": "plain_text",
        "text": "Urgent"
      },
      "value": "urgent"
    },
    {
      "text": {
        "type": "plain_text",
        "text": "Standard"
      },
      "value": "standard"
    }
  ],
  "initial_option": {
    "text": {
      "type": "plain_text",
      "text": "Standard"
    },
    "value": "standard"
  }
}

Plain Text Input

Single or multi-line text input.

{
  "type": "plain_text_input",
  "action_id": "comment_input",
  "placeholder": {
    "type": "plain_text",
    "text": "Enter your comment..."
  },
  "multiline": true,
  "min_length": 10,
  "max_length": 500
}

Number Input

Numeric input with validation.

{
  "type": "number_input",
  "action_id": "quantity_input",
  "is_decimal_allowed": false,
  "min_value": "1",
  "max_value": "100",
  "placeholder": {
    "type": "plain_text",
    "text": "Enter quantity"
  }
}

URL Input

URL input with validation.

{
  "type": "url_text_input",
  "action_id": "website_input",
  "placeholder": {
    "type": "plain_text",
    "text": "https://example.com"
  }
}

Email Input

Email input with validation.

{
  "type": "email_text_input",
  "action_id": "email_input",
  "placeholder": {
    "type": "plain_text",
    "text": "you@example.com"
  }
}

Rich Text Input

Formatted text input.

{
  "type": "rich_text_input",
  "action_id": "content_input",
  "placeholder": {
    "type": "plain_text",
    "text": "Write your content..."
  }
}

File Input

File upload (modals only).

{
  "type": "file_input",
  "action_id": "attachment_input",
  "filetypes": ["pdf", "png", "jpg"],
  "max_files": 3
}

Overflow Menu

Compact menu for secondary actions.

{
  "type": "overflow",
  "action_id": "more_actions",
  "options": [
    {
      "text": {
        "type": "plain_text",
        "text": "Edit"
      },
      "value": "edit"
    },
    {
      "text": {
        "type": "plain_text",
        "text": "Delete"
      },
      "value": "delete"
    }
  ]
}

Composition Objects

Text Object

Used throughout Block Kit for text content.

Plain Text:

{
  "type": "plain_text",
  "text": "Hello, world!",
  "emoji": true
}

Markdown (mrkdwn):

{
  "type": "mrkdwn",
  "text": "*Bold* _italic_ ~strike~ `code` <https://example.com|link>"
}

Confirmation Dialog

Confirmation before destructive actions.

{
  "title": {
    "type": "plain_text",
    "text": "Confirm Delete"
  },
  "text": {
    "type": "mrkdwn",
    "text": "Are you sure you want to delete this item? This cannot be undone."
  },
  "confirm": {
    "type": "plain_text",
    "text": "Delete"
  },
  "deny": {
    "type": "plain_text",
    "text": "Cancel"
  },
  "style": "danger"
}

Option Object

For select menus, checkboxes, and radio buttons.

{
  "text": {
    "type": "plain_text",
    "text": "Option Label"
  },
  "value": "option_value",
  "description": {
    "type": "plain_text",
    "text": "Optional description"
  },
  "url": "https://example.com"
}

Option Group

Grouped options for select menus.

{
  "label": {
    "type": "plain_text",
    "text": "Group Label"
  },
  "options": [
    {
      "text": {
        "type": "plain_text",
        "text": "Option 1"
      },
      "value": "option_1"
    }
  ]
}

Modal Reference

Opening a Modal

{
  "type": "modal",
  "callback_id": "feedback_modal",
  "title": {
    "type": "plain_text",
    "text": "Submit Feedback"
  },
  "submit": {
    "type": "plain_text",
    "text": "Submit"
  },
  "close": {
    "type": "plain_text",
    "text": "Cancel"
  },
  "blocks": [
    {
      "type": "input",
      "block_id": "feedback_type",
      "label": {
        "type": "plain_text",
        "text": "Feedback Type"
      },
      "element": {
        "type": "static_select",
        "action_id": "type_select",
        "options": [
          {
            "text": {
              "type": "plain_text",
              "text": "Bug Report"
            },
            "value": "bug"
          },
          {
            "text": {
              "type": "plain_text",
              "text": "Feature Request"
            },
            "value": "feature"
          }
        ]
      }
    },
    {
      "type": "input",
      "block_id": "feedback_content",
      "label": {
        "type": "plain_text",
        "text": "Description"
      },
      "element": {
        "type": "plain_text_input",
        "action_id": "content_input",
        "multiline": true
      }
    }
  ]
}

Modal Fields

  • type (required): Always "modal"
  • title (required): plain_text, max 24 chars
  • blocks (required): Array of blocks (max 100)
  • callback_id (optional): Identifier for view_submission
  • submit (optional): Submit button text, max 24 chars
  • close (optional): Close button text, max 24 chars
  • private_metadata (optional): String passed to submission, max 3000 chars
  • clear_on_close (optional): Clear all views on close
  • notify_on_close (optional): Send view_closed event
  • external_id (optional): Custom identifier
  • submit_disabled (optional): Disable submit button initially

slack-block-builder Library

Installation

npm install slack-block-builder

Imports

import {
  Message,
  Modal,
  HomeTab,
  Blocks,
  Elements,
  Bits,
  Md
} from 'slack-block-builder';

Building Messages

const message = Message({ channel: 'C123ABC', text: 'Fallback text' })
  .blocks(
    Blocks.Header({ text: 'Welcome!' }),
    Blocks.Section({ text: 'Hello, *world*!' }),
    Blocks.Divider(),
    Blocks.Actions()
      .elements(
        Elements.Button({ text: 'Click Me', actionId: 'click' })
          .primary()
      )
  )
  .buildToObject();

Building Modals

const modal = Modal({ title: 'My Form', callbackId: 'form_submit' })
  .submit('Save')
  .close('Cancel')
  .blocks(
    Blocks.Input({ label: 'Name', blockId: 'name_block' })
      .element(
        Elements.TextInput({ actionId: 'name_input' })
          .placeholder('Enter your name')
      ),
    Blocks.Input({ label: 'Priority', blockId: 'priority_block' })
      .element(
        Elements.StaticSelect({ actionId: 'priority_select' })
          .options(
            Bits.Option({ text: 'High', value: 'high' }),
            Bits.Option({ text: 'Medium', value: 'medium' }),
            Bits.Option({ text: 'Low', value: 'low' })
          )
      )
  )
  .buildToObject();

Markdown Helpers

import { Md } from 'slack-block-builder';

Md.bold('text')           // *text*
Md.italic('text')         // _text_
Md.strike('text')         // ~text~
Md.code('text')           // `text`
Md.codeBlock('text')      // ```text```
Md.link('url', 'text')    // <url|text>
Md.user('U123')           // <@U123>
Md.channel('C123')        // <#C123>
Md.emoji('smile')         // :smile:
Md.listBullet(['a', 'b']) // • a\n• b

Build Methods

// Returns JavaScript object
modal.buildToObject();

// Returns JSON string
modal.buildToJSON();

// Returns only blocks array
modal.getBlocks();

Best Practices

Naming Conventions

  • action_id: {verb}_{noun} - e.g., submit_form, select_priority
  • block_id: {noun}_block - e.g., name_block, options_block
  • callback_id: {feature}_{action} - e.g., feedback_submit

Performance

  • Keep messages under 50 blocks
  • Keep modals under 100 blocks
  • Use external_select for large option lists (>100 items)
  • Minimize image usage in high-traffic messages

Accessibility

  • Always provide alt_text for images
  • Use accessibility_label for buttons with icons
  • Ensure sufficient color contrast
  • Provide clear, descriptive labels

Mobile Considerations

  • Use shorter text (truncation occurs ~30 chars for buttons)
  • Limit fields in Section blocks (2-3 max)
  • Test in mobile Slack client
  • Avoid complex nested layouts

Common Patterns

Notification with Actions

Message({ channel, text: 'New request' })
  .blocks(
    Blocks.Header({ text: 'New Request' }),
    Blocks.Section()
      .fields([
        `*From:*\n${requester}`,
        `*Priority:*\n${priority}`
      ]),
    Blocks.Context()
      .elements([`Submitted ${timestamp}`]),
    Blocks.Divider(),
    Blocks.Actions()
      .elements(
        Elements.Button({ text: 'Approve', actionId: 'approve' }).primary(),
        Elements.Button({ text: 'Reject', actionId: 'reject' }).danger()
      )
  )
  .buildToObject();

Form Modal with Validation

Modal({ title: 'Create Task', callbackId: 'task_create' })
  .submit('Create')
  .close('Cancel')
  .blocks(
    Blocks.Input({ label: 'Task Name', blockId: 'name' })
      .element(Elements.TextInput({ actionId: 'name_input' })),
    Blocks.Input({ label: 'Assignee', blockId: 'assignee' })
      .element(Elements.UsersSelect({ actionId: 'assignee_select' })),
    Blocks.Input({ label: 'Due Date', blockId: 'due_date' })
      .element(Elements.DatePicker({ actionId: 'date_select' }))
      .optional(true)
  )
  .buildToObject();

Home Tab Dashboard

HomeTab()
  .blocks(
    Blocks.Header({ text: `Welcome, ${userName}!` }),
    Blocks.Section({ text: 'Here are your pending tasks:' }),
    Blocks.Divider(),
    ...tasks.map(task =>
      Blocks.Section({ text: `• ${task.title}` })
        .accessory(
          Elements.Button({ text: 'Complete', actionId: `complete_${task.id}` })
        )
    ),
    Blocks.Divider(),
    Blocks.Actions()
      .elements(
        Elements.Button({ text: 'New Task', actionId: 'new_task' }).primary()
      )
  )
  .buildToObject();

Troubleshooting

Common Errors

ErrorCauseSolution
invalid_blocksMalformed JSONValidate in Block Kit Builder
too_many_blocksExceeds limitReduce to 50 (msg) or 100 (modal)
invalid_elementWrong element in blockCheck element compatibility
missing_textRequired text missingAdd text or fields to Section

Validation Tips

  1. Use Block Kit Builder to test JSON
  2. Check element compatibility with blocks
  3. Verify required fields are present
  4. Test on mobile for display issues

Resources

Reference Documentation

For comprehensive guides, see the references/ directory:

External Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

26.55%
按下载量换算95

Gemini CLI

23.01%
按下载量换算82

Antigravity

17.49%
按下载量换算63

windsurf

12.1%
按下载量换算43

Codex

7.02%
按下载量换算25

OpenCode

3.22%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills