โ† Browse

@tlysanhuo/aminer-rec5

A

OpenClaw personalized paper recommendation skill. When the user invokes /aminer-rec5 or /skill aminer-rec5 in Feishu, immediately run the local pipeline under {baseDir}/scripts/, accept aminer_user_id, scholar hints, seed paper titles, papers_file, or free-form topic text, build a unified ResearchProfile, retrieve papers, enrich with AMiner, dispatch Feishu cards, and return NO_REPLY.

skillclaude

Install

agr install @tlysanhuo/aminer-rec5 --target claude

Writes 12 files into .claude/skills/, pinned to git-e6ef64aa.

  • .claude/skills/aminer-rec5/.gitignore
  • .claude/skills/aminer-rec5/CONTRIBUTING.md
  • .claude/skills/aminer-rec5/LICENSE
  • .claude/skills/aminer-rec5/README.md
  • .claude/skills/aminer-rec5/README.zh.md
  • .claude/skills/aminer-rec5/SKILL.md
  • .claude/skills/aminer-rec5/SKILL_zh.md
  • .claude/skills/aminer-rec5/config.example.yaml
  • .claude/skills/aminer-rec5/pyproject.toml
  • .claude/skills/aminer-rec5/requirements-dev.txt
  • .claude/skills/aminer-rec5/requirements.txt
  • .claude/skills/aminer-rec5/setup.py

Document


name: aminer-rec5 description: "OpenClaw personalized paper recommendation skill. When the user invokes /aminer-rec5 or /skill aminer-rec5 in Feishu, immediately run the local pipeline under {baseDir}/scripts/, accept aminer_user_id, scholar hints, seed paper titles, papers_file, or free-form topic text, build a unified ResearchProfile, retrieve papers, enrich with AMiner, dispatch Feishu cards, and return NO_REPLY." homepage: https://github.com/tlysanhuo/aminer-rec user-invocable: true disable-model-invocation: false metadata: { "openclaw": { "emoji": "๐Ÿ“š", "requires": { "bins": ["python3"] } } }

aminer-rec5

Use this skill only for explicit /aminer-rec5 or /skill aminer-rec5 requests.

Contract

  • Every explicit invocation is a new run.
  • Do not answer with status-only text.
  • Do not search, install, or repair skills.
  • After running handle_trigger.py, check final_response in the JSON output:
    • NO_REPLY โ†’ Feishu cards were dispatched successfully. Return exactly NO_REPLY.
    • TEXT โ†’ No Feishu target available. Present the reply_text value directly to the user.
    • Any error โ†’ Report the reply_text or error detail to the user.

Inputs

  • aminer_user_id
  • scholar / name
  • org
  • papers
  • papers_file
  • topics
  • language_sort: zh or en โ€” filter results by paper language
  • start_year: minimum publication year (e.g. 2023)
  • end_year: maximum publication year (e.g. 2026)
  • free-form natural-language interest description

Execution

python3 "{baseDir}/scripts/handle_trigger.py" \
  --base-dir "{baseDir}" \
  --text "<original Feishu message>"

handle_trigger.py is the only supported entrypoint.

Examples

/aminer-rec5 topics: multimodal agents, tool use
/aminer-rec5 topics: LLM reasoning language_sort: en start_year: 2024
/aminer-rec5 scholar: Jie Tang org: Tsinghua University papers: OAG-Bench
/aminer-rec5 aminer_user_id: 696259801cb939bc391d3a37 topics: multimodal

Trustgrade A

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • passLicense

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged โ€” not that the artifact is safe.

Versions

  • git-e6ef64aad26e2026-07-31