Token导航 LogoToken导航TokenDH.com
待分类操作浏览器github未标认证来源可访问许可证需确认审计通过

steedos-tabs斯蒂多斯选项卡

Agent Skill

steedos-tabs 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

329

周安装

14

GitHub Stars

1,632

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:steedos-tabs(斯蒂多斯选项卡)
来源仓库:https://github.com/steedos/steedos-platform
仓库路径:skills/steedos-tabs
安装命令:
npx skills add https://github.com/steedos/steedos-platform --skill steedos-tabs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/steedos/steedos-platform --skill steedos-tabs

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • steedos-tabs 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Steedos Tabs | Steedos 标签页

Overview | 概述

Tabs define the navigation items that appear in an application's sidebar. Each tab is a .tab.yml file that points to an object, a micro page, or a URL. Tabs are referenced by name in the application's tabs array.

标签页定义了应用程序侧边栏中的导航项。每个标签页是一个 .tab.yml 文件,指向一个对象、微页面或 URL。标签页通过名称在应用程序的 tabs 数组中引用。

File Format | 文件格式

  • File Extension: .tab.yml
  • Location: main/default/tabs/
  • Format: YAML
  • Naming: [tab_name].tab.yml

Tab Types | 标签页类型

1. Object Tab | 对象标签页

Displays an object's list view. Most common tab type.

显示对象的列表视图。最常用的标签页类型。

name: object_contract
desktop: true
icon: collection
label: 合同
mobile: true
object: contract
permissions: []
type: object

2. Page Tab | 微页面标签页

Renders an Amis micro page (type: page in .page.yml). Used for custom UIs, landing pages, and standalone app pages. NOT for dashboards — use analytics_dashboard for that.

渲染 Amis 微页面(.page.ymltype: page)。用于自定义界面、落地页和独立应用页面。不用于仪表盘 — 仪表盘请使用 analytics_dashboard

name: page_app_launcher
desktop: true
icon: agent_home
is_new_window: false
is_use_iframe: false
label: 应用
mobile: true
page: app_launcher
permissions: []
type: page

3. Analytics Dashboard Tab | 仪表盘标签页

Links to an analytics dashboard (仪表盘). This is the correct type for dashboards — NOT type: page.

指向一个分析仪表盘。这是仪表盘的正确类型,不要用 type: page

name: dashboard_sales
desktop: true
icon: dashboard
is_new_window: false
is_use_iframe: false
label: 销售仪表盘
mobile: false
analytics_dashboard: sales_dashboard
permissions: []
type: analytics_dashboard

4. URL Tab | URL 标签页

Opens an internal or external URL. Can use iframe or new window.

打开内部或外部 URL。可使用 iframe 或新窗口。

name: admin_swagger
desktop: true
icon: data_model
is_new_window: true
is_use_iframe: true
label: OpenAPI
mobile: true
permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'off'
    permission_set: user
type: url
url: /api/v6/

Field Reference | 字段参考

Required Fields | 必需字段

name (String) — ⚠️ Required, MUST NOT be omitted

Unique identifier for the tab. This is the name referenced in the application's tabs array.

标签页的唯一标识符。这是在应用程序 tabs 数组中引用的名称。不能省略。

name: object_contract

type (String)

⚠️ MUST be one of: object, page, url, analytics_dashboard. No other values are valid. 严禁使用其他值。

ValueUse Case
objectObject list view
pageAmis micro page (standalone custom UI, NOT dashboards)
analytics_dashboardAnalytics dashboard / 仪表盘
urlInternal or external URL
type: object
type: page
type: analytics_dashboard
type: url

label (String)

Display name shown in the sidebar navigation.

侧边栏导航中显示的名称。

label: 合同管理

Type-Specific Fields | 类型特定字段

object (String) — for type: object

The object API name to display.

type: object
object: contracts

page (String) — for type: page

The micro page name to render. This must be an Amis micro page (type: page in .page.yml). Do NOT use this for dashboards — use type: analytics_dashboard instead.

微页面的名称。必须是 Amis 微页面(.page.ymltype: page)。不要用于仪表盘 — 仪表盘请使用 type: analytics_dashboard

type: page
page: app_launcher

analytics_dashboard (String) — for type: analytics_dashboard

The analytics dashboard name to display. Use this for all dashboards (仪表盘).

要显示的分析仪表盘名称。所有仪表盘都使用此类型。

type: analytics_dashboard
analytics_dashboard: sales_dashboard

url (String) — for type: url

The URL to open. Supports template variables.

要打开的 URL。支持模板变量。

type: url
url: /app/admin/space_users/view/${context.user.spaceUserId}

URL Template Variables | URL 模板变量:

VariableDescription
${context.user.spaceUserId}Current user's space_users ID

Optional Fields | 可选字段

desktop (Boolean)

Whether the tab is visible on desktop. Default: true.

desktop: true

mobile (Boolean)

Whether the tab is visible on mobile. Default: true.

mobile: true

icon (String)

⚠️ MUST be a valid SLDS icon name from the objects skill Valid Icon Values list. Do NOT invent icon names. If no icon matches, use custom or record.

⚠️ 必须为对象 skill 有效图标列表中的有效 SLDS 图标名称,严禁编造。如无匹配,使用 customrecord

Salesforce Lightning Design System icon name.

icon: contract
icon: agent_home
icon: data_model

is_new_window (Boolean)

Whether to open in a new browser window/tab. Default: false.

是否在新浏览器窗口/标签页中打开。默认:false

is_new_window: true

is_use_iframe (Boolean)

Whether to render the content in an iframe within the app. Default: false. Typically used with URL tabs.

是否在应用内使用 iframe 渲染内容。默认:false。通常与 URL 标签页配合使用。

is_use_iframe: true

locked (Boolean)

Whether the tab configuration is locked from editing in the UI.

locked: false

license (Array)

License tiers required to access this tab.

访问此标签页所需的许可证级别。

license:
  - platform-professional
  - platform-enterprise

Permissions | 权限

Control tab visibility per permission set. Each entry has permission (⚠️ MUST be 'on' or 'off', no other values) and permission_set.

按权限集控制标签页可见性。每个条目有 permission⚠️ 必须为 'on''off')和 permission_set

permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'on'
    permission_set: user
  - permission: 'off'
    permission_set: customer
  - permission: 'off'
    permission_set: supplier
  - permission: 'off'
    permission_set: organization_admin
  - permission: 'off'
    permission_set: workflow_admin

An empty permissions: [] means the tab is visible to all users.

空的 permissions: [] 表示标签页对所有用户可见。

Complete Examples | 完整示例

Object Tab — Business Object | 对象标签页 — 业务对象

name: object_pepsico_material
desktop: true
icon: contact_list
label: 材料素材
mobile: true
object: pepsico_material
permissions: []
type: object

Object Tab — Admin Only | 对象标签页 — 仅管理员

name: admin_apps
desktop: true
icon: apps
is_new_window: false
label: 应用程序
mobile: true
permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'off'
    permission_set: user
  - permission: 'off'
    permission_set: customer
  - permission: 'off'
    permission_set: supplier
  - permission: 'off'
    permission_set: organization_admin
  - permission: 'off'
    permission_set: workflow_admin
type: object
object: apps

Page Tab — Custom UI | 微页面标签页 — 自定义界面

name: page_app_store
desktop: true
icon: product_consumed
is_new_window: false
is_use_iframe: false
label: App Store
mobile: true
permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'off'
    permission_set: user
type: page
page: app_store

Analytics Dashboard Tab | 仪表盘标签页

name: dashboard_sales
desktop: true
icon: dashboard
is_new_window: false
is_use_iframe: false
label: 销售仪表盘
mobile: false
permissions: []
type: analytics_dashboard
analytics_dashboard: sales_dashboard

URL Tab — External Tool | URL 标签页 — 外部工具

name: nodered
desktop: true
icon: incident
is_new_window: true
is_use_iframe: false
label: Node-RED
locked: false
mobile: true
permissions:
  - permission: 'off'
    permission_set: user
type: url
url: /flows

URL Tab — Embedded Dashboard | URL 标签页 — 嵌入仪表板

name: material_kanban
desktop: true
icon: app
is_new_window: false
is_use_iframe: true
label: 看板
locked: false
mobile: false
permissions: []
type: url
url: /analytics/embed/dashboard/6788be6a41162b06257df7a9#titled=false&bordered=false

URL Tab — Dynamic URL with Context | URL 标签页 — 带上下文的动态 URL

name: admin_personal_information
desktop: true
icon: user_role
is_new_window: false
label: 个人资料
mobile: true
permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'on'
    permission_set: user
type: url
url: /app/admin/space_users/view/${context.user.spaceUserId}

Tab with License Restriction | 带许可证限制的标签页

name: admin_ai_chatbots
desktop: true
icon: live_chat
is_new_window: false
label: Chatbots
mobile: true
permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'off'
    permission_set: user
type: object
object: ai_chatbots
license:
  - platform-professional
  - platform-enterprise

Relationship with Applications | 与应用程序的关系

Tabs are referenced in .app.yml files via the tabs array. The tab name is used as the reference key.

标签页通过 tabs 数组在 .app.yml 文件中引用。标签页的 name 作为引用键。

# In application .app.yml
tabs:
  - page_app_launcher
  - core_announcements
  - core_tasks

tab_items:
  page_app_launcher:
    group: ''
    index: 1
  core_announcements:
    group: 协作
    index: 2
  core_tasks:
    group: 协作
    index: 3

tab_groups:
  - group_name: 协作
    default_open: true

When an application's tabs array includes a name that matches no .tab.yml file, the system treats it as an implicit object tab (directly using the name as the object API name).

当应用程序的 tabs 数组包含的名称没有匹配的 .tab.yml 文件时,系统将其视为隐式对象标签页(直接将名称作为对象 API 名称)。

File Location | 文件位置

steedos-packages/
└── my-package/
    └── main/
        └── default/
            ├── tabs/
            │   ├── object_contract.tab.yml
            │   ├── page_dashboard.tab.yml
            │   └── admin_settings.tab.yml
            └── applications/
                └── my_app.app.yml

Naming Conventions | 命名约定

PatternUse CaseExample
object_{name}Object tabs for business objectsobject_contract
admin_{name}Admin-only tabsadmin_apps
page_{name}Micro page tabs (Amis custom UI)page_app_launcher
dashboard_{name}Analytics dashboard tabsdashboard_sales
core_{name}Core platform tabscore_tasks

Best Practices | 最佳实践

1. Permission Configuration

Always explicitly set permissions for admin-only tabs:

始终为仅管理员标签页明确设置权限:

permissions:
  - permission: 'on'
    permission_set: admin
  - permission: 'off'
    permission_set: user

For tabs visible to all users, use empty permissions:

对所有用户可见的标签页,使用空权限:

permissions: []

2. iframe vs New Window

  • Use is_use_iframe: true for embedded dashboards and tools that should stay within the app
  • Use is_new_window: true for external tools like Node-RED that need their own window
  • Don't combine both — choose one approach
  • 使用 is_use_iframe: true 嵌入仪表板和需要留在应用内的工具
  • 使用 is_new_window: true 用于像 Node-RED 这样需要独立窗口的外部工具
  • 不要同时使用两者 — 选择一种方式

3. Mobile Visibility

Set mobile: false for tabs that don't work well on mobile (e.g., complex dashboards, iframe embeds):

对不适合移动端的标签页设置 mobile: false(如复杂仪表板、iframe 嵌入):

desktop: true
mobile: false

Troubleshooting | 故障排除

Issue: Tab not appearing in sidebar

Solutions:

  1. Verify the tab name is listed in the application's tabs array
  2. Check permissions — user must have permission: 'on' for their permission_set
  3. Ensure desktop: true (or mobile: true for mobile)
  4. Check license restrictions if present

Issue: URL tab showing blank

Solutions:

  1. For iframe embeds, ensure is_use_iframe: true
  2. Check the target URL allows iframe embedding (X-Frame-Options)
  3. Verify the URL path is correct and accessible

Issue: Page tab not rendering

Solutions:

  1. Verify the page value matches an existing micro page name
  2. Ensure the micro page .page.yml and .page.amis.json files exist
  3. Check page permissions

References | 参考资料

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.91%
按下载量换算39

Claude

30.39%
按下载量换算35

Cursor

18.16%
按下载量换算21

Gemini CLI

9.81%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills