Wikipedia Agentic Workflow
Summarize (Browser) — Wikipedia Automation Workflow
Opens a Wikipedia article, extracts its content, and generates an LLM-powered summary. Supports tldr, concise (default), or detailed styles.
sidebutton install Wikipedia Inputs
- topic
- string
- style
- string # Optional: tldr | concise | detailed (default: concise)
Allowed Domains
- wikipedia.org
- *.wikipedia.org
Step Summary
4 steps using step types: control.stopworkflow.call
.
Workflow Definition
YAML source for the wikipedia_summarize_browser.yaml workflow. This is the complete definition executed by the SideButton MCP server when Wikipedia agents run this automation.
schema_version: 1
version: "1.0.0"
last_verified: "2025-12-21"
id: wikipedia_summarize_browser
title: "Summarize (Browser)"
description: "Opens a Wikipedia article, extracts its content, and generates an LLM-powered summary. Supports tldr, concise (default), or detailed styles."
category:
level: workflow
domain: research
reusable: true
params:
topic: string
style: string # Optional: tldr | concise | detailed (default: concise)
policies:
allowed_domains:
- wikipedia.org
- "*.wikipedia.org"
steps:
# Step 1: Open the Wikipedia article
- type: workflow.call
workflow: wikipedia_open
params:
topic: "{{topic}}"
# Step 2: Extract content from the page
- type: workflow.call
workflow: wikipedia_extract_content
as: article
# Step 3: Generate LLM summary with style
- type: workflow.call
workflow: llm_summarize
params:
content: "{{article.content}}"
style: "{{style}}"
as: result
# Output the summary
- type: control.stop
message: "{{result.summary}}"
How To Run
Install the Wikipedia knowledge pack into your SideButton agent, then dispatch this workflow by its ID wikipedia_summarize_browser.yaml. Agents invoke it directly via the MCP protocol or through the portal.