Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

feishu-paper-manager飞书纸管家

Agent Skill

feishu-paper-manager 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

7,338

周安装

312

GitHub Stars

公开资料未说明

下载量

2,571
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:feishu-paper-manager(飞书纸管家)
来源仓库:https://github.com/ch1hyaanon/feishu-paper-manager
安装命令:
openclaw skills install feishu-paper-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install feishu-paper-manager

简介

从飞书消息中提取论文链接并保存为 PDF 文件。

  • 适用于科研协作中自动归档文献资料的场景。
  • 可结合关键词识别和链接解析实现智能抓取。
  • 需确保机器人具备文档读写和存储权限。feishu-paper-manager 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意处理网络异常和文件下载失败的情况。

SKILL.md

name
feishu-openclaw-paper-manager
description
Design or implement a paper-management workflow built on a Feishu bot plus OpenClaw. Use when the user wants to ingest papers from Feishu messages, save PDFs or source links into a Feishu cloud-docs paper folder, maintain a searchable multi-dimensional table of paper metadata and reusable tags, or evolve the tag taxonomy after every 50 newly added papers.

Feishu OpenClaw Paper Manager

Use this skill when the task is to design, review, or implement a paper-management agent that runs through a Feishu bot and OpenClaw.

Primary objective

Build a workflow with three durable outputs:

  1. A cloud-docs paper folder that stores the paper asset or an index document for the source link.
  2. A Feishu multi-dimensional table that stores normalized paper metadata.
  3. A taxonomy iteration loop that improves labels whenever total paper count crosses 50, 100, 150, and so on.

Workflow

Follow this sequence:

  1. Map the ingestion sources from Feishu messages.
  2. Normalize each paper into one canonical record.
  3. Save or register the paper in the cloud-docs paper folder.
  4. Generate summary and reusable multi-label tags.
  5. Write the record into the multi-dimensional table.
  6. Check whether the total record count has reached a multiple of 50.
  7. If yes, run taxonomy refinement and backfill historical rows.

Ingestion rules

Treat these as valid paper inputs:

  • PDF attachment in a Feishu message
  • arXiv, OpenReview, ACL Anthology, publisher, or project links in a message
  • Mixed messages that contain both a PDF and a source link

For every incoming item:

  1. Extract the raw message URL, sender, timestamp, and all detected paper candidates.
  2. Resolve whether the message refers to a new paper or an existing one.
  3. Create exactly one canonical paper record per paper.

Deduplication priority:

  1. DOI
  2. arXiv ID or OpenReview forum ID
  3. normalized title
  4. source URL fingerprint

If a duplicate exists, update missing fields instead of creating a new row.

Storage model

Always separate binary storage from metadata storage:

  • The cloud-docs paper folder is for the PDF file or a small link-index doc when the PDF is unavailable.
  • The multi-dimensional table is the system of record for metadata, classification, and retrieval.

When a PDF is available:

  • upload the PDF into the paper folder
  • use a deterministic filename from year + first_author + short_title

When only a link is available:

  • create a lightweight cloud doc in the paper folder containing the title, source link, access date, and capture notes
  • still create the metadata row in the table

Required table fields

Create or expect these fields in the Feishu multi-dimensional table:

  • paper_id: stable unique ID
  • title: paper title
  • doc_link: cloud-docs link to the stored PDF or link-index doc
  • source_link: original paper URL
  • source_type: pdf, arxiv, openreview, publisher, project, other
  • summary_one_line: one-sentence summary in plain language
  • tags_topic: reusable topical tags
  • tags_method: reusable method tags
  • tags_task: reusable task tags
  • tags_domain: reusable domain tags
  • tags_stage: reusable maturity tags such as reading, worth-reproducing, survey-only
  • authors: normalized author string
  • venue: venue or source
  • year: publication year
  • status: new, classified, taxonomy-reviewed, duplicate, error
  • message_link: original Feishu message link
  • ingested_at: ingestion timestamp
  • taxonomy_version: taxonomy version used for the row

Use multi-select fields for all tags_* columns so users can filter and search by labels directly in Feishu.

Tagging policy

A paper can have multiple tags, but tags must stay reusable. Do not create a new free-form label when an existing reusable label is close enough.

Use a layered taxonomy:

  • tags_topic: broad themes such as llm, multimodal, agent, retrieval, alignment, reasoning
  • tags_method: technical mechanisms such as rag, rl, distillation, synthetic-data, moe, benchmark
  • tags_task: applied tasks such as code-gen, translation, information-extraction, math, search
  • tags_domain: business or science domain such as biology, finance, education, robotics
  • tags_stage: actionability and curation state

Keep tags short, lowercase, and singular where possible.

Prefer this decision rule:

  1. reuse an existing tag if it is at least 80 percent semantically correct
  2. add a synonym mapping instead of a brand-new visible tag when possible
  3. only introduce a new visible tag if it will likely apply to at least 5 papers in the next 100 rows

See references/tag-taxonomy.md for the starter taxonomy and merge rules.

One-line summary policy

The summary_one_line field must answer:

  • what the paper does
  • what makes it different
  • in language that a technically literate teammate can scan in under 10 seconds

Avoid hype, citation-style phrasing, and long clauses.

Taxonomy iteration loop

Whenever the table row count reaches a multiple of 50, run a taxonomy review pass.

The review pass must:

  1. export or inspect all existing tags and their frequencies
  2. identify sparse tags, duplicates, synonyms, and overloaded tags
  3. propose a new taxonomy version that improves reuse and filtering quality
  4. map old tags to new tags
  5. backfill historical rows
  6. mark affected rows with the new taxonomy_version
  7. produce a short change log explaining merges, splits, and renamed tags

Optimization goals:

  • fewer near-duplicate tags
  • better coverage of high-volume themes
  • stable filters across time
  • minimal churn for already-good tags

Do not relabel everything from scratch unless the old taxonomy is clearly broken. Prefer merge-and-backfill over wholesale replacement.

Output contract

When asked to design the system, return:

  1. end-to-end workflow
  2. Feishu table schema
  3. tagging strategy
  4. taxonomy iteration logic
  5. implementation notes for Feishu bot and OpenClaw boundaries

When asked to implement or review code, anchor decisions to:

  • ingestion reliability
  • deduplication correctness
  • idempotent writes
  • table filterability
  • taxonomy evolution safety

Boundary between Feishu bot and OpenClaw

Default division of responsibility:

  • Feishu bot: receive messages, fetch attachments or links, send confirmations, surface errors
  • OpenClaw: parse payloads, deduplicate, summarize, classify, write docs and table rows, trigger taxonomy reviews

If the user has an existing architecture, preserve it and only adapt the workflow.

Development contract

When the user wants implementation guidance, assume this integration shape unless the project already defines another one:

  1. Feishu bot receives the event and verifies the request.
  2. Feishu bot converts the raw event into a normalized ingestion payload.
  3. Feishu bot calls an OpenClaw workflow entrypoint with that payload.
  4. OpenClaw performs enrichment, storage, classification, and table updates.
  5. OpenClaw returns a structured result for user-visible confirmation.
  6. Feishu bot posts a success, duplicate, or failure message back to the conversation.

Design the integration around these engineering constraints:

  • idempotent processing for webhook retries
  • explicit deduplication before any write
  • append-safe and patch-safe updates to the table
  • stable identifiers for files, rows, and taxonomy versions
  • clear status reporting back to the chat thread

Use references/api-contracts.md for payload shapes and responsibility boundaries. Use references/event-flows.md for event sequences and retry behavior.

Feishu-side implementation expectations

On the Feishu side, prefer these components:

  • webhook endpoint for message events
  • message parser for attachments and URLs
  • file fetcher for PDF downloads
  • Feishu document client for folder upload or doc creation
  • Feishu table client for row create and row update
  • reply formatter for confirmations and error notices

The Feishu bot should emit one normalized payload per detected paper candidate, not one per message if a message contains multiple papers.

Before calling OpenClaw, the Feishu side should:

  1. verify event authenticity
  2. extract message metadata
  3. collect attachment metadata and URLs
  4. collect raw hyperlinks in the message body
  5. attach a stable event_id and message_id
  6. include enough source metadata for later retries without rereading the original message when possible

OpenClaw-side implementation expectations

On the OpenClaw side, prefer these stages:

  1. ingest payload validation
  2. paper candidate normalization
  3. metadata enrichment from PDF or source page
  4. duplicate lookup
  5. cloud-docs write
  6. one-line summary generation
  7. multi-dimensional tagging
  8. table upsert
  9. taxonomy-threshold check
  10. taxonomy review workflow when threshold is hit

OpenClaw should treat the table as an upsert target, not append-only storage.

For duplicates:

  • keep the canonical row
  • patch missing metadata
  • optionally append the new message_link to notes or an audit field if the implementation supports it
  • return a duplicate result instead of creating a new paper row

Taxonomy review trigger contract

The threshold is based on canonical non-duplicate paper rows, not raw messages.

Trigger a taxonomy review only when:

  • the current canonical row count is divisible by 50
  • the taxonomy review for that exact threshold has not already run

Persist a review checkpoint such as last_review_count = 100 or taxonomy_version = v3 so retries do not rerun the same migration.

Output expectations for implementation tasks

When implementing code, prefer returning these artifacts:

  1. module boundaries
  2. payload schemas
  3. idempotency rules
  4. event sequence
  5. failure handling and retry rules
  6. sample success and duplicate responses

When reviewing code, check specifically for:

  • webhook retry safety
  • duplicate PDF uploads
  • row duplication from concurrent events
  • inconsistent tag writes across dimensions
  • taxonomy backfill that can partially fail without rollback

Failure policy

The default failure strategy is:

  • fail fast on invalid payloads
  • retry transient network or API errors
  • do not retry deterministic classification errors forever
  • never create a table row before deduplication completes
  • never advance taxonomy version markers before backfill succeeds

If partial writes are possible, require compensating logic or a resumable reconciliation job.

Resources

  • Table schema and record lifecycle: references/table-schema.md
  • Tag starter set and refinement rules: references/tag-taxonomy.md
  • Feishu/OpenClaw payload and boundary contracts: references/api-contracts.md
  • Event sequences, retries, and examples: references/event-flows.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

97.97%
按下载量换算2,519

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills