Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

paperbanana-dashscope纸香蕉仪表镜

Agent Skill

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

总安装

4,152

周安装

173

GitHub Stars

公开资料未说明

下载量

1,384
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install paperbanana-dashscope

简介

使用阿里云 DashScope 的论文分析与处理工具。

  • 基于 Qwen-VL 和万向/Qwen-Im 模型的能力支持。
  • 提供论文内容的智能理解和处理功能。
  • 需要确认云服务 API 访问权限和配额限制。
  • 建议了解模型版本和功能更新情况。paperbanana-dashscope 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
paperbanana-dashscope
description
Generate academic figures and scientific diagrams from paper text using a multi-agent pipeline powered by Alibaba Cloud DashScope (Qwen-VL + Wanxiang/Qwen-Image). Use when the user wants to create figures for research papers, visualize methods sections, generate architecture diagrams, or produce illustrations for academic content. Supports diagram and plot tasks with multi-round critic refinement.

paperbanana-dashscope

Native TypeScript CLI for generating academic figures from paper text. Zero Python dependencies. Powered by Alibaba Cloud DashScope.

Install & Update

npm install -g paperbanana-dashscope
paperbanana-dashscope --version

Prerequisites

User must configure a DashScope API key. Check current status:

paperbanana-dashscope info

If no API key is configured, set one of:

# Option 1: Environment variable (simplest)
export OPENAI_API_KEY="sk-xxx"

# Option 2: Global config file
mkdir -p ~/.paperbanana-dashscope
cat > ~/.paperbanana-dashscope/config.yaml << 'YAML'
defaults:
  main_model_name: "qwen-vl-max"
  image_gen_model_name: "wanx2.1-t2i-turbo"
api_keys:
  openai_api_key: "sk-xxx"
YAML

Basic Usage

Generate a single figure from text:

paperbanana-dashscope generate \
  --content "Method section text describing the architecture..." \
  --caption "Figure 1: System overview" \
  --output ~/Downloads/figure.png \
  --num-candidates 1

Key Options

OptionDescriptionDefault
--content <text>Paper text describing the methodrequired
--caption <text>Figure captionrequired
--output <path>Output PNG file pathrequired
--task <type>diagram or plotdiagram
--num-candidates <n>Number of candidates to generate1
--max-critic-rounds <n>Critic refinement iterations3
--aspect-ratio <ratio>1:1, 16:9, 4:3, 21:9, etc21:9
--main-model-name <id>VLM for planning/criticqwen-vl-max
--image-gen-model-name <id>Image generation modelwanx2.1-t2i-turbo

Available Image Models

DashScope supports three families of text-to-image models:

Wanxiang legacy (fast, cheap):

  • wanx2.1-t2i-turbo (default, fastest)
  • wanx2.1-t2i-plus (better quality)

Wanxiang 2.7 (latest, highest quality):

  • wan2.7-image-pro (professional, supports 4K output in text-to-image)
  • wan2.7-image (standard, supports up to 2K, same pricing as wan2.6)

Wanxiang 2.x (previous generation):

  • wan2.6-t2i (flagship of 2.6 series)
  • wan2.5-t2i-preview
  • wan2.2-t2i-flash / wan2.2-t2i-plus

Qwen-Image (best for figures with text labels):

  • qwen-image-plus (recommended for diagrams with English/Chinese labels)
  • qwen-image-max (top-tier text rendering)

Switch models inline:

paperbanana-dashscope generate \
  --content "..." \
  --caption "..." \
  --image-gen-model-name wan2.6-t2i \
  --output figure.png

Pipeline Modes

Use --exp-mode to control which agents run:

ModeAgentsUse case
vanillaVanilla onlyFastest, no refinement
dev_plannerPlanner onlyJust generate description
dev_planner_criticPlanner + CriticWith refinement loop
dev_fullPlanner + Stylist + Visualizer + CriticFull pipeline
demo_fullSame as dev_full + retrieverDefault, best quality

Common Workflows

Quick draft (fast, low cost):

paperbanana-dashscope generate \
  --content "..." \
  --caption "..." \
  --output draft.png \
  --exp-mode vanilla \
  --image-gen-model-name wanx2.1-t2i-turbo

High-quality figure for paper submission:

paperbanana-dashscope generate \
  --content "..." \
  --caption "..." \
  --output paper_fig.png \
  --image-gen-model-name wan2.6-t2i \
  --num-candidates 3 \
  --max-critic-rounds 5

Figure with English/Chinese text labels:

paperbanana-dashscope generate \
  --content "..." \
  --caption "..." \
  --output labeled.png \
  --image-gen-model-name qwen-image-plus

Troubleshooting

  • "未检测到任何 API Key": Run paperbanana-dashscope info and follow the configuration guide.
  • "size is not in the correct format": This is fixed in v1.0.2+. Run npm update -g paperbanana-dashscope.
  • "url error": Old version. Upgrade to v1.0.2+ for support of new wan2.6 / qwen-image models.

Resources

  • npm: https://www.npmjs.com/package/paperbanana-dashscope
  • GitHub: https://github.com/TashanGKD/PaperBanana-DashScope

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

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

平台分布

OpenClaw

71.98%
按下载量换算996

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills