Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add LINoone516/lino-agent-skills --skill lino-veusz-sci-plotgit clone --depth 1 https://github.com/LINoone516/lino-agent-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/linoone516/lino-agent-skills/lino-veusz-sci-plot)<a href="https://agentmods.dev/skills/linoone516/lino-agent-skills/lino-veusz-sci-plot"><img src="https://agentmods.dev/badge/skills/linoone516/lino-agent-skills/lino-veusz-sci-plot/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/linoone516/lino-agent-skills/lino-veusz-sci-plot"><img src="https://agentmods.dev/badge/skills/linoone516/lino-agent-skills/lino-veusz-sci-plot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00071 | $0.04460 |
| Opus 5 | $0.00036 | $0.02230 |
| Sonnet 5 | $0.00014 | $0.00892 |
| Haiku 4.5 | $0.00007 | $0.00446 |
Grade A, and why
lino-veusz-sci-plot scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.
lino-veusz-sci-plot — Veusz 科学绘图自动化(全图型)
用 Veusz(开源 Origin 替代品)把数据画成出版级科学图。环境:Veusz 4.x(官方免费,下载 https://veusz.github.io/download/ ;Windows 绿色版自带 Python + Qt + numpy,无需单独装 Python),官方 GPL 软件。下文以 Windows 为例,用 <veusz-exe> 代指 Veusz 可执行文件路径(如绿色版解压目录或安装版的 veusz.exe)。
运行方式(唯一正解)
Veusz 文档脚本是 Python 语法(不是 Veusz 命令语言),脚本文件里直接调用预置函数:Add / Set / SetData / SetData2D / SetDataExpression / ImportFileCSV / ImportFile / To / Export / Save,并预置 from numpy import *。执行:
$dir = "输出目录"; $script = "plot.py" # 脚本内容见下
$p = Start-Process -FilePath "<veusz-exe>" `
-ArgumentList "--export-option","dpi=300","--export","$dir\out.png","$dir\$script" `
-PassThru -NoNewWindow `
-RedirectStandardError "$dir\err.log" -RedirectStandardOutput "$dir\out.log"
$p.WaitForExit(60000) # 必须用 Start-Process + WaitForExit;直接管道/同步调用会触发工具 WaitDelay 误判
- 分辨率坑(重要):
--export模式下脚本里Export(..., dpi=300)的 dpi 参数被忽略、固定 100dpi → 出图偏小。必须命令行加--export-option dpi=300(或 600)。 - 页面尺寸坑:
Set('width','16cm'); Set('height','11cm')必须放在To('page1')之后(page 的设置,写在 Add('page') 之前无效)。16×11cm + 300dpi ≈ 1890×1300px 大图。出图后用 PIL 核对像素:python -c "from PIL import Image; print(Image.open('out.png').size)"。 - 脚本可含多个
Export()调用(PNG/PDF/SVG/EPS/TIFF/EMF 按扩展名);--export参数给出第一个文件名,脚本内 export 全部生效。 - 报错看
err.log(Python traceback)。--export渲染完自动退出(ExitCode=0)。 - 不要用
veusz --listen(Windows 绿色版管道 EOF 不退出,会挂死)。 - 装库:pip 源码装 veusz 需要 qmake,会失败 → 永远用绿色版 exe。
通用脚本骨架
# 1. 数据(任选)
SetData('x', arange(0, 10, 0.5)) # 1D
SetData('y', 5*exp(-0.3*x)) # 带对称误差:再 SetData('y (+-)', 误差数组)
SetData2D('z', Z, xrange=(0,100), yrange=(0,80)) # 2D(xedge/yedge/xcent/ycent 亦可)
SetDataText('labels', ['a','b']) # 文本数据集
ImportFileCSV('data.csv', 'x y_meas (+-) y_fit', linked=False) # CSV;descriptor 见下
# 2. 页面与画布
Set('width', '8cm'); Set('height', '6cm'); Set('colorTheme', 'colorbrewer1')
Add('page', name='page1', autoadd=False); To('page1')
Add('graph', name='g1', autoadd=False); To('g1')
Add('axis', name='x', autoadd=False); To('x'); Set('label', 'Time (s)'); To('..')
Add('axis', name='y', autoadd=False); To('y'); Set('label', 'Value'); Set('direction', 'vertical'); To('..')
# 3. 图元:Add('typename', name='p1', autoadd=False) → To('p1') → Set(...) → To('..')
# 4. 图例 / 导出
Add('key', name='key1', autoadd=False); To('key1')
Set('Border/hide', True); Set('horzPosn', 'right'); Set('vertPosn', 'top') # 位置: left/right/centre x top/bottom/centre;若被高柱子/高曲线盖住,改放柱子矮的一侧(见排查清单 2)
To('/')
Export('C:/path/out.png', dpi=150)
Export('C:/path/out.pdf', pdfdpi=150)
What ships with it
32 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/axisbroken.png 11 KB
- examples/axisbroken.py 515 B runs code
- examples/bar.png 10 KB
- examples/bar.py 763 B runs code
- examples/boxplot.png 8.5 KB
- examples/boxplot.py 747 B runs code
- examples/contour.png 27 KB
- examples/contour.py 637 B runs code
- examples/covariance.png 15 KB
- examples/covariance.py 771 B runs code
- examples/data.csv 181 B
- examples/fit.png 13 KB
- examples/fit.py 1013 B runs code
- examples/function.png 11 KB
- examples/function.py 517 B runs code
- examples/grid.png 12 KB
- examples/grid.py 952 B runs code
- examples/histo.png 12 KB
- examples/histo.py 580 B runs code
- examples/label_shape.png 9.4 KB
- examples/label_shape.py 900 B runs code
- examples/point3d.png 17 KB
- examples/point3d.py 555 B runs code
- examples/polar.png 32 KB
- examples/polar.py 450 B runs code
- examples/surface3d.png 34 KB
- examples/surface3d.py 438 B runs code
- examples/ternary.png 21 KB
- examples/ternary.py 530 B runs code
- examples/vectorfield.png 80 KB
- examples/vectorfield.py 651 B runs code
- README.md 3.5 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 125 lines · 71 tokens per session scan A 0567c66083e2
lino-veusz-sci-plot is a skill published in the GitHub repository LINoone516/lino-agent-skills (4 stars, last pushed 1mo ago), licensed MIT. It adds 71 tokens to every session and 4,460 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
origin-plotting
A guide to using Origin, a scientific graphing and analysis application, through connected tools. It covers writing data, making charts, formatting them, and viewing the results.
automodel
Guides the user in discovering a better model structure (e.g. from feature transformations in logistic regression to equation terms within PDEs to neural network layer compositions) out of data. Use when the user asks to create or improve an existing model. Uses an iterative meta/inner agent loop to explore structural…
pkpd-modeling
Pharmacokinetic and pharmacodynamic modelling and simulation - non-compartmental analysis, compartmental and population PK, PK/PD and exposure-response, TMDD, PBPK orientation, bioequivalence, allometric scaling and first-in-human dose, drug interaction prediction, and Bayesian therapeutic drug monitoring. Use when…
biopython
Comprehensive molecular biology toolkit. Use for sequence manipulation, file parsing (FASTA/GenBank/PDB), phylogenetics, and programmatic NCBI/PubMed access (Bio.Entrez). Best for batch processing, custom bioinformatics pipelines, BLAST automation. For quick lookups use gget; for multi-service integration use…
neuropixels-analysis
Analyze Neuropixels extracellular recordings end-to-end with SpikeInterface. Covers loading SpikeGLX/Open Ephys/NWB data, preprocessing, drift/motion correction, Kilosort4 (and CPU) spike sorting, quality metrics, and unit curation (threshold-based, model-based UnitRefine, and AI-assisted visual review). Use when…
onekgpd
Query the 1000 Genomes Project dataset (3,202 whole-genome-sequenced individuals, GRCh38) at the level of individual participants. Use when a question is about individuals or variants in the 1000 Genomes Project cohort: which individuals carry variants matching specific criteria in a gene or region, which individuals…