font-interceptor
Extract fonts (TTF/OTF) from any website using MSCHF Font Interceptor. Use when user drops a URL and wants to identify/extract/download fonts from that website, or asks "what font is this site using" or similar font extraction requests.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-font-interceptor
Repository
Skill path: skills/honeybee1130/font-interceptor
Extract fonts (TTF/OTF) from any website using MSCHF Font Interceptor. Use when user drops a URL and wants to identify/extract/download fonts from that website, or asks "what font is this site using" or similar font extraction requests.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install font-interceptor into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding font-interceptor to shared team environments
- Use font-interceptor for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: font-interceptor
description: Extract fonts (TTF/OTF) from any website using MSCHF Font Interceptor. Use when user drops a URL and wants to identify/extract/download fonts from that website, or asks "what font is this site using" or similar font extraction requests.
---
# Font Interceptor
Extract fonts from any website using https://fontinterceptor.mschfmag.com/
## Workflow
When user provides a URL to extract fonts from:
1. Open browser to `https://fontinterceptor.mschfmag.com/`
2. Enter the target URL in the search/input field
3. Submit and wait for results
4. Report found fonts (names + download links for TTF/OTF files)
## Browser Automation
```javascript
// Using browser tool with openclaw profile
// 1. Navigate to font interceptor
browser({ action: "open", targetUrl: "https://fontinterceptor.mschfmag.com/", profile: "openclaw" })
// 2. Take snapshot to find input field
browser({ action: "snapshot", profile: "openclaw" })
// 3. Type URL into input and submit
browser({ action: "act", request: { kind: "type", ref: "<input-ref>", text: "https://target-site.com", submit: true } })
// 4. Wait for results, take snapshot
browser({ action: "snapshot", profile: "openclaw" })
// 5. Report fonts found, including download links
```
## Fallback (No Browser)
If browser unavailable, instruct user:
1. Go to https://fontinterceptor.mschfmag.com/
2. Paste URL: `<target-url>`
3. Hit enter
4. Download the fonts shown
## Output Format
Report results as:
```
Fonts found on <url>:
- FontName.ttf [download link]
- FontName.otf [download link]
```
If no fonts found, report that the site may use system fonts or web-safe fonts only.
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### _meta.json
```json
{
"owner": "honeybee1130",
"slug": "font-interceptor",
"displayName": "Font Interceptor",
"latest": {
"version": "1.0.0",
"publishedAt": 1771919234646,
"commit": "https://github.com/openclaw/skills/commit/0289f64851a88aaac961cd9454f90a9d2bb46f91"
},
"history": []
}
```