Files
wehub-resource-sync 41cb1c0170
OpenSSF Scorecard / scorecard (push) Failing after 0s
DCO / dco (push) Failing after 0s
CodeQL SAST / analyze (push) Failing after 1s
Deploy Pages / deploy (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:28:05 +08:00

26 lines
899 B
PowerShell

$ErrorActionPreference = 'Stop'
$packageName = 'codebase-memory-mcp'
$version = '0.8.1'
$url64 = "https://github.com/DeusData/codebase-memory-mcp/releases/download/v${version}/codebase-memory-mcp-windows-amd64.zip"
$checksum64 = 'a602ad090ed3f49d86c55472f73f27ad7055222806a82358f2e08513e027f00f'
$installDir = Join-Path $env:ChocolateyBinRoot $packageName
Install-ChocolateyZipPackage `
-PackageName $packageName `
-Url64bit $url64 `
-Checksum64 $checksum64 `
-ChecksumType64 'sha256' `
-UnzipLocation $installDir
# Shim the binary so it is on PATH
$binPath = Join-Path $installDir 'codebase-memory-mcp.exe'
Install-BinFile -Name 'codebase-memory-mcp' -Path $binPath
# Configure coding agents (non-fatal)
try {
& $binPath install -y 2>&1 | Out-Null
} catch {
Write-Warning "Agent configuration failed (non-fatal). Run manually: codebase-memory-mcp install"
}