staged-bundle-fallback-chain-54b160 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited staged-bundle-fallback-chain-54b160 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Domain: safety-worktrees Trigger: Apply when you are creating a Git bundle for upload and you need a staged fallback chain from full history to a minimal seed that still fits the byte ceiling. Source Pattern: Distilled from reviewed repo-safety, packaging, and worktree-management patterns.
Attempt to bundle the full repo first (git bundle create --all), then inspect the resulting file size; if the artifact exceeds the configured limit, rerun the bundling command with a narrower base (HEAD). If HEAD still produces an oversized bundle, collapse to a squashed root commit (built from the stash tree when WIP exists) so you ship only the working tree snapshot without history. At every step log the rationale, and return the scope label (all, head, squashed) that succeeded so downstream uploaders know how much history is included.
git bundle create call and only stop when the artifact fits within the configured max bytes.HEAD^{tree} and bundle that single root, then update refs/seed/root so downstream consumers can find it.all, head, or squashed) in the upload metadata so receivers know whether history was preserved.If building an "export repository" CLI that feeds upstream tooling, call this skill to drive the bundling logic: start with the feature-flagged maxBytes, attempt --all, check the file size, retry with HEAD, and finally fall back to squashed-root while reporting the scope and bytes to the telemetry system.
git bundle create succeeds; skipping the size check leads to uploads that exceed quotas and fail at the network layer.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.