display-toggles-that-expand-collapse
Use collapsible sections to make verbose agent output more readable
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use collapsible sections to make verbose agent output more readable
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Helps users connect and use a service in Rebel when it isn't already in the built-in connector catalog. Acts as an expert advisor — runs the full build-vs-buy check (catalog, MCP Registry, community) before scaffolding a custom MCP server and guiding research, implementation, security review, and contribution.
Add, update, or remove connectors (MCP servers) in Rebel. Searches the built-in connector catalog first before suggesting custom builds. Handles setup, configuration, and security review for community connectors.
Capture citable sources (meetings, documents, files, media, web content) as structured files in memory/sources/ with provenance metadata for traceability.
Rules for writing error messages, toasts, banners, and recovery copy in Rebel's voice — dry, calm, helpful, and never apologetic. Use whenever you add or rewrite any user-facing error string.
Guides users through adding new tools or capabilities to an existing connector (MCP server). Handles eligibility, workspace setup, connector research, implementation via Software Engineer workflow, local testing, and PR submission with an extension-specific template.
Help users celebrate impactful wins and surface important learnings by analyzing their recent communications and activities.
| name | display-toggles-that-expand-collapse |
| description | Use collapsible sections to make verbose agent output more readable |
| last_updated | "2026-01-13T00:00:00.000Z" |
| tools_required | [] |
| dependencies | [] |
| agent_type | main_agent |
Use collapsible sections when your response contains verbose content that users may want to hide/show.
Use fenced code blocks with collapse language:
```collapse
Summary text (first line)
Body content that will be hidden by default.
Can include **markdown**, links, code blocks, etc.
```
For sections that should be expanded by default:
```collapse-open
Summary (visible, expanded)
Body content visible immediately.
```
Good candidates for collapsing:
Keep expanded:
Prefer multiple small toggles over one large one. If you have several distinct sections of verbose content, give each its own collapse block rather than lumping everything into a single toggle. This lets users expand only what they need.
Instead of:
Here are the 47 files that match your search:
- file1.md
- file2.md
- ... (45 more)
Use:
Found 47 matching files.
```collapse
Full file list (47 files)
- file1.md
- file2.md
- file3.md
...
```
Do NOT use raw HTML <details>/<summary> tags. They will not render correctly. Always use the fenced code block syntax above.