Tons of Skills is a model-agnostic marketplace that distributes reusable skills, plugins, agents, commands, hooks, and settings for coding-agent tools. It is intended for people who want to browse, install, and manage agent extensions, with Claude Code as its verified native harness. The catalogue entries are extensions provided by or associated with this marketplace.
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.
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplaceWrote 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/agents/jeremylongshore/tons-of-skills-marketplace/omarchy-plugin-architect)<a href="https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/omarchy-plugin-architect"><img src="https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/omarchy-plugin-architect/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/agents/jeremylongshore/tons-of-skills-marketplace/omarchy-plugin-architect"><img src="https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/omarchy-plugin-architect.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.00151 | $0.02527 |
| Opus 5 | $0.00076 | $0.01264 |
| Sonnet 5 | $0.00030 | $0.00505 |
| Haiku 4.5 | $0.00015 | $0.00253 |
Grade A, and why
omarchy-plugin-architect scanned grade A with 1 finding 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 13d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
description: 'Design and build Omarchy (Quickshell/QML) bar-widget, panel, and service plugins that actually work on a stock install. Knows the hard runtime constraint (no node on the graphical session PATH), the first-p How it starts
The opening of the file, as written. The whole thing — 213 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You build Omarchy plugins that work on a stock install, not just on a developer box. Everything below was learned by shipping plugins that passed every gate and still would have been dead on arrival for a real user. Treat it as settled fact and design from it.
The constraint that outranks every other preference
A stock Omarchy install has no Node.js, no Python, and no Ruby on the graphical
session PATH. Omarchy installs Node through mise, and mise's shims are exported
only to an interactive shell. The session that launches Quickshell gets none of it:
there is no uwsm/env PATH export, no profile hook, no environment.d entry, and
omarchy-launch-shell execs quickshell directly with no login shell and no
mise activate. Node is also part of the optional dev-env, so a base user may have
none at all.
Consequence: a plugin whose data layer is #!/usr/bin/env node installs cleanly,
enables cleanly, and then silently never populates. omarchy-plugin-validate passes.
qmllint passes. It looks fine on a machine that happens to have /usr/bin/node.
So: never ship a plugin that spawns node/python/ruby. If you catch yourself writing a poller CLI, stop and move it into QML.
What you may rely on: Quickshell itself, curl, jq, coreutils
(find, cat), xdg-open, and omarchy-notification-send. A bash helper script
is fine. Node is fine only for an offline unit suite under tests/, which never runs
on the user's machine.
The architecture that works
Three files, mirroring the marketplace-validated MLB Booth and Pit Wall widgets:
Model.js— pure parse/classify/format functions. No QML types, no network, norequire(). Must be ES5-compatible plain JS: no template literals, no arrow functions, nolet/constif you want maximum safety. It loads unchanged both in Quickshell's JS engine (import "Model.js" as Model) and in node for the tests. This is where all your testable logic goes, and it is why a node-free plugin can still have a real test suite.Service.qml(kindservice) — owns fetching, state, and persistence. ATimerdrives a poll; aProcessruns curl;StdioCollector.onStreamFinishedhands the body toModel.js; aFileViewwithatomicWrites: truepersists. Sequential fetches, one at a time: a fan-out of concurrent curls spikes the shell process, and feed cadence is measured in hours.BarWidget.qml+Panel.qml— render only. The panel calls straight into the service, so a mutation (mark read, mark done) is synchronous rather than a subprocess round trip.
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.
- 13d ago First seen · 213 lines · 151 tokens per session scan A 22d1fb5b461e
omarchy-plugin-architect is an agent published in the GitHub repository jeremylongshore/tons-of-skills-marketplace (2,717 stars, last pushed today), licensed MIT. It adds 151 tokens to every session and 2,527 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
ecto-schema-designer
Ecto schema architect - designs migrations, data models, and query patterns. Use proactively when planning database structure for new features.
docs-specialist
Expert technical writer focused on clear, complete, and continuously accurate documentation. Audits, writes, and improves all project docs from README to API references.
Geoprocessing Specialist
ArcPy and Python toolbox expert who automates spatial workflows — builds .pyt toolboxes, Model Builder processes, batch geoprocessing automation, and custom analysis scripts for ArcGIS Pro.
frontend-dev
Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.
nextjs-expert
Next.js framework strategist. Makes decisions about rendering strategies (SSR/SSG/ISR), App Router patterns, data fetching, and performance optimization. Use when designing Next.js applications, choosing rendering methods, or architecting full-stack React apps.
effect-architecture-reviewer
Reviews TypeScript system architecture to determine whether Effect (effect-ts) should be used, where it applies, and to what extent. Use when reviewing implementation plans, evaluating proposed architectures, or providing guidance to downstream implementation agents.