agentsync 1.14.5

A fast CLI tool to sync AI agent configurations and MCP servers across Claude, Copilot, Cursor, and more using symbolic links.
Documentation
{
	"$schema": "https://json.schemastore.org/semantic-release.json",
	"branches": ["main"],
	"tagFormat": "v${version}",
	"plugins": [
		[
			"@semantic-release/commit-analyzer",
			{
				"preset": "conventionalcommits",
				"releaseRules": [
					{ "type": "feat", "release": "minor" },
					{ "type": "fix", "release": "patch" },
					{ "type": "perf", "release": "patch" },
					{ "type": "refactor", "release": "patch" },
					{ "type": "docs", "scope": "README", "release": "patch" },
					{ "type": "build", "scope": "deps", "release": "patch" },
					{ "breaking": true, "release": "major" }
				]
			}
		],
		[
			"@semantic-release/release-notes-generator",
			{
				"preset": "conventionalcommits",
				"presetConfig": {
					"types": [
						{ "type": "feat", "section": "โœจ Features", "hidden": false },
						{ "type": "fix", "section": "๐Ÿ› Bug Fixes", "hidden": false },
						{ "type": "perf", "section": "๐Ÿš€ Performance", "hidden": false },
						{ "type": "refactor", "section": "โ™ป๏ธ Refactors", "hidden": false },
						{ "type": "docs", "section": "๐Ÿ“ Documentation", "hidden": false },
						{ "type": "build", "section": "๐Ÿ“ฆ Build", "hidden": false },
						{ "type": "chore", "section": "๐Ÿ”ง Maintenance", "hidden": true },
						{ "type": "test", "section": "๐Ÿงช Tests", "hidden": true },
						{ "type": "ci", "section": "โš™๏ธ CI/CD", "hidden": true }
					]
				}
			}
		],
		"@semantic-release/changelog",
		[
			"@semantic-release/exec",
			{
				"prepareCmd": "node scripts/update-versions.js ${nextRelease.version} && pnpm install --lockfile-only --no-optional && cargo check"
			}
		],
		[
			"@semantic-release/git",
			{
				"assets": [
					"CHANGELOG.md",
					"npm/agentsync/package.json",
					"Cargo.toml",
					"Cargo.lock",
					"pnpm-lock.yaml"
				],
				"message": "chore(release): ๐Ÿ”– ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
			}
		],
		[
			"@semantic-release/github",
			{
				"successComment": false,
				"failTitle": "Release failed",
				"releasedLabels": ["released"]
			}
		]
	]
}