Install
openclaw skills install ft-readerAutomates login to FT.com to extract and provide detailed bilingual English-Chinese summaries of top Financial Times articles with academic rigor.
openclaw skills install ft-readerUse this skill to perform deep, structured, and bilingual analysis of top articles from Financial Times (ft.com). This skill automates login, article selection, and high-quality summarization suitable for academic and professional use.
openclaw profile to maintain session persistence.xxxxxxxxxxxxhttps://www.ft.com/login.Use evaluate to identify the top N articles from the homepage (targeting .o-teaser__heading or most-read sections).
For each target article:
Navigate to the article URL.
Use evaluate with the following JavaScript to extract clean content:
() => {
const title = document.querySelector('h1')?.innerText;
const standfirst = document.querySelector('div[class*="standfirst"]')?.innerText;
const paragraphs = Array.from(document.querySelectorAll('div[class*="article-body"] p, article p'))
.map(p => p.innerText.trim())
.filter(text => text.length > 0);
return { title, summary: standfirst, content: paragraphs.join('\n\n') };
}
For each article, generate a report (around 600 words) using the following structure: