arnesto: Skill for Cursor

.cursor/skills-cursor/share/SKILL.md

share is a skill for Cursor from saski/arnesto. It costs 70 tokens per session (915 once invoked), scanned A, original, Unlicense.

An instruction for saving a project as a private, versioned online copy that can later be restored, synchronized, or shared.

In plain words
What is it for?
Setting up a repository when needed and saving or backing up the current project to Cursor's hosted repository.
Why use it?
It protects work from being lost and gives the project a history of saved versions.

Skill for Cursor

Written for Cursor: installed under .cursor/.

This is saski/arnesto's own configuration. It tells Cursor how to work on arnesto itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything arnesto configures →

Reuse

Borrowing it

Nothing to install: this file belongs to saski/arnesto. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/saski/arnesto/main/.cursor/skills-cursor/share/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/saski/arnesto

Made for: Cursor.

Wrote 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.

agentmods badge for share

README.md
[![agentmods](https://agentmods.dev/badge/skills/saski/arnesto/share.svg)](https://agentmods.dev/skills/saski/arnesto/share)
Your own site
<a href="https://agentmods.dev/skills/saski/arnesto/share"><img src="https://agentmods.dev/badge/skills/saski/arnesto/share.svg" alt="Measured on agentmods" height="20"></a>
Per session 70 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 915 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00070 $0.00915
Opus 5 $0.00035 $0.00458
Sonnet 5 $0.00014 $0.00183
Haiku 4.5 $0.00007 $0.00092

Measured 3d ago against content hash c334e0425889, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

share 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 3d 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.

.cursor/skills-cursor/share/SKILL.md · 95 lines

How it starts

The opening of the file, as written. The whole thing — 95 lines — stays where its author put it; the contents beside it link to each section on GitHub.

share — save this project somewhere safe

The user may not know what git, a repo, or a remote is. Keep every message in plain language: the project gets an online copy that isn't public which they can restore, sync, or share later. Say "save"/"back up", not "push to remote". (A git-fluent user gets the same flow without the framing — this is the new-repo skill's flow in novice vocabulary.)

1. Look before you speak

git rev-parse --is-inside-work-tree 2>/dev/null
git remote -v
  • A remote already exists → the project is already backed up there. Offer to save the latest changes to it (commit + push) and stop. Do not create a second copy or touch the existing remote.
  • No git at all → fine; you will set it up silently in step 3.

2. One-line explanation

Tell the user, in one line, what you are about to do:

"I'll put this project in a repo — a saved, versioned copy you can restore or share later. It won't be public."

This skill saves the project in a Cursor-hosted repo. If the user explicitly asks for a different host, follow that request without using this skill.

Default to a repo named after the project folder (lowercase, dashes).

3. Set up and save

Before staging anything, list what would be committed (git status --porcelain or git ls-files -o --exclude-standard) and make sure .gitignore covers dependency directories and secrets (.env*, key and credential files). If anything that looks like a secret would be staged, ask before including it — never stage-and-push blind.

git init -b main   # only if not already a repo
git add -A && git commit -m "Initial commit"   # only if nothing committed

If origin is missing, unauthenticated, or outdated, first invoke the origin skill (synced at ~/.cursor/skills-cursor/origin/SKILL.md) — tell the user "setting up Cursor's repo tool first; you'll see each step" (the sign-in opens their browser; that part is theirs). Then:

origin repo create <name>
git remote add origin <clone URL printed by create>
git push -u origin main

Read the full file on GitHub · 95 lines

Changes

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.

  1. 3d ago First seen · 95 lines · 70 tokens per session scan A c334e0425889

Subscribe to this mod's changes

share is a skill published in the GitHub repository saski/arnesto (5 stars, last pushed today), licensed Unlicense. It adds 70 tokens to every session and 915 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories