add-announcement
Helps add announcement cards to the sidebar banner system. Use when adding changelog entries, feature announcements, updates, or promotional banners to the Agenta sidebar. Handles both simple changelog entries and complex custom banners.
Install
mkdir -p .claude/skills/add-announcement && curl -L -o skill.zip "https://mcp.directory/api/skills/download/5261" && unzip -o skill.zip -d .claude/skills/add-announcement && rm skill.zipInstalls to .claude/skills/add-announcement
About this skill
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:
- Add the banner type to
types.ts - Add priority to
state/atoms.ts - Create the banner in
activeBannersAtom(OSS) oreeBannersAtom(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:
- Clear localStorage:
localStorage.removeItem('agenta:dismissed-banners') - Refresh the page
- 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 containerweb/oss/src/components/SidebarBanners/SidebarBanner.tsx- Display componentweb/oss/src/components/SidebarBanners/types.ts- Type definitionsweb/oss/src/components/SidebarBanners/state/atoms.ts- State managementweb/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 wrapperweb/ee/src/components/SidebarBanners/state/atoms.ts- EE banners (trial, upgrade)
Best Practices
- Timing: Add announcements when features are fully deployed and documented
- User-focused: Write from user perspective ("You can now..."), not technical perspective
- Brevity: Keep title and description short - users skim banners
- Links: Always link to comprehensive documentation, not just a blog post
- Testing: Clear localStorage and verify the banner displays correctly
- 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:
- Create changelog documentation page at
docs/docs/changelog/[feature-slug].mdx - Add screenshots or demo video to the documentation
- Link to related feature documentation from the changelog page
- Test the banner in both OSS and EE environments
- 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.
More by Agenta-AI
View all skills by Agenta-AI →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversBoost productivity with Task Master: an AI-powered tool for project management and agile development workflows, integrat
Supercharge your AI code assistant with GitMCP—get accurate, up-to-date code and API docs from any GitHub project. Free,
Access official Microsoft Docs instantly for up-to-date info. Integrates with ms word and ms word online for seamless wo
Effortlessly manage Google Cloud with this user-friendly multi cloud management platform—simplify operations, automate t
Easily integrate and debug Sentry APIs with sentry-mcp, a flexible MCP middleware for cloud and self-hosted setups.
Transform Figma designs into high-quality code with AI. Seamless figma to code and figma to html workflows for efficient
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.