Github Sync Version Alignment Strategy

Sub-skill of github-sync: Version Alignment Strategy (+1).

vamseeachanta 774b5b5 785 B Updated

File contents

Version Alignment Strategy (+1)

Version Alignment Strategy

const syncStrategy = {
  nodeVersion: ">=20.0.0",  // Align to highest requirement
  dependencies: {
    "typescript": "^5.0.0",  // Use latest stable
    "jest": "^29.0.0"
  },
  engines: {
    aligned: true,
    strategy: "highest_common"
  }
};

Documentation Sync Pattern

const docSyncPattern = {
  sourceOfTruth: "primary-repo/AGENTS.md",
  targets: [
    "secondary-repo/AGENTS.md",
    "tertiary-repo/AGENTS.md"
  ],
  customSections: {
    "secondary-repo": "Package-Specific Configuration",
    "tertiary-repo": "Local Customizations"
  }
};

vamseeachanta/workspace-hub/tree/main/.agents/skills/_archive/development/github/github-sync/version-alignment-strategy commit 774b5b5fac

Frequently asked questions

npx skillmds@latest add vamseeachanta/github-sync-version-alignment-strategy