# Send Scientific Graphical Abstract Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "scientific-graphical-abstract-skill",
    "name": "Scientific Graphical Abstract Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/JackKuo666/scientific-graphical-abstract-skill",
    "canonicalUrl": "https://clawhub.ai/JackKuo666/scientific-graphical-abstract-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/scientific-graphical-abstract-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=scientific-graphical-abstract-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "graphical_abstract_generator.py",
      "requirements.txt"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/scientific-graphical-abstract-skill"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/scientific-graphical-abstract-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/scientific-graphical-abstract-skill",
    "agentUrl": "https://openagent3.xyz/skills/scientific-graphical-abstract-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/scientific-graphical-abstract-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/scientific-graphical-abstract-skill/agent.md"
  }
}
```
## Documentation

### Scientific Graphical Abstract Generator

AI-Powered Scientific Visualization Tool - Generate editable graphical abstracts for research papers

### Description

Generate professional graphical abstracts for scientific papers using multiple AI models. This skill transforms research descriptions and data into publication-quality, editable SVG visualizations.

### Features

Multiple AI Models: Support for Claude, GPT-4o, DeepSeek, and other multimodal models
Editable SVG Output: Generate vector graphics that can be edited in Inkscape, Illustrator, or any SVG editor
Multiple Chart Types: Bar charts, line charts, pie charts, scatter plots, flowcharts, diagrams
Data-Driven Visuals: Automatically create charts from CSV/JSON data
Customizable Styles: Adjust colors, fonts, layouts to match journal requirements
Publication Ready: High-quality output suitable for scientific journals

### Usage

/graphical-abstract Generate a graphical abstract showing the research workflow for a CRISPR gene editing study
/graphical-abstract Create a bar chart comparing the performance of three different machine learning models from this data: [data]
/graphical-abstract Design a flowchart illustrating the mechanism of action of the proposed drug
/graphical-abstract Generate a line chart showing temperature changes over time from the following CSV data

### Generate Research Workflow Diagram

/graphical-abstract Create a graphical abstract showing the workflow: Sample preparation → RNA extraction → Sequencing → Data analysis → Results visualization. Use a clean, professional style with blue color scheme.

### Create Data Visualization

/graphical-abstract Generate a bar chart with the following data:
Model A: 85% accuracy
Model B: 92% accuracy
Model C: 78% accuracy

Title: Model Performance Comparison
Y-axis: Accuracy (%)
Color scheme: Professional blue gradient

### Generate Mechanism Diagram

/graphical-abstract Design a schematic diagram showing how the proposed inhibitor binds to the active site of the enzyme, blocking substrate access. Include labels for key components.

### generate

Generate a graphical abstract.

OptionDescription--promptDescription of what to visualize--dataData file (CSV/JSON) for charts--typeChart type: bar, line, pie, scatter, flowchart, diagram--modelAI model: claude, gpt4o, deepseek (default: claude)--styleStyle: minimal, professional, colorful, journal--outputOutput SVG file path--widthCanvas width (default: 800)--heightCanvas height (default: 600)

### template

Use predefined templates for common visualizations.

OptionDescription--typeTemplate type: workflow, mechanism, comparison, timeline--promptSpecific requirements

### Claude (Recommended)

Best for: Complex diagrams, scientific illustrations
Vision capabilities: Excellent
API: Anthropic Claude API

### GPT-4o

Best for: Charts, data visualization
Vision capabilities: Very good
API: OpenAI API

### DeepSeek

Best for: Technical diagrams, cost-effective
Vision capabilities: Good
API: DeepSeek API

### Output Format

All outputs are in SVG format which offers:

Editable: Open in Inkscape, Adobe Illustrator, or any text editor
Scalable: Infinite resolution without quality loss
Web-ready: Can be embedded directly in websites
Publication quality: Meets most journal requirements

Example SVG structure:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600">
  <!-- Editable elements with clear structure -->
  <g id="chart-area">...</g>
  <g id="labels">...</g>
  <g id="legend">...</g>
</svg>

### Notes

For complex visualizations, provide detailed descriptions
Data files should be in CSV or JSON format
SVG files can be edited after generation
Different models may produce different styles
Journal-specific requirements can be specified in the prompt

### Related Skills

sci-data-extractor - Extract data from scientific papers
semanticscholar-search-skill - Search academic papers
pubmed-search-skill - Search biomedical literature
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: JackKuo666
- Version: 0.1.2
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/scientific-graphical-abstract-skill)
- [Send to Agent page](https://openagent3.xyz/skills/scientific-graphical-abstract-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/scientific-graphical-abstract-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/scientific-graphical-abstract-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/scientific-graphical-abstract-skill)