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.
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.
Capture citable sources (meetings, documents, files, media, web content) as structured files in memory/sources/ with provenance metadata for traceability.
Help users celebrate impactful wins and surface important learnings by analyzing their recent communications and activities.
Guidelines for maintaining single sources of truth and using signposting to connect documentation without duplication
Evaluate a finalised meeting transcript and distribute relevant content to other spaces, deciding per space whether to copy the full transcript, write a sanitised summary, or skip.
| 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.