ttm-update

ttm-update is a skill for Claude Code from ranjanrishikesh/taketomarket. It costs 32 tokens per session (1,768 once invoked), scanned C, original, MIT.

An update workflow for the takeToMarket installation. It compares the installed version with the npm registry, selects an upgrade path, and reconciles local skill edits with the newer source.

In plain words
What is it for?
Checking for newer releases, upgrading npm or Git installations, and reviewing changes to locally edited skill files.
Why use it?
It helps keep takeToMarket current while showing differences before locally changed files are replaced.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the AskUserQuestion tool.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the taketomarket plugin — 40 skills, 1 hook shipped together

Good fit Checking for newer releases, upgrading npm or Git installations, and reviewing changes to locally edited skill files.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ranjanrishikesh/taketomarket
Claude Code
/plugin install taketomarket

Made for: Claude Code.

Or install taketomarket, the plugin that ships this one along with the rest of its 40 skills, 1 hook.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ranjanrishikesh/taketomarket/ttm-update/github.svg)](https://agentmods.dev/skills/ranjanrishikesh/taketomarket/ttm-update)
Your own site
<a href="https://agentmods.dev/skills/ranjanrishikesh/taketomarket/ttm-update"><img src="https://agentmods.dev/badge/skills/ranjanrishikesh/taketomarket/ttm-update/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 ttm-update

Your own site · 80×15
<a href="https://agentmods.dev/skills/ranjanrishikesh/taketomarket/ttm-update"><img src="https://agentmods.dev/badge/skills/ranjanrishikesh/taketomarket/ttm-update.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,768 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00032 $0.01768
Opus 5 $0.00016 $0.00884
Sonnet 5 $0.00006 $0.00354
Haiku 4.5 $0.00003 $0.00177

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

Security

Grade C, and why

ttm-update scanned grade C 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 9d 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.

Recursive force deletehighDestructive command

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

rm -rf .marketing
skills/ttm-update/SKILL.md · 178 lines

How it starts

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

/ttm-update

Step 0: First-run inline education

Read .taketomarket/CONFIG.md. Parse first_run_seen (object) and inline_education (boolean, default true).

If inline_education is false: skip this step. Else if first_run_seen.ttm-update is not true, print the explainer below verbatim, then mark this skill as seen:

node "${CLAUDE_PLUGIN_ROOT}/bin/ttm-tools.cjs" first-run mark ttm-update

Use this exact check (bash) to decide whether to print: node "${CLAUDE_PLUGIN_ROOT}/bin/ttm-tools.cjs" first-run check ttm-update --raw -- the JSON seen field is true once the explainer has run before.

Explainer for /ttm-update

/ttm-update checks your installed takeToMarket version against the npm registry, detects whether you installed via npm or git clone, runs the appropriate upgrade path, then reconciles any locally-edited skill files against the new source and offers per-file diffs.

Why it matters: skills evolve quickly and an out-of-date install silently misses gate improvements and bug fixes. This skill is the opinionated upgrader -- it knows the right command for your install method and preserves your local edits behind explicit prompts rather than overwriting them.

(Canonical source: references/inline-education-blurbs.md. Embedded verbatim because workflows do not @-resolve files at runtime.)


Check if takeToMarket needs updating and upgrade if available.

Step: Detect install method

Detect how the user installed takeToMarket before deciding how to upgrade. Run this FIRST, before any version or legacy-folder work:

node "${CLAUDE_PLUGIN_ROOT}/bin/ttm-tools.cjs" install-detect --raw

Parse the JSON method field. The value will be one of:

  • clone — installed via git clone. Upgrades happen with git pull in the plugin root, then re-running the installer (node install.js or npx taketomarket@latest --yes from the cloned directory).
  • npm — installed via npx taketomarket or npm install -g taketomarket. Upgrades happen via npx taketomarket@latest --yes.
  • unknown — could not locate a plugin root. Print manual instructions and ask the user where takeToMarket is installed before continuing:
    Could not auto-detect your takeToMarket install location.
    Manual upgrade options:
      - npm:   npx taketomarket@latest --yes
      - clone: cd <your-clone>; git pull; node install.js
    
    Halt the workflow until the user confirms the method to use.

Read the full file on GitHub · 178 lines

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 · 178 lines · 32 tokens per session scan C b4d18527fea4

Subscribe to this mod's changes

ttm-update is a skill published in the GitHub repository ranjanrishikesh/taketomarket (16 stars, last pushed 3mo ago), licensed MIT. It adds 32 tokens to every session and 1,768 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

citedy-content-writer

From topic to published blog post in one conversation — generate SEO- and GEO-optimized articles with AI illustrations and voice-over in 55 languages, create social media adaptations for 9 platforms, set up automated content sessions, and manage product knowledge base. End-to-end blog autopilot. Powered by Citedy.

citedy/adclaw · 70 tokens

competitor-social-research

Use when the user wants to research competitors' social media strategy, compare brands or creators, find what content is working in a niche, identify content gaps, or produce a practical social strategy brief from public social data.

ScrapeCreators/social-media-research-skills · 49 tokens

linkedin-reply-handler

Draft a reply to a specific existing LinkedIn comment from its URL. Use when the user wants to reply to a comment on any post, or follow up after an author replied to them. Parses the commentUrn, resolves the correct parentComment target (LinkedIn flattens threads to 2 levels), and posts via Publora on approval. Not…

sergebulaev/linkedin-skills · 88 tokens

influencer-prospecting

Use when the user wants to find creators, influencers, affiliates, or social accounts in a niche for outreach, partnerships, sponsorships, UGC, seeding, or competitive research. Produces scored prospect lists from public social data.

ScrapeCreators/social-media-research-skills · 54 tokens

c2pa-metadata

Embed a C2PA provenance manifest into an AI-generated marketing asset (PNG, JPG, WebP, GIF, TIFF, MP4, MOV, WebM, MP3, WAV, PDF) via scripts/embed-c2pa.py — produces a signed copy of the file carrying IPTC digital-source-type AI claims, an optional c2pa.ai-disclosure assertion for EU AI Act Article 50 (applicable 2…

indranilbanerjee/digital-marketing-pro · 183 tokens

linkedin-employee-advocacy

Stand up and run a LinkedIn employee advocacy program for a marketing or sales team. Covers 14-day launch playbook, brand-guideline governance, per-post time budget, cadence benchmarks, and team ROI (reach, engagement, pipeline). Triggers on "employee advocacy", "get the team posting", "scale LinkedIn across team"…

sergebulaev/linkedin-skills · 82 tokens