Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

far

Agent Skill

far 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

198

周安装

8

GitHub Stars

9

下载量

62
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:far(远)
来源仓库:https://github.com/mr-kelly/far
仓库路径:skills/far
安装命令:
npx skills add https://github.com/mr-kelly/far --skill far
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mr-kelly/far --skill far

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 通过生成持久化的 .meta 侧边文件,使 AI 能读取非文本文件如 PDF、图片等。
  • 安装前建议确认权限范围、维护状态及是否会触发命令执行或文件读写。
  • far 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

📄 /far - File-Augmented Retrieval

"Making Every File Readable to Coding Agents via Persistent.meta Sidecars"

FAR is a file augmentation protocol that generates persistent .meta sidecar files for binary documents (PDF, DOCX, XLSX, PPTX, Images, etc.). This allows AI coding agents (like OpenClaw, Cursor, GitHub Copilot) to "read" non-text files directly from the file system without requiring external RAG infrastructure.

Current Version: 1.0.0 Author: Kelly Peilin Chan


🚀 The Problem: AI "Blindness"

AI agents operating in a repository can read code (.py, .js, .md), but they are blind to 30-40% of critical context stored in binary formats:

  • Product Specs: requirements.docx
  • Design Mocks: architecture.png
  • Financial Data: budget.xlsx
  • Contracts: agreement.pdf

When an agent encounters budget.xlsx, it sees opaque bytes. It cannot reason about the content.

💡 The Solution: Persistent Sidecars

FAR solves this by generating a human-readable and machine-readable .meta file next to every binary file.

Example:

project/
├── budget.xlsx         (Binary, opaque)
└── budget.xlsx.meta    (Markdown, readable)

The agent simply reads budget.xlsx.meta to understand the spreadsheet. No vector database, no API calls, no runtime overhead.


✨ Features

1. Broad Format Support

FAR extracts text and structure from a wide range of formats:

  • 📄 PDF (.pdf): Full text extraction with layout preservation. OCR fallback for scanned PDFs. Embedded image extraction (pdfimages + OCR/Vision).
  • 📝 Word (.docx, .doc): Text extraction.
  • 📊 Excel (.xlsx): Sheet data converted to Markdown tables.
  • 📽️ PowerPoint (.pptx): Slide text extraction.
  • 🖼️ Images (.png, .jpg, .jpeg, .gif, .bmp, .webp): OCR (Tesseract) + Apple Vision (on-device, macOS) + AI Vision (GPT-4o) if configured.
  • 🎬 Media (.mp4, .mov, .mp3, .wav, .m4a, .flac): Technical metadata (FFprobe) + Apple Vision video-frame analysis (macOS) + AI Transcription (Whisper) if configured.
  • 📋 CSV (.csv): Data rendered as Markdown tables (up to 100 rows).
  • 📓 Jupyter Notebook (.ipynb): Markdown cells, code cells, and outputs.
  • 📚 EPUB (.epub): Full text extracted from all chapters in spine order.
  • 📦 Tar (.tar, .tar.gz, .tgz, .bz2, .xz): File listing with sizes.
  • 📧 Email (.eml, .msg): Headers, body text, and attachment list.
  • 📝 RTF (.rtf): Plain text extraction via control word stripping.
  • 🗄️ SQLite (.db, .sqlite, .sqlite3): Table schemas + latest 20 rows per table as Markdown tables.
  • 📊 Parquet (.parquet): Schema and row count via pyarrow (optional). *[Metadata only]*
  • 🎨 Design (.fig, .sketch, .xd): File size and page/canvas count. *[Metadata only]*
  • 💻 Code/Text (.py, .js, .ts, .go, .rs, .md, .json,...): Direct content mirroring.

2. Intelligent Caching (Incremental Build)

FAR is designed for speed. It uses a two-layer caching mechanism:

  1. Fast Check (mtime & size): If the file hasn't been modified, it skips processing instantly (0.003s).
  2. Content Check (SHA256): If mtime changed, it calculates the file hash. If the content is identical, it updates the timestamp but skips re-extraction.

For directory summaries, FAR also avoids noisy rewrites: if .dir.meta summary content is unchanged, it keeps the file untouched (no extracted_at churn).

3. Directory Summaries (.dir.meta)

FAR generates a .dir.meta file in every directory, providing a high-level summary of all files within. This allows agents to "browse" a folder and understand its contents without reading every single file.

4. Git LFS Support

FAR automatically handles Git LFS pointer files. It will attempt to pull the real content before processing, ensuring you don't get empty metadata for LFS-tracked files.


🛠️ Usage

Installation

The skill is pre-installed in the OpenClaw workspace:

~/.openclaw/workspace/.agents/skills/far/far_gen.py

A symlink is available as far:

far [directory_or_file]

Commands

Scan current directory (Recursive):

far

Scan specific directory:

far ~/Documents/projects/files

Process single file:

far report.pdf

Force regeneration (Ignore cache):

far . --force

Configuration (AI Features)

To enable AI features (Audio Transcription, Image Description), create a .env file in the skill directory or your home folder ~/.far.env. Copy .env.example as a template:

OPENAI_API_KEY=sk-your-key-here
# Optional
OPENAI_BASE_URL=https://api.openai.com/v1
# Optional (macOS default: enabled)
FAR_USE_APPLE_VISION=1
# Optional (macOS default: enabled)
FAR_USE_MACOS_METADATA=1
# Optional tuning
FAR_APPLE_VISION_TIMEOUT=25
FAR_APPLE_VISION_MAX_FRAMES=6

If API keys are missing, FAR gracefully falls back to local tools (Tesseract, FFprobe), and on macOS it also uses Apple Vision + Spotlight metadata on-device by default.

Configuration (Ignore)

Create a .farignore file in your project root to exclude files or directories from scanning.

# .farignore
node_modules
.git
secrets/
*.tmp

🤖 Agent Integration

Add one rule to AGENTS.md or your system prompt:

## File Reading with FAR

When navigating a directory, first read `.dir.meta` for a high-level overview
before opening individual files.

When you encounter a binary file you cannot read directly
(.png, .pdf, .xlsx, .mp4, .fig, .db, etc.), check for a .meta file
beside it — it contains the extracted content as Markdown.

Navigation strategy:
1. Read <dir>/.dir.meta to understand directory structure
2. Read <file>.meta to access binary file content
3. Fall back to reading the source file only if no .meta exists

🏗️ Protocol Specification (v1)

Each .meta file follows a strict format with a YAML frontmatter header and Markdown body.

--far_version: 1
source:
  sha256: 5a1cc2b8d...
  mime: application/pdf
  size: 129509
  mtime: 1708845210.5
extract:
  pipeline: far_gen_v14
  extracted_at: 2026-02-27T10:00:00Z
  deterministic: true
layout:
  pages: 24
---
# filename.pdf

[Extracted Content Here...]

Cache invalidation: a .meta is stale if sha256 or pipeline version has changed.


🤝 Contributing

Roadmap:

  • PDF/Word/Excel/PowerPoint Support
  • Incremental Caching (SHA-256 + mtime)
  • Directory Summaries (.dir.meta)
  • OCR for Images/Scanned PDFs (Tesseract)
  • Media Metadata (FFprobe) + Transcription (Whisper)
  • AI Vision for Images (GPT-4o)
  • Apple Vision for Images (on-device, macOS)
  • Apple Vision for Video Frames (on-device labels/OCR/faces/barcodes/pose)
  • Apple Vision Feature Print fingerprint (on-device embedding hash)
  • macOS Spotlight metadata enrichment (mdls)
  • PDF Embedded Image Extraction
  • CSV → Markdown Tables
  • Jupyter Notebook Support
  • EPUB, ZIP/TAR, Email, RTF
  • SQLite Schema + Data Preview
  • Parquet Schema, Design File Metadata
  • Pipeline version stale detection
  • Layout frontmatter (pages/sheets/slides)
  • Full glob support in .farignore
  • MCP resource server integration
  • PII redaction rules
  • Rust implementation for CI/CD speed

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.69%
按下载量换算23

Claude

32.3%
按下载量换算20

Cursor

17.47%
按下载量换算11

Gemini CLI

8.74%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills