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/bartholomej/node-csfd-api/implement_scraper_featurenpx skills add bartholomej/node-csfd-api --skill implement_scraper_featuregit clone --depth 1 https://github.com/bartholomej/node-csfd-apiWhat 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.00036 | $0.00455 |
| Opus 5 | $0.00018 | $0.00228 |
| Sonnet 5 | $0.00007 | $0.00091 |
| Haiku 4.5 | $0.00004 | $0.00046 |
Grade A, and why
Implement Scraper Feature 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 2d 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.
- **Action**: Use `curl` or open the page in a browser to inspect the element. What it actually says
Implement Scraper Feature
This skill guides you through the process of extracting a new piece of data from CSFD.cz.
1. Analyze the DOM
First, you need to find where the data is located in the HTML.
- Action: Use
curlor open the page in a browser to inspect the element. - Goal: Identify a unique CSS selector (class, ID, or structure).
2. Update the DTO (Data Transfer Object)
Define the shape of the new data.
- File:
src/dto/[entity].ts(e.g.,src/dto/movie.ts) - Action: Add the new field to the interface.
export interface CSFDMovie { // ... existing fields newField: string | null; }
3. Create a Helper Function
CRITICAL: Never write parsing logic inside the Service. Always use a helper.
-
File:
src/helpers/[entity].helper.ts -
Action: Create a pure function exported from the helper file.
import { HTMLElement } from 'node-html-parser'; export const getNewField = (el: HTMLElement): string | null => { const node = el.querySelector('.some-class'); return node ? node.innerText.trim() : null; };
4. Integrate into Service
- File:
src/services/[entity].service.ts - Action: Call the helper function inside the
build[Entity]method.// inside buildMovie method return { // ... newField: getNewField(el) };
5. Verification
- Action: Run the demo script to see if the data appears.
- Command:
npm run demo(you might need to modifydemo.tsto log the new field).
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.
- 2d ago First seen · 62 lines · 36 tokens per session scan A 644831ca7e67
Implement Scraper Feature is a skill published in the GitHub repository bartholomej/node-csfd-api (60 stars, last pushed 9d ago), licensed MIT. It adds 36 tokens to every session and 455 once invoked, about $0.0002 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 skills, from other repositories
lint-js
Lint JS/TS code only. Use before opening a PR when only JavaScript or TypeScript files were changed (no Rust).
electron-node-upgrade
Guide for performing Node.js version upgrades in the Electron project. Use when working on the roller/node/main branch to fix patch conflicts during e sync --3. Covers the patch application workflow, conflict resolution, analyzing upstream Node.js changes, building, running the Node.js test suite, and proper commit…
git-cleanup
Clean up local git branches and remotes accumulated from PR reviews. Use when the user asks to clean branches, remove stale remotes, or tidy up the local git state.
Shade dropdown surface contract
DropdownMenu, Select, and Popover share one visual recipe (bg-surface-elevated-2 + border-border/60 dark:border-border/30 + shadow-md). Change them together. Trigger when editing any of those three Shade files.
Shade ShadCN install
Guardrails for running pnpm dlx shadcn@latest add in Shade — never overwrite existing components, fresh branch first, swap raw colours for semantic tokens after integrating. Trigger when the user proposes a shadcn add, or when a fresh ShadCN-shaped file lands in apps/shade/src/components/ui.
Shade use primitives
Replace bare divs that only carry flex/grid/gap utilities with Shade primitives (Stack, Inline, Box, Grid, Container, Text). Use semantic gap="md" instead of gap-4. Trigger when editing TSX in Shade-consuming apps.