agentsclimarketplace

Diff project

Skill luiseiman/dotforge/skills/diff-project

Configuration governance for Claude Code. Bootstrap, audit, sync, and evolve .claude/ across projects.

Install
npx -y skills add luiseiman/dotforge --skill diff-project

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 8 stars8 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Shows what changed in dotforge since the project's last sync, to decide whether running /forge sync is worthwhile.

SKILL.md

2.6 KB, as published. Nobody here has run it

Diff Project

Show what changed in dotforge since the last synchronization of the current project.

Step 1: Identify project baseline

  1. Read $DOTFORGE_DIR/registry/projects.yml
  2. Find the current project by path (compare with $PWD)
  3. Get dotforge_version and last_sync
  4. If no dotforge_version is registered (null), report:
    Project not synced — no baseline to compare against.
    Run /forge sync to establish baseline.
    
    And stop.

Step 2: Verify local manifest

If .claude/.forge-manifest.json exists in the current project:

  1. Read it and get the version and file hashes
  2. For each file in the manifest, calculate shasum -a 256 <file> | cut -d' ' -f1
  3. Compare against the registered hash
  4. Report locally modified files (hash differs) and deleted files
  5. Use the manifest version as baseline (more precise than the registry)

If manifest does NOT exist, continue to Step 3 using git log.

Step 3: Detect changes in dotforge

Run in $DOTFORGE_DIR/:

git log --oneline v<version>..HEAD -- template/ stacks/

Where <version> is the tag corresponding to the project's dotforge_version.

If the tag does not exist, use last_sync as reference:

git log --oneline --since="<last_sync>" -- template/ stacks/

If there are no relevant commits, report:

dotforge has no changes in template/stacks since v<version>.
Project is up to date.

Step 4: Show change summary

For each modified file in template/ or relevant stacks/ for the project:

═══ DIFF dotforge: v<previous> → v<current> ═══
Project: <name> (last sync: <date>)

Files modified in dotforge:
  template/hooks/block-destructive.sh — <diff summary>
  template/rules/_common.md — <diff summary>
  stacks/python-fastapi/rules/backend.md — <diff summary>

Local files with modifications (vs manifest):
  .claude/rules/_common.md — hash differs from deployed

Filter stacks/ to show only the stacks used by the project (read from registry).

Step 5: Recommend action

If there are relevant changes:

Recommendation: run /forge sync to incorporate these changes.

If there are only cosmetic changes or changes in unused stacks:

Changes do not affect this project. Sync is not necessary.

Installation

This skill is installed automatically if the skills/ symlink already exists in ~/.claude/skills/. If not, create the symlink:

ln -sf $DOTFORGE_DIR/skills ~/.claude/skills

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.