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 agentmods add skills/dryvist/claude-code-plugins/workstation-offbox-backupnpx skills add dryvist/claude-code-plugins --skill workstation-offbox-backupgit clone --depth 1 https://github.com/dryvist/claude-code-pluginsWrote 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/dryvist/claude-code-plugins/workstation-offbox-backup)<a href="https://agentmods.dev/skills/dryvist/claude-code-plugins/workstation-offbox-backup"><img src="https://agentmods.dev/badge/skills/dryvist/claude-code-plugins/workstation-offbox-backup.svg" alt="Measured on agentmods" 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 | $0.00100 | $0.01003 |
| Opus 5 | $0.00050 | $0.00502 |
| Sonnet 5 | $0.00020 | $0.00201 |
| Haiku 4.5 | $0.00010 | $0.00100 |
Grade A, and why
workstation-offbox-backup 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 yesterday.
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 — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Workstation data → off-box backup pattern
A workstation app that continuously records data (activity trackers, recorders, local-first tools with a growing SQLite file) tends to grow an ever-larger local database plus a pile of bulk media. Left alone it bloats the machine and slows the app's own queries. The goal: keep the local store small and fast, never lose history, and keep old data directly accessible without a restore round-trip.
The trick is to split by what the data is for, and lean on infrastructure you already run rather than writing a custom uploader.
The split: searchable text vs. bulk bytes
| Data | Destination | Why |
|---|---|---|
| Searchable text (anything you'd query) | A log/search platform you already run | Indexed and retained centrally — far more searchable than a local file, and it doubles as the backup |
| Bulk media (large binary files) | Durable, snapshotted storage | Heavy, not searchable — just needs point-in-time copies |
Once a row's text is indexed centrally and its media is on durable storage, the local row is disposable — that's what makes aggressive local pruning safe.
Text → search platform (pull, don't push)
Most apps have no native log-forwarding sink. Rather than script an exporter, pull with a collector you already run against the app's local API or database on a schedule. Use a short collection window with a small overlap, and de-duplicate on the row's monotonic id — if rows are immutable, overlap plus dedup means no gaps and no duplicates, with no cursor state to maintain by hand.
If the app exposes only a local database file and no API, a filesystem/database-native collector is the equivalent pull — still declarative collector config, not a maintained script.
Bulk media → durable storage
Push media off-box with the app's own native sync if it has one (e.g. SFTP
to an existing host), otherwise a scheduled rsync. Land it on storage
that's already snapshotted and replicated — you inherit point-in-time
history and off-node durability for free instead of building your own. Run
the sync on a timer that fires on wake, so a machine that sleeps overnight
simply catches up the next time it's awake.
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.
- yesterday First seen · 92 lines · 100 tokens per session scan A 422d22613043
workstation-offbox-backup is a skill published in the GitHub repository dryvist/claude-code-plugins (3 stars, last pushed today), licensed Apache-2.0. It adds 100 tokens to every session and 1,003 once invoked, about $0.0005 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-04.
Other skills, from other repositories
google-cloud-storage-fuse
Mounts Cloud Storage buckets as a POSIX file system with Cloud Storage FUSE (gcsfuse). Use when interacting with gcsfuse: decide whether FUSE, native gs:// reads, or Filestore/Managed Lustre fits a workload, deploy tuned mounts on GKE, Compute Engine, or Cloud Run, enable and size file, stat, and list caches, tune…
azure-resource-manager-redis-dotnet
Azure Resource Manager SDK for Redis in .NET. Use for MANAGEMENT PLANE operations: creating/managing Azure Cache for Redis instances, firewall rules, access keys, patch schedules, linked servers (geo-replication), and private endpoints via Azure Resource Manager. NOT for data plane operations (get/set keys, pub/sub) …
aws-cloudformation-elasticache
Provides AWS CloudFormation patterns for ElastiCache Redis or Memcached infrastructure, including subnet groups, parameter groups, security controls, and cross-stack outputs. Use when designing cache tiers, high-availability replication groups, encryption settings, or reusable CloudFormation templates for application…
cis-aws-database-5.11
Ensure ElastiCache has Cluster Mode Enabled.
cis-aws-database-5.13
Ensure ElastiCache has automatic backups enabled.
cis-aws-database-5.12
Ensure ElastiCache is deployed across multiple Availability Zones (AZs).