update

update is a skill for Claude Code, Codex from melodic-software/claude-code-plugins. It costs 80 tokens per session (1,549 once invoked), scanned A, original, MIT.

A maintenance tool for checking and updating a Firecrawl wrapper skill against the current firecrawl-cli package and its upstream instructions. Firecrawl is a web-crawling tool used to collect website content.

In plain words
What is it for?
It is for checking drift, reviewing upstream changes, and updating the wrapper from a working copy.
Why use it?
It helps maintainers find differences between the local wrapper and its upstream sources before applying an update.

Skill for Claude CodeCodex

Part of the firecrawl plugin — 2 skills shipped together

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.

agentmods
npx agentmods add skills/melodic-software/claude-code-plugins/update
Any agent
npx skills add melodic-software/claude-code-plugins --skill update
Clone the repo
git clone --depth 1 https://github.com/melodic-software/claude-code-plugins

Made for: Claude Code, Codex.

Or install firecrawl, the plugin that ships this one along with the rest of its 2 skills.

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 update

README.md
[![agentmods](https://agentmods.dev/badge/skills/melodic-software/claude-code-plugins/update.svg)](https://agentmods.dev/skills/melodic-software/claude-code-plugins/update)
Your own site
<a href="https://agentmods.dev/skills/melodic-software/claude-code-plugins/update"><img src="https://agentmods.dev/badge/skills/melodic-software/claude-code-plugins/update.svg" alt="Measured on agentmods" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,549 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00080 $0.01549
Opus 5 $0.00040 $0.00775
Sonnet 5 $0.00016 $0.00310
Haiku 4.5 $0.00008 $0.00155

Measured yesterday against content hash ca3bfc4fa4c3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/update.sh, scripts/update.test.sh), 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.

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.

plugins/firecrawl/skills/update/SKILL.md · 102 lines

How it starts

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

Pre-computed context

Last upstream sync: !grep -m1 '^- Last sync:' "${CLAUDE_SKILL_DIR}/UPSTREAM.md" >/dev/null 2>&1 && grep -m1 -o 'Last sync:.*' "${CLAUDE_SKILL_DIR}/UPSTREAM.md" 2>/dev/null || echo "never — run this skill with --check"

Purpose

Keep the /firecrawl:firecrawl wrapper skill in sync with its two upstream dependencies: the firecrawl-cli npm package (ships new versions roughly weekly) and the upstream canonical skill at https://www.firecrawl.dev/agent-onboarding/SKILL.md (evolves alongside it). The wrapper skill owns its content. Upstream is a source, not a parallel install.

Maintainer-facing: run this in a working-tree checkout of this plugin (the marketplace clone, or a directory loaded via --plugin-dir), never against an installed marketplace copy, the apply path rewrites UPSTREAM.md inside this skill directory, and consumers receive updates through /plugin marketplace update. Drift detection uses the sidecar UPSTREAM.md (SHA tracking): upstream SKILL.md is fetched fresh on --check and hashed; the sidecar records the prior hash for diff. No vendored snapshot is kept. The action is advisory, the two approval gates in Safety below keep every mutation behind an explicit yes. Do NOT auto-fire this skill. It is maintainer-invoked only.

Invocation

Invocation Effect
/firecrawl:update --check (default) Read-only drift report. Fetches upstream + npm metadata, compares against UPSTREAM.md. No mutations.
/firecrawl:update Full update pipeline with two approval gates

When to invoke, the modes, and the full update pipeline: read context/update-flow.md. The preservation invariants and safety guarantees below stay inline.

Preservation rules (for any skill-content integration)

These are the invariants an integration run must keep in the /firecrawl:firecrawl wrapper skill, in this exact form:

  • Single-line YAML description with Use when: and skip guidance phrase lists
  • Frontmatter fields: description, argument-hint, user-invocable: true, disable-model-invocation: false (no name. It defaults to the directory)
  • Pre-computed context block at top, using firecrawl --status for the health line
  • "Core pattern. Write to disk, Read selectively" rule: every non-trivial example writes to a mktemp-created spill file with -o, Reads selectively, and the spill file is removed after the Read (kept only when the user asked for the file itself)
  • "When NOT to use this skill" section with the doc-site-reader-first and synthesis-tool escalation ordering
  • The pointer to this maintainer update skill (/firecrawl:update), the wrapper skill delegates its update/drift concern here rather than carrying it inline
  • Gotchas section with the "don't run firecrawl init, don't run firecrawl login" prohibitions
  • Imperative tone, no marketing language

Read the full file on GitHub · 102 lines

Files

What ships with it

5 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. yesterday First seen · 102 lines · 80 tokens per session scan A ca3bfc4fa4c3

Subscribe to this mod's changes

update is a skill published in the GitHub repository melodic-software/claude-code-plugins (14 stars, last pushed yesterday), licensed MIT. It adds 80 tokens to every session and 1,549 once invoked, about $0.0004 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

phpunit-migration-test-reviewing

Internal sub-skill. Do not auto-activate. Use only when explicitly invoked by name by another skill or agent.

shopwareLabs/ai-coding-tools · 32 tokens

structuring-documentation

Use when writing, editing, auditing, splitting, or measuring Markdown documentation surfaces — README.md, AGENTS.md, CLAUDE.md, and docs/ siblings. Triggers include "is this doc too long", "split this README", "measure the docs", "where does this documentation belong", "audit the documentation", and any request to…

shopwareLabs/ai-coding-tools · 89 tokens

phpunit-unit-test-writing

Use this skill when the user asks to write, generate, create, or add PHPUnit unit tests for a Shopware 6 source class — phrases like "write unit tests for X", "generate tests for ClassName", "create PHPUnit tests", "add test coverage", "test this class", "cover this with tests", "I need tests for", "unit test this"…

shopwareLabs/ai-coding-tools · 187 tokens

phpunit-migration-test-generation

Use this skill when the user asks to generate, write, or create migration tests for a Shopware 6 migration class — phrases like "generate migration tests", "write a migration test", "create migration test", "test this migration", "test Migration1234Foo". Analyzes the source migration's SQL operations to pick an…

shopwareLabs/ai-coding-tools · 141 tokens

phpunit-test-reconciling

Internal sub-skill. Do not auto-activate. Use only when explicitly invoked by name by another skill or agent.

shopwareLabs/ai-coding-tools · 32 tokens

release-info-writing

Use this skill when the user is completing features, deprecations, or breaking changes in the Shopware core repository that affect external developers, or when they ask to write release info, upgrade entries, release notes, release documentation, or changelog entries — phrases like "write a release info entry for my…

shopwareLabs/ai-coding-tools · 154 tokens