Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

tarsiertarsier 命令行

Agent Skill

tarsier 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

442

周安装

19

GitHub Stars

13

下载量

155
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:tarsier(tarsier 命令行)
来源仓库:https://github.com/jpcaparas/skills
仓库路径:skills/tarsier
安装命令:
npx skills add https://github.com/jpcaparas/skills --skill tarsier
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill tarsier

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或命令执行。
  • 支持 Codex、Claude、Cursor、Gemini CLI,通过 GitHub 安装。

SKILL.md

Tarsier

One-shot creative generator. Produces a complete SVG of a tarsier riding a bicycle, a rasterized 500×500 PNG with padding on white, and a markdown transcript recording what was made and how.

Invocation

/tarsier

No arguments. The prompt is static and never changes. Model name and reasoning level come from the harness when it exposes them.

What you produce

Three files in a new folder under the caller's current working directory:

{DIR}/
├── {BASE}.svg     # the raw SVG you authored
├── {BASE}.png     # 500x500 raster, 16px padding, white background
└── {BASE}.md      # transcript with metadata and the full SVG source

{BASE} follows the pattern tarsier-<model>-<reasoning>-<NZST-timestamp>.

Execution

Follow these steps in order. Each step has a verification cue — don't skip it.

Step 1 — Setup

  1. Model name: Read the current model ID from harness metadata. Strip any context-window suffix in brackets (e.g. claude-opus-4-6[1m]claude-opus-4-6). When the harness does not expose a model ID, use unknown-model.
  2. Reasoning level: Read the active reasoning or effort level from harness metadata or the conversation. When unavailable, use default.
  3. Timestamp (NZST): TZ='Pacific/Auckland' date '+%Y%m%dT%H%M%S'
  4. Construct base name: tarsier-{model}-{reasoning}-{timestamp} — all lowercase, hyphen-separated.
  5. Create the output folder in the current working directory: mkdir -p./{BASE}

Step 2 — Generate the SVG

Respond to the prompt below as if it were the only instruction given. No embellishment, no negotiation, no asking the user for style guidance:

Generate an SVG of a tarsier riding a bicycle

Write your SVG to {DIR}/{BASE}.svg.

Technical requirements (for rasterization compatibility only — these do not constrain the art):

  • Complete <svg> element with xmlns="http://www.w3.org/2000/svg"
  • Include a viewBox attribute
  • No text or prose outside the SVG markup itself
  • Self-contained — no external image refs, no external font imports

A tarsier is a small nocturnal primate with huge round eyes, long fingers, a long tail, and a small furry body. Show it clearly on a bicycle. Beyond that, the art direction is up to you — detail level, style, and colour are intentionally unconstrained.

Step 3 — Rasterize to PNG

Run the rasterization script from this skill's scripts/ directory. The script wraps the SVG in a 500×500 white canvas with 16px padding so projectors and blog thumbnails render it consistently:

python3 <skill-dir>/scripts/rasterize.py "{DIR}/{BASE}.svg" "{DIR}/{BASE}.png"

<skill-dir> is the path where this skill was installed. If the harness does not expose it, resolve scripts/rasterize.py relative to the location of this SKILL.md file.

Verify the PNG was created and is non-empty:

test -s "{DIR}/{BASE}.png" && echo "PNG OK: $(wc -c < "{DIR}/{BASE}.png") bytes"

Step 4 — Write the transcript

Write {DIR}/{BASE}.md with this exact format (replace bracketed fields, keep the structure):

# Tarsier

| Field | Value |
|-------|-------|
| Date | {NZST datetime, e.g. 2026-04-10T14:30:45 NZST} |
| Model | {model} |
| Reasoning | {reasoning} |
| Prompt | Generate an SVG of a tarsier riding a bicycle |

## SVG Output

​```svg
{the complete SVG code — verbatim from Step 2}
​```

Step 5 — Report

Tell the user the output folder and list its contents. Example:

./{BASE}/
├── {BASE}.svg
├── {BASE}.png  (500x500)
└── {BASE}.md

Do not offer to upload, deploy, share, or host the output. Do not ask the user if they want another variant. The skill is one-shot by design.

The prompt

The prompt is always exactly:

Generate an SVG of a tarsier riding a bicycle

It is static. Do not paraphrase it in the transcript. Do not expand it with extra guidance inside your own reasoning. The value of a one-shot generator is that the input is fixed; the SVG is the only variable.

Naming convention

tarsier-<model>-<reasoning>-<NZST-timestamp>

  • Model: harness-reported model ID, lowercase with hyphens. unknown-model when unavailable. Strip context-window suffixes like [1m].
  • Reasoning: effort level for this session, lowercase (default, low, standard, high, thinking, etc.).
  • Timestamp: NZST in YYYYMMDDTHHmmSS format (no punctuation between date and time parts).

Example: tarsier-claude-opus-4-6-default-20260410T143045

Gotchas

1. rsvg-convert must be installed. The rasterization script shells out to rsvg-convert (from librsvg). On macOS: brew install librsvg. On Debian/Ubuntu: apt install librsvg2-bin. If the binary is missing the script will fail at Step 3 with a non-zero exit code — surface that error to the user instead of silently skipping the PNG.

2. SVGs without a viewBox will be cropped. The rasterizer extracts viewBox and falls back to width/height attributes. If neither exists it assumes 0 0 100 100, which almost always cuts off the drawing. Always include a viewBox — this is the single most common cause of a blank or clipped PNG.

3. Do not put anything outside the <svg> element. The rasterizer only copies content between <svg...> and </svg>. HTML comments, prose, or a DOCTYPE before the SVG tag will be silently discarded. Put comments inside the SVG with <!--... --> if you need them.

4. Timestamp must be NZST, not UTC or local. The TZ='Pacific/Auckland' prefix is intentional so outputs sort consistently across machines regardless of where the harness runs. Omitting it will produce inconsistent folder names across runs.

5. The prompt is frozen, the art is variable. The point of a one-shot generator is that the input never changes. Do not add creative guidance ("make it detailed", "use flat colours") to your own interpretation — the variance between runs is supposed to come from the model, not from you editorialising the prompt.

6. Output folder lives in the caller's CWD. mkdir -p./{BASE} creates the folder where the user invoked the command, not inside the skill directory. This is deliberate — users expect their files next to whatever they were working on.

Files in this skill

  • scripts/rasterize.py — SVG → 500×500 PNG wrapper. Executed in Step 3. Do not modify per-run.
  • evals/evals.json — test cases for the skill (smoke, edge, negative, disclosure).
  • templates/transcript.md — the transcript format from Step 4 as a ready-to-fill template.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.05%
按下载量换算51

Claude

30.15%
按下载量换算47

Cursor

20.92%
按下载量换算32

Gemini CLI

10.24%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills