quartz-multilang-site-maintenance

quartz-multilang-site-maintenance is a skill for Claude Code, Codex from pedroiff0/awesome-skills. It costs 90 tokens per session (3,908 once invoked), scanned C, original, MIT.

A maintenance workflow for a Quartz static site, a Markdown-based site generator that can publish notes to GitHub Pages.

In plain words
What is it for?
Use it to edit multilingual home pages, update cross-references, remove content safely, and verify publication.
Why use it?
It addresses the site's language-specific content rules and the difficulty of confirming changes through caches and redirects.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md.

Good fit Use it to edit multilingual home pages, update cross-references, remove content safely, and verify publication.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance
Install

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.

Any agent
npx skills add pedroiff0/awesome-skills --skill quartz-multilang-site-maintenance
Clone the repo
git clone --depth 1 https://github.com/pedroiff0/awesome-skills

Made for: Claude Code, Codex.

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 quartz-multilang-site-maintenance

README.md
[![agentmods](https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance/github.svg)](https://agentmods.dev/skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance)
Your own site
<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance/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.

agentmods 80×15 button for quartz-multilang-site-maintenance

Your own site · 80×15
<a href="https://agentmods.dev/skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance"><img src="https://agentmods.dev/badge/skills/pedroiff0/awesome-skills/quartz-multilang-site-maintenance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,908 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00090 $0.03908
Opus 5 $0.00045 $0.01954
Sonnet 5 $0.00018 $0.00782
Haiku 4.5 $0.00009 $0.00391

Measured 9d ago against content hash 13a30b0b5a60, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

quartz-multilang-site-maintenance scanned grade C with 2 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 9d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/verify-quartz-scripts.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

copy, THEN `rm -rf`. Never delete before copying — untracked generated output is

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

4. ONLY THEN check the live site: curl -sL "https://www.phrandrade.com/<lang>/?t=$(date +%s)"
skills/web/quartz-multilang-site-maintenance/SKILL.md · 224 lines

How it starts

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

Quartz Multilingual Site Maintenance

Maintain a Quartz (jackyzha0 fork) personal/academic site that publishes to GitHub Pages from a vault of Markdown notes. The distinctive part is NOT building Quartz — it's the conventions of THIS vault and the verification maze (CDN redirect + Varnish cache that makes "is it live yet?" hard to answer).

Vault layout and two CLAUDE.md files

This repo has TWO CLAUDE.md files and you must respect both:

  • CLAUDE.md (root) — motor/build/deploy (quartz-site fork, commands, i18n systems, media, deploy workflow, deletion guard).
  • content/CLAUDE.md — vault authoring (bilingual mirror, status of language rollout, frontmatter rules, the deletion trap, media note structure).

The content/ folder IS the real Obsidian vault the user edits AND the folder Quartz consumes. Edits made here are not a copy.

Language rollout status (important — do not over-build)

  • pt-br — primary, always complete.
  • en — partial; translated as time allows.
  • es, fr — ONLY the index.md exists (welcome stub with translation-in-preparation note plus a link back to pt-br). Do NOT author new content in es/ or fr/ unless asked; those pages 404 to a friendly translation-coming notice (quartz/components/pages/404.tsx).
  • i18n is TWO separate systems: (1) quartz/i18n/locales/* for UI chrome (fixed to pt-BR for the whole site — a known limitation), (2) content// folders for real page content with mirrored slugs (en/x <-> pt-br/x). The LanguageToggle only swaps the language URL segment.
  • To AUTO-TRANSLATE content// folders (pt-br media/research -> en/es/fr) preserving Markdown markup (headings, emojis, tables, bold, wikilinks), use the mt-markup-preserving-translation skill (self-hosted LibreTranslate + a parser that blinds markup). Remember es/fr are published on push (see ignorePatterns above).

Editing the 4 home/index pages

Root landing (content/index.md) is the language-chooser at /. Each content//index.md is that language's home. To keep them in sync:

  • Use Obsidian callouts > [!abstract] / > [!info] / > [!tip] — they render natively in Quartz. Inline HTML () also works.
  • Cross-reference pattern the user wanted: a callout on each home linking to an external short-resume portfolio, e.g. "Se veio do meu portfólio de projetos (…)". Keep the SAME callout on all 4 language index pages, translated.
  • For a SINGLE combined notice on the root index, put all 4 languages in ONE callout with 4 bulleted lines (BR/US/ES/FR flags) — that is what the user asked for the root alertinha.
  • To show ONLY one language's CV next to its repo card (not a list of all languages), use a 2-card grid: one card = , the other = Repositório do CV. Do not explain LaTeX compilation in the page body.
  • Removing a section (e.g. Blog + Projects) from a home = delete the carousel block AND the matching list item. Do it on all 4 languages so the carousels stay consistent.

Read the full file on GitHub · 224 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 224 lines · 90 tokens per session scan C 13a30b0b5a60

Subscribe to this mod's changes

quartz-multilang-site-maintenance is a skill published in the GitHub repository pedroiff0/awesome-skills (1 stars, last pushed 5d ago), licensed MIT. It adds 90 tokens to every session and 3,908 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). 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

hermes-self-evaluation

Use this skill when the user asks to audit, review, or optimize Hermes's own performance — analyzing session data, skills, configuration, costs, and usage patterns to identify improvements, automation opportunities, and system optimizations.

AtlasOmnia/donna-starter · 69 tokens

mnemosyne-maintenance

Use when: upgrading Mnemosyne, diagnosing slow/hung consolidation (mnemosynesleep), fixing missing embeddings, or troubleshooting import/version mismatches.

AtlasOmnia/donna-starter · 40 tokens

svix-sending-webhooks

Everything for working with Svix webhooks: first-time setup (API key, SDK install, first message), Dispatch (sending webhooks to your customers), Ingest (receiving third-party webhooks), Applications, Channels, customer UIDs, idempotency, App Portal embedding, operational webhooks, the Svix CLI, and — only when the…

svix/ai · 138 tokens

web-researcher

A guide for using a separate web-researcher agent. It applies only when someone explicitly asks that agent to research something.

javded-itres/Holix · 50 tokens

static-blog-deploy

A deployment tool for static blogs, which are websites built into files before they are hosted. It supports Hexo, Hugo, GitHub Pages, GitLab Pages, Vercel, and Netlify.

Morningstar202604/awesome-skillkit · 10 tokens

localize-text

Translates and localizes text for a target language, region, and audience — adapts idioms, units, currency, dates, examples, formality, and tone while preserving the original message. Use when the user asks to translate, localize, internationalize (i18n), or adapt content for a specific country, language, or cultural…

surfmind-space/awesome-surfmind · 76 tokens