refresh-seams

refresh-seams is a skill for Claude Code from waqas1412/claude-harness. It costs 143 tokens per session (2,691 once invoked), scanned A, original, MIT.

A procedure for rebuilding a map of how separate repositories in a multi-repository workspace connect to one another. It finds and verifies dependencies using evidence from files and line numbers.

In plain words
What is it for?
Discovering cross-repository links, checking each link against source files, and regenerating seam metadata and repository documentation.
Why use it?
It helps agents understand integration points without changing the product code.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md.

Part of the harness plugin — 9 skills, 16 agents, 2 hooks shipped together

Good fit Discovering cross-repository links, checking each link against source files, and regenerating seam metadata and repository documentation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waqas1412/claude-harness/refresh-seams
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 waqas1412/claude-harness --skill refresh-seams
Clone the repo
git clone --depth 1 https://github.com/waqas1412/claude-harness

Made for: Claude Code.

Or install harness, the plugin that ships this one along with the rest of its 9 skills, 16 agents, 2 hooks.

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 refresh-seams

README.md
[![agentmods](https://agentmods.dev/badge/skills/waqas1412/claude-harness/refresh-seams/github.svg)](https://agentmods.dev/skills/waqas1412/claude-harness/refresh-seams)
Your own site
<a href="https://agentmods.dev/skills/waqas1412/claude-harness/refresh-seams"><img src="https://agentmods.dev/badge/skills/waqas1412/claude-harness/refresh-seams/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 refresh-seams

Your own site · 80×15
<a href="https://agentmods.dev/skills/waqas1412/claude-harness/refresh-seams"><img src="https://agentmods.dev/badge/skills/waqas1412/claude-harness/refresh-seams.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 143 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,691 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 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.00143 $0.02691
Opus 5 $0.00072 $0.01345
Sonnet 5 $0.00029 $0.00538
Haiku 4.5 $0.00014 $0.00269

Measured 3d ago against content hash 5ed8abcb719e, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

refresh-seams 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 3d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (assets/build.py, assets/discover.workflow.js, assets/verify-map.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/harness/skills/refresh-seams/SKILL.md · 75 lines

How it starts

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

/refresh-seams: rebuild the workspace integration map

Discover, verify, and draw the cross-repo dependency graph. This skill never edits product code; it is grep-based evidence discovery plus mechanical verification plus map authoring. It is choreography: the main loop plans and delegates, hunter scan agents fan out concurrently, mechanical steps run as delegated helpers, and one strong agent redraws the map at the end. Do not build a coordinator or daemon. Invoking this skill by name is the explicit in-the-moment opt-in the global single-main-loop rule requires; it licenses the fan-out described below and nothing else.

Prerequisites and parameters

Read .claude/harness/seams/clusters.json (produced by workspace-init). It supplies: workspace root, the clusters map (name to repo-slug list), the vendored black-box set, excludes, the rulesFileConvention, and trackerPrefixes. Everything workspace-specific comes from this file; nothing about clusters, repo names, or hunter counts is hardcoded in this skill.

On first run, scaffold the pipeline assets from this skill's bundled assets/ into the workspace, but only if they are missing:

  • assets/discover.workflow.js to .claude/harness/seams/discover.workflow.js
  • assets/build.py to .claude/harness/seams/build.py
  • assets/cartographer-prompt.md to .claude/harness/seams/cartographer-prompt.md
  • assets/verify-map.sh to .claude/harness/seams/verify-map.sh A workspace-local copy ALWAYS wins over the bundled one: if .claude/harness/seams/discover.workflow.js already exists, use it as-is. This lets a workspace tune hunters, kinds, or budgets without editing the shared plugin. (Directory-scoped skill precedence separately lets a workspace ship its own refresh-seams skill that shadows this one; see MANIFEST.)

Scope argument

If given a scope (a cluster name, a subset of repo slugs, or a subset of hunter keys), pass it through as args.scope alongside args.config on the Workflow call in Phase 2 (Workflow(scriptPath, { args: { config, scope } })); discover.workflow.js reads both off the args global and filters both the hunter list and the flat cluster union down to the matching names before running discovery, then reconcile only those edges and merge into the existing seams.json rather than replacing untouched clusters. With no scope, pass only args: { config } and do a full rebuild (idempotent given the same code state).

Read the full file on GitHub · 75 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. 3d ago Changed · +1 lines 5ed8abcb719e
  2. 10d ago First seen · 74 lines · 143 tokens per session scan A d2bbb9af7c61

Subscribe to this mod's changes

refresh-seams is a skill published in the GitHub repository waqas1412/claude-harness (1 stars, last pushed 3d ago), licensed MIT. It adds 143 tokens to every session and 2,691 once invoked, about $0.0007 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-08-31.