forge-reconcile

forge-reconcile is a skill for Claude Code from SidCorp-co/forge. It costs 77 tokens per session (1,305 once invoked), scanned A, original, Apache-2.0.

A Forge update-pipeline agent that decides how a proposed change should affect an adopted skill. It reads a reconciliation run, chooses no-op, apply, apply-with-adaptation, or escalate, and records that decision.

In plain words
What is it for?
Use it to evaluate incoming skill updates and either apply them, adapt them to the project, leave the current version unchanged, or request escalation.
Why use it?
It compares the observed skill, proposed update, project rules, and incident-based constraints before changing anything. Recording a verdict prevents an update run from staying unfinished.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

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/sidcorp-co/forge/forge-reconcile
Any agent
npx skills add SidCorp-co/forge --skill forge-reconcile
Clone the repo
git clone --depth 1 https://github.com/SidCorp-co/forge

Made for: Claude Code.

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 forge-reconcile

README.md
[![agentmods](https://agentmods.dev/badge/skills/sidcorp-co/forge/forge-reconcile.svg)](https://agentmods.dev/skills/sidcorp-co/forge/forge-reconcile)
Your own site
<a href="https://agentmods.dev/skills/sidcorp-co/forge/forge-reconcile"><img src="https://agentmods.dev/badge/skills/sidcorp-co/forge/forge-reconcile.svg" alt="Measured on agentmods" height="20"></a>
Per session 77 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,305 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.1 $0.00077 $0.01305
Opus 5 $0.00039 $0.00652
Sonnet 5 $0.00015 $0.00261
Haiku 4.5 $0.00008 $0.00130

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

Security

Grade A, and why

forge-reconcile 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 5d 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.

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.

packages/core/skills/forge-reconcile/SKILL.md · 90 lines

How it starts

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

Forge Reconcile — Master Agent

Update Pipeline stage ② (Reconcile). You are the Master agent responsible for determining whether and how an update packet's change should be applied to this project's adopted skill body.

Your one job

Read the context bundle from the reconcile_run row (via forge_reconcile action=get), reason carefully, and call forge_reconcile action=record_verdict with exactly ONE of the four verdicts below.

You MUST record a verdict before this job ends — leaving the run in running state is a permanent stall.

Step 1 — Load the bundle

Call forge_reconcile action=get with the runId from your job payload (jobs.payload.reconcileRunId).

The bundle field is self-describing — read the keys. Three things you could NOT infer from them:

  • runningBody is the body observed on the project's device, not the copy Forge stores. If the two differ, the observed one is what actually runs.
  • mustNotBreak is absolute. Every entry came from an incident.
  • invariantSet is a hard constraint on your candidate body, not background reading.

Field-by-field reference, the C1–C5 refusal contract and worked examples: forge_guide get update-pipeline-reconcile, or fetch /api/guides/update-pipeline-reconcile.md.

Step 2 — Reason (do this IN WRITING, in your rationale)

Your rationale must address all four of these explicitly:

  1. Story → How: How does the change implement the story? Is the change coherent with the stated intent?
  2. Charter → How: Does the change conflict with any entry in the charter? If yes, explain the conflict and whether the new packet overrides it.
  3. Invariants → Still satisfied: Does the runningBody + change still satisfy every item in invariantSet? Work through each invariant.
  4. mustNotBreak → Preserved: Does the candidate body preserve every assertion in mustNotBreak?

Step 3 — Choose a verdict

Verdict When to use
no-op The running body already incorporates the change — no edit needed.
apply The change applies cleanly to the running body without violating charter/invariants. Write the full candidate body as a straightforward edit.
apply-with-adaptation The change's intent is sound but the running body has project-specific differences (from charter) that require adaptation. Adapt the change to preserve the project's intentional differences while still incorporating the update's core intent. intentClass=invariant changes MUST be incorporated even with adaptation.
escalate The change cannot be safely applied: it contradicts a non-revertable charter entry, violates an invariant, or requires owner judgment that is beyond automated reasoning.

Read the full file on GitHub · 90 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. 5d ago First seen · 90 lines · 77 tokens per session scan A f73d72a43186

Subscribe to this mod's changes

forge-reconcile is a skill published in the GitHub repository SidCorp-co/forge (5 stars, last pushed today), licensed Apache-2.0. It adds 77 tokens to every session and 1,305 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-08-31.

Related

Other skills, from other repositories

ship-and-babysit

End-to-end PR shipping workflow for tinyhumansai/openhuman: commit local changes, push to the user's fork, open or reuse a PR against main, then babysit CI and CodeRabbit feedback until the PR is green and clean. Use when the user asks to ship, open a PR, monitor CI, address review comments, or 'babysit' a branch.

tinyhumansai/openhuman · 83 tokens

ad-creative

When the user wants to generate, iterate, or scale ad creative — headlines, descriptions, primary text, or full ad variations — for any paid advertising platform. Also use when the user mentions 'ad copy variations,' 'ad creative,' 'generate headlines,' 'RSA headlines,' 'bulk ad copy,' 'ad iterations,' 'creative…

rondoflow/rondoflow · 142 tokens

ads

When the user wants help with paid advertising campaigns on Google Ads, Meta (Facebook/Instagram), LinkedIn, Twitter/X, or other ad platforms. Also use when the user mentions 'PPC,' 'paid media,' 'ROAS,' 'CPA,' 'ad campaign,' 'retargeting,' 'audience targeting,' 'Google Ads,' 'Facebook ads,' 'LinkedIn ads,' 'ad…

rondoflow/rondoflow · 135 tokens

ai-agent-job-marketplace

The job marketplace where bots hire bots. Post FREE or paid $WAGE jobs, with on-chain escrow, faucet rewards, referrals, judge staking, task inbox, smart matching, checkpoints, oversight, webhooks, onboarding, and human owner dashboard.

rondoflow/rondoflow · 56 tokens

ai-seo

When the user wants to optimize content for AI search engines, get cited by LLMs, or appear in AI-generated answers. Also use when the user mentions 'AI SEO,' 'AEO,' 'GEO,' 'LLMO,' 'answer engine optimization,' 'generative engine optimization,' 'LLM optimization,' 'AI Overviews,' 'optimize for ChatGPT,' 'optimize for…

rondoflow/rondoflow · 191 tokens

ab-testing

When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test…

rondoflow/rondoflow · 165 tokens