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

add-announcement添加公告

Agent Skill

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

总安装

945

周安装

39

GitHub Stars

3,896

下载量

309
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/agenta-ai/agenta --skill add-announcement

简介

add-announcement 用于向 Agenta 应用侧边栏添加公告卡片,支持产品更新和功能通知展示。

  • 采用优先级队列和 localStorage 持久化用户关闭状态,确保用户体验一致性。
  • 可通过修改 changelog.json 文件或调用 API 动态添加简单变更日志类公告。
  • 安装命令为 npx skills add https://github.com/agenta-ai/agenta --skill add-announcement。
  • 使用前需了解 SidebarBanners 组件结构及 Jotai 状态管理机制,避免破坏 UI 逻辑。

SKILL.md

Add Announcement Card

This skill helps you add announcement cards to the Agenta sidebar banner system. Announcement cards appear at the bottom of the sidebar and can be dismissed by users.

System Overview

The sidebar banner system is located at web/oss/src/components/SidebarBanners/ and uses:

  • Priority-based queue: Only one banner shows at a time
  • Auto-progression: When dismissed, the next highest priority banner appears
  • Persistent dismissal: Uses localStorage to remember dismissed banners
  • Jotai atoms: For reactive state management

Two Types of Announcements

1. Simple Changelog Announcements (Most Common)

For standard product updates, features, and changes, simply add to changelog.json:

File: web/oss/src/components/SidebarBanners/data/changelog.json

Format:

{
    "id": "changelog-YYYY-MM-DD-feature-name",
    "title": "Feature Title (Short)",
    "description": "Brief description of the feature or change.",
    "link": "https://agenta.ai/docs/changelog/feature-name"
}

ID Convention: changelog- + date (YYYY-MM-DD) + feature slug

  • Example: changelog-2026-01-09-chat-sessions
  • Must be unique to prevent conflicts

Title Guidelines:

  • Keep under 40 characters
  • Clear and actionable
  • Focus on user benefit
  • Examples: "Chat Sessions in Observability", "PDF Support in Playground"

Description Guidelines:

  • One sentence, under 100 characters
  • Describe what users can do, not technical details
  • Examples: "Track multi-turn conversations with session grouping and cost analytics."

Link Convention:

  • Always points to https://agenta.ai/docs/changelog/[feature-slug]
  • You'll need to create the corresponding changelog documentation page

2. Custom Banners (Advanced)

For complex banners with custom UI, interactions, or logic (trial warnings, upgrade prompts, etc.), you need to:

  1. Add the banner type to types.ts
  2. Add priority to state/atoms.ts
  3. Create the banner in activeBannersAtom (OSS) or eeBannersAtom (EE)

When to use custom banners:

  • Non-dismissible banners (e.g., trial expiration)
  • Custom interactions (buttons with onClick handlers)
  • Dynamic content (depends on user state)
  • Conditional display (show only under certain conditions)

Step-by-Step: Adding a Simple Changelog Announcement

Step 1: Read the current changelog.json

# View current entries to understand the structure
cat web/oss/src/components/SidebarBanners/data/changelog.json

Step 2: Add your entry

Edit web/oss/src/components/SidebarBanners/data/changelog.json and add your new entry to the array:

[
    {
        "id": "changelog-2024-12-16-pdf-support",
        "title": "PDF Support in Playground",
        "description": "You can now upload and test PDFs directly in the playground.",
        "link": "https://agenta.ai/docs/changelog/pdf-support-in-playground"
    },
    {
        "id": "changelog-2026-01-09-your-feature",
        "title": "Your Feature Title",
        "description": "Brief description of what users can do.",
        "link": "https://agenta.ai/docs/changelog/your-feature-slug"
    }
]

Step 3: Verify the format

  • Ensure valid JSON (no trailing commas, proper quotes)
  • Check ID uniqueness
  • Verify link URL matches the documentation page you'll create

Step 4: Test locally

The banner will automatically appear in the sidebar on the next page load. To see it:

  1. Clear localStorage: localStorage.removeItem('agenta:dismissed-banners')
  2. Refresh the page
  3. Banner should appear at bottom of sidebar

Banner Priority System

Banners are shown in priority order (lower number = shown first):

Priority 0: star-repo (GitHub star prompt for new users)
Priority 1: changelog (product updates) ← Most changelog entries
Priority 2: upgrade (upgrade prompts)
Priority 3: trial (trial/billing warnings)

Changelog entries automatically get priority 1.

Common Patterns and Examples

Example 1: Feature Announcement

{
    "id": "changelog-2026-01-15-batch-evaluation",
    "title": "Batch Evaluation Available",
    "description": "Evaluate multiple test sets simultaneously with batch processing.",
    "link": "https://agenta.ai/docs/changelog/batch-evaluation"
}

Example 2: Integration Announcement

{
    "id": "changelog-2026-01-20-langchain-support",
    "title": "LangChain v0.3 Support",
    "description": "Full support for LangChain v0.3 with auto-instrumentation.",
    "link": "https://agenta.ai/docs/changelog/langchain-v03"
}

Example 3: Improvement Announcement

{
    "id": "changelog-2026-01-25-faster-traces",
    "title": "10x Faster Trace Loading",
    "description": "Observability page now loads traces up to 10x faster.",
    "link": "https://agenta.ai/docs/changelog/faster-trace-loading"
}

Related Files

Core System Files

  • web/oss/src/components/SidebarBanners/index.tsx - Main container
  • web/oss/src/components/SidebarBanners/SidebarBanner.tsx - Display component
  • web/oss/src/components/SidebarBanners/types.ts - Type definitions
  • web/oss/src/components/SidebarBanners/state/atoms.ts - State management
  • web/oss/src/components/SidebarBanners/data/changelog.json - Changelog data

Integration Point

  • web/oss/src/components/Sidebar/Sidebar.tsx - Where banners are rendered

EE Override (Enterprise Edition)

  • web/ee/src/components/SidebarBanners/index.tsx - EE wrapper
  • web/ee/src/components/SidebarBanners/state/atoms.ts - EE banners (trial, upgrade)

Best Practices

  1. Timing: Add announcements when features are fully deployed and documented
  2. User-focused: Write from user perspective ("You can now..."), not technical perspective
  3. Brevity: Keep title and description short - users skim banners
  4. Links: Always link to comprehensive documentation, not just a blog post
  5. Testing: Clear localStorage and verify the banner displays correctly
  6. Uniqueness: Use date-based IDs to prevent conflicts with past/future announcements

Troubleshooting

Banner not appearing?

  • Check JSON syntax (use a JSON validator)
  • Clear localStorage: localStorage.removeItem('agenta:dismissed-banners')
  • Verify you're looking at the correct environment (OSS vs EE)
  • Check browser console for errors

Banner appearing multiple times?

  • Ensure ID is unique (not already in the dismissed list)
  • Check for duplicate entries in changelog.json

Banner styling looks wrong?

  • The SidebarBanner component handles all styling automatically
  • Don't add custom HTML/styling in description - it's rendered as plain text

Next Steps After Adding Announcement

After adding the announcement to changelog.json, you should:

  1. Create changelog documentation page at docs/docs/changelog/[feature-slug].mdx
  2. Add screenshots or demo video to the documentation
  3. Link to related feature documentation from the changelog page
  4. Test the banner in both OSS and EE environments
  5. Commit changes with a descriptive commit message

Example Workflow

# 1. Edit changelog.json
code web/oss/src/components/SidebarBanners/data/changelog.json

# 2. Create documentation page
code docs/docs/changelog/your-feature.mdx

# 3. Test locally (if running dev server)
# Clear localStorage in browser console:
# localStorage.removeItem('agenta:dismissed-banners')

# 4. Commit
git add web/oss/src/components/SidebarBanners/data/changelog.json
git add docs/docs/changelog/your-feature.mdx
git commit -m "docs: add changelog announcement for [feature name]"

Note: This skill focuses on simple changelog announcements. For custom banners with complex logic, consult the SidebarBanners README or ask for guidance on creating custom banner components.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.41%
按下载量换算113

Claude

30.81%
按下载量换算95

Cursor

18.88%
按下载量换算58

Gemini CLI

8.6%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills