chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>codebase-memory-mcp</id>
|
||||
<version>0.8.1</version>
|
||||
<title>codebase-memory-mcp</title>
|
||||
<authors>DeusData</authors>
|
||||
<projectUrl>https://github.com/DeusData/codebase-memory-mcp</projectUrl>
|
||||
<licenseUrl>https://github.com/DeusData/codebase-memory-mcp/blob/main/LICENSE</licenseUrl>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<projectSourceUrl>https://github.com/DeusData/codebase-memory-mcp</projectSourceUrl>
|
||||
<bugTrackerUrl>https://github.com/DeusData/codebase-memory-mcp/issues</bugTrackerUrl>
|
||||
<tags>mcp ai claude code-intelligence codebase developer-tools tree-sitter llm</tags>
|
||||
<summary>Fast code intelligence engine for AI coding agents</summary>
|
||||
<description>
|
||||
codebase-memory-mcp is a single static binary MCP server that indexes codebases at
|
||||
extreme speed and exposes 14 MCP tools for AI coding agents.
|
||||
|
||||
Full indexes an average repository in milliseconds, the Linux kernel (28M LOC) in
|
||||
3 minutes. Answers structural queries in under 1ms. Supports 159 languages via
|
||||
vendored tree-sitter grammars. Zero dependencies. Plug and play across 11 coding
|
||||
agents including Claude Code, Codex CLI, Gemini CLI, and Zed.
|
||||
|
||||
After installation, run:
|
||||
|
||||
codebase-memory-mcp install
|
||||
|
||||
to configure your coding agents automatically.
|
||||
</description>
|
||||
<releaseNotes>https://github.com/DeusData/codebase-memory-mcp/releases/tag/v0.8.1</releaseNotes>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="tools\**" target="tools" />
|
||||
</files>
|
||||
</package>
|
||||
@@ -0,0 +1,25 @@
|
||||
$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"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
$ErrorActionPreference = 'Stop'
|
||||
|
||||
$packageName = 'codebase-memory-mcp'
|
||||
$installDir = Join-Path $env:ChocolateyBinRoot $packageName
|
||||
|
||||
Uninstall-BinFile -Name 'codebase-memory-mcp'
|
||||
|
||||
if (Test-Path $installDir) {
|
||||
Remove-Item $installDir -Recurse -Force
|
||||
}
|
||||
Reference in New Issue
Block a user