fleet-updating-daily

Promote soak-cleared exclusions and reconcile pnpm lockfiles via Git PRs.

125|42|Updated May 19, 2025
One-click install
npx skills add https://github.com/SocketDev/socket-mcp --skill fleet-updating-daily
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: fleet-updating-daily
Source: https://github.com/SocketDev/socket-mcp/tree/main/.agents/skills/fleet-updating-daily
Command: npx skills add https://github.com/SocketDev/socket-mcp --skill fleet-updating-daily

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates daily fleet repository maintenance by promoting soak-cleared dependency exclusions and reconciling the lockfile to keep dependencies healthy and installable.

Core Features & Use Cases

  • Promotes soak-cleared entries whose 7-day window has passed.
  • Reconciles the pnpm lockfile after changes.
  • Opens a PR with updated lockfiles as part of routine fleet maintenance.

Quick Start

Invoke the daily fleet updating to promote soak-cleared exclusions and reconcile the lockfile.

Frequently Asked Questions about fleet-updating-daily

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate pnpm lockfile reconciliation in a monorepo?

Automating pnpm lockfile reconciliation in a monorepo requires running pnpm install to refresh the lockfile after promoting soak-cleared dependency exclusions. This keeps multi-package repository dependencies healthy and installable.

What are soak-exclusions in dependency management?

Soak-exclusions in dependency management are temporary bypasses for problematic packages tracked with dates. Once the 7-day window passes, soak-cleared entries are promoted back into the active fleet to maintain package health.

How do I open a PR with updated lockfiles for daily dependency maintenance?

To open a PR with updated lockfiles for daily dependency maintenance, the workflow promotes cleared exclusions, runs pnpm install to refresh the lockfile, and uses Git to create or update a pull request when changes occur.

Does this daily fleet maintenance workflow work with pnpm multi-package repositories?

Yes, this daily fleet maintenance workflow is designed for pnpm multi-package repositories. It applies specifically in daily update workflows for monorepos that use soak-exclusions to temporarily bypass problematic packages.

Why does my monorepo need a soak-excludes-have-dates script?

A monorepo needs a soak-excludes-have-dates script to automate validating and promoting temporary dependency bypasses. It ensures soak-cleared entries are safely promoted once their 7-day waiting window has passed.

What is the best way to manage temporary dependency bypasses in a monorepo?

The best way to manage temporary dependency bypasses in a monorepo is using a dated soak-exclusion system that automatically promotes cleared entries after 7 days. This approach keeps dependencies healthy while preventing problematic packages from blocking installations.