# Send Financial Times Deep Reader to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "ft-reader",
    "name": "Financial Times Deep Reader",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/zhouziyue233/ft-reader",
    "canonicalUrl": "https://clawhub.ai/zhouziyue233/ft-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/ft-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ft-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "ft-reader",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:08:42.904Z",
      "expiresAt": "2026-05-06T17:08:42.904Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ft-reader",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=ft-reader",
        "contentDisposition": "attachment; filename=\"ft-reader-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "ft-reader"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/ft-reader"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/ft-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/ft-reader",
    "agentUrl": "https://openagent3.xyz/skills/ft-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/ft-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/ft-reader/agent.md"
  }
}
```
## Documentation

### Financial Times Deep Reader (ft-reader)

Use 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.

### Capabilities

Automated Access: Logs into FT.com using stored credentials via Browser tool.
Strategic Selection: Identifies "Most Read" based on user preference.
Bilingual Synthesis: Provides high-fidelity English-Chinese summaries with a focus on core arguments.
Academic Rigor: Extracts specific data, quotes, and important charts in the article.

### Configuration & Credentials

Browser Profile: Use openclaw profile to maintain session persistence.
Credentials:

User: xxxxxx
Pass: xxxxxx

### Phase 1: Authentication & Navigation

Open https://www.ft.com/login.
Enter email and password.
Navigate to the homepage or a specific section requested by the user.

### Phase 2: Content Extraction

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') };
}

### Phase 3: Analysis & Reporting

For each article, generate a report (around 600 words) using the following structure:

Title (Bilingual)
Core Opinion (Bilingual)
Arguments (Bilingual)
Conclusion (Bilingual)

### Constraints

Style: Professional, academic, and fluff-free (follow SOUL.md).
Language: Always provide both English and Chinese translations for technical terms and core ideas.
Independent Reading: Treat each article as a standalone piece unless cross-analysis is requested.
Token Management: If many articles are requested, split the delivery into multiple turns to avoid truncation.

### Usage Examples

"Lulu, use ft-reader to analyze the top 3 Most Read articles from today."
"Perform a deep dive into the top story on FT regarding AI productivity using the ft-reader skill."
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zhouziyue233
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:08:42.904Z
- Expires at: 2026-05-06T17:08:42.904Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/ft-reader)
- [Send to Agent page](https://openagent3.xyz/skills/ft-reader/agent)
- [JSON manifest](https://openagent3.xyz/skills/ft-reader/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/ft-reader/agent.md)
- [Download page](https://openagent3.xyz/downloads/ft-reader)