reset-source-tracking

reset-source-tracking is a command for coding agents from forcedotcom/sf-skills. It costs 43 tokens per session (659 once invoked), scanned A, original, Apache-2.0.

A command that clears the Salesforce CLI's record of which local and org files have changed.

In plain words
What is it for?
Use it to reset source tracking on a personal scratch org or sandbox when the tracked state is no longer usable.
Why use it?
Afterward, the next push or pull treats all project metadata as new, which can cause broad deployments or retrieves and may overwrite shared work.

Command

Part of the salesforce-development plugin — 37 skills, 13 commands, 2 agents, 3 MCP servers 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 commands/forcedotcom/sf-skills/reset-source-tracking
Clone the repo
git clone --depth 1 https://github.com/forcedotcom/sf-skills

Or install salesforce-development, the plugin that ships this one along with the rest of its 37 skills, 13 commands, 2 agents, 3 MCP servers.

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 reset-source-tracking

README.md
[![agentmods](https://agentmods.dev/badge/commands/forcedotcom/sf-skills/reset-source-tracking.svg)](https://agentmods.dev/commands/forcedotcom/sf-skills/reset-source-tracking)
Your own site
<a href="https://agentmods.dev/commands/forcedotcom/sf-skills/reset-source-tracking"><img src="https://agentmods.dev/badge/commands/forcedotcom/sf-skills/reset-source-tracking.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 659 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.00043 $0.00659
Opus 5 $0.00022 $0.00329
Sonnet 5 $0.00009 $0.00132
Haiku 4.5 $0.00004 $0.00066

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

Security

Grade A, and why

reset-source-tracking 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.

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/builder/salesforce-development/commands/reset-source-tracking.md · 48 lines

How it starts

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

WARNING — Destructive operation. Resetting source tracking tells the SF CLI to forget every tracked change between your local project and the org. After reset:

  • A subsequent sf project deploy push will treat all local metadata as new and deploy everything.
  • A subsequent sf project retrieve start will treat all org metadata as new and retrieve everything.
  • On a shared sandbox, this can trigger unintended mass deploys or retrieves that overwrite other developers' in-progress work.

Only proceed if you are on a personal scratch org or developer sandbox that you own.

Workflow

  1. Resolve the target org. Parse $ARGUMENTS for --target-org <alias>. If not supplied, find the project's default:

    sf config get target-org --json
    

    Extract the value field. If no default is set, ask the user: "Which org alias should source tracking be reset for?"

  2. Confirm the target. Display the resolved alias clearly, e.g.:

    Target org: myDevSandbox Resetting source tracking is destructive on shared sandboxes. Type yes, reset source tracking for myDevSandbox to continue, or anything else to cancel.

    Wait for the user's reply. If the response does not match yes, reset source tracking for <alias> (case-insensitive), print "Cancelled — no changes made." and stop.

  3. Execute the reset:

    sf project reset tracking --target-org <alias> --json
    

    Parse the JSON result. On success the status field is 0 and result is an empty object {}.

  4. Report outcome. On success, print:

    Source tracking reset for <alias>. The CLI has cleared its local tracking state.

    On failure (non-zero status or an error key in the JSON), surface the error message verbatim so the user can diagnose.

  5. Post-reset guidance. Recommend previewing the full diff before deploying:

    Run sf project deploy preview --target-org <alias> --json to review everything that will be pushed to the org before you deploy.

Read the full file on GitHub · 48 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. yesterday First seen · 48 lines · 43 tokens per session scan A 887aa77fbc32

Subscribe to this mod's changes

reset-source-tracking is a command published in the GitHub repository forcedotcom/sf-skills (961 stars, last pushed yesterday), licensed Apache-2.0. It adds 43 tokens to every session and 659 once invoked, about $0.0002 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.