General
PromptBeginner5 minmarkdown
<h1 align="center">
<a href="https://prompts.chat">
5
When updating manual sections (`<!-- MANUAL: ... -->`) in block documentation files (e.g., `docs/integrations/basic.md`), follow these formats:
Sign in to like and favorite skills
When updating manual sections (
<!-- MANUAL: ... -->) in block documentation files (e.g., docs/integrations/basic.md), follow these formats:
Provide a technical explanation of how the block functions:
[[1, 2], [3, 4]] becomes [1, 2, 3, 4])Example:
<!-- MANUAL: how_it_works --> The block iterates through each list in the input and extends a result list with all elements from each one. It processes lists in order, so `[[1, 2], [3, 4]]` becomes `[1, 2, 3, 4]`. The block includes validation to ensure each item is actually a list. If a non-list value is encountered, the block outputs an error message instead of proceeding. <!-- END MANUAL -->
Provide 3 practical use cases in this format:
Example:
<!-- MANUAL: use_case --> **Paginated API Merging**: Combine results from multiple API pages into a single list for batch processing or display. **Parallel Task Aggregation**: Merge outputs from parallel workflow branches that each produce a list of results. **Multi-Source Data Collection**: Combine data collected from different sources (like multiple RSS feeds or API endpoints) into one unified list. <!-- END MANUAL -->