Token导航 LogoToken导航TokenDH.com
效率权限需确认clawhub未标认证来源可访问clear审计通过

multi-panel-figure-assembler多面板图形组装器

Agent Skill

multi-panel-figure-assembler 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,387

周安装

137

GitHub Stars

公开资料未说明

下载量

1,063
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:multi-panel-figure-assembler(多面板图形组装器)
来源仓库:https://github.com/aipoch-ai/multi-panel-figure-assembler
安装命令:
openclaw skills install multi-panel-figure-assembler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install multi-panel-figure-assembler

简介

multi-panel-figure-assembler 将六个子图合并为高分辨率合成图,保持标签一致性与出版级 DPI。

  • 适用于科研绘图、论文配图或演示文稿制作等效率场景。
  • 通过 OpenClaw 安装后,Agent 自动对齐布局并导出 PNG/SVG 文件。
  • 使用前需准备符合尺寸要求的子图文件,避免拉伸失真。
  • 注意色彩空间统一,确保最终图像在不同设备上显示一致。

SKILL.md

name
multi-panel-figure-assembler
description
Assemble 6 sub-figures (A–F) into a high-resolution composite figure with consistent labels, padding, and publication-ready DPI.
license
MIT
skill-author
AIPOCH
status
beta

Multi-Panel Figure Assembler

Assemble 6 sub-figures (A–F) into a high-resolution composite figure with consistent styling, labels, and publication-ready output.

Input Validation

This skill accepts: exactly 6 image files (panels A–F) in supported formats, plus an output path, for assembly into a composite figure.

If the request does not involve assembling exactly 6 image panels into a composite figure — for example, asking to generate plots from data, edit image content, or assemble a different number of panels — do not proceed. Instead respond:

"multi-panel-figure-assembler is designed to assemble exactly 6 sub-figures (A–F) into a composite image. Your request appears to be outside this scope. Please provide 6 image files and an output path, or use a more appropriate tool for your task. For plot generation from data, consider matplotlib, seaborn, or R ggplot2."

Do not attempt any data processing or partial analysis before emitting this refusal. Validate scope first — this is the absolute first action before any other processing.

When to Use

  • Combining individual plot panels into a single composite figure for publication
  • Standardizing label fonts, padding, and DPI across a figure set
  • Producing 2×3 or 3×2 grid layouts from existing image files
  • Automating figure assembly to ensure reproducibility

Note: This skill is fixed to exactly 6 panels (A–F labeling convention). For 4-panel (2×2) or 9-panel (3×3) layouts, a future --panels parameter may be added.

Workflow

  1. Validate input — confirm scope and that exactly 6 panels are provided before any processing. Do not generate any output before this check.
  2. Confirm the user objective, required inputs, and non-negotiable constraints.
  3. Use the packaged script path or the documented reasoning path with only the inputs that are actually available.
  4. Return a structured result that separates assumptions, deliverables, risks, and unresolved items.
  5. If execution fails or inputs are incomplete, switch to the fallback path and state exactly what blocked full completion.

Usage

# Basic 2×3 layout
python scripts/main.py --input A.png B.png C.png D.png E.png F.png --output figure.png

# 3×2 layout at 600 DPI
python scripts/main.py --input A.png B.png C.png D.png E.png F.png --output figure.png --layout 3x2 --dpi 600

# Custom label styling
python scripts/main.py --input A.png B.png C.png D.png E.png F.png --output figure.png \
  --label-size 32 --label-position topright --padding 20 --border 4

Parameters

ParameterTypeDefaultDescription
--input / -i6 pathsRequiredInput image paths for panels A–F
--output / -opathRequiredOutput composite file path
--layout / -lenum2x3Grid layout: 2x3 or 3x2
--dpi / -dint300Output DPI
--label-fontstrArialFont family for panel labels
--label-sizeint24Font size for panel labels
--label-positionstrtopleftLabel position: topleft, topright, bottomleft, bottomright
--padding / -pint10Padding between panels (pixels)
--border / -bint2Border width around each panel (pixels)
--bg-colorstrwhiteBackground color (white/black/hex)
--label-colorstrblackLabel text color

Supported Formats

  • Input: PNG, JPG, JPEG, BMP, TIFF, GIF
  • Output: PNG (recommended), JPG, TIFF

Quick Check

python -m py_compile scripts/main.py
python scripts/main.py --help
python -c "import PIL; print('Pillow OK')"

Error Handling

  • If fewer or more than 6 input images are provided, state the count mismatch and stop.
  • If any input file path contains ../ or points outside the workspace, reject with a path traversal warning.
  • If the task goes outside the documented scope, stop instead of guessing or silently widening the assignment.
  • If scripts/main.py fails (e.g., returncode=2 from missing required args), report the exact error and provide the correct command syntax.
  • If PIL/Pillow is not installed, print: pip install Pillow numpy and exit with a non-zero code.
  • Do not fabricate files, citations, or execution outcomes.

Fallback Template

When execution fails or inputs are incomplete, respond with this structure:

FALLBACK REPORT
───────────────────────────────────────
Objective      : [restate the goal]
Blocked by     : [exact missing input or error — e.g., only 4 of 6 panels provided]
Partial result : [what can be completed — e.g., layout plan, parameter defaults]
Assumptions    : [layout, DPI, label style assumed]
Constraints    : [format requirements, DPI minimum]
Risks          : [aspect ratio mismatch, font availability]
Unresolved     : [what still needs user input]
Next step      : [minimum action needed to unblock]
───────────────────────────────────────

Response Template

Use the following fixed structure for non-trivial requests:

  1. Objective
  2. Inputs Received
  3. Assumptions
  4. Workflow
  5. Deliverable
  6. Risks and Limits
  7. Next Checks

If the request is simple, compress the structure but keep assumptions and limits explicit when they affect correctness.

Notes

  • Input images are automatically resized to match the largest dimension while maintaining aspect ratio
  • For best results, use input images with similar aspect ratios
  • Label fonts require the font to be available on the system; Arial falls back to DejaVu Sans if unavailable
  • PNG output preserves transparency if any input images have alpha channels

Prerequisites

pip install Pillow numpy

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.87%
按下载量换算870

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills