Skip to content

Commit 95d09cc

Browse files
committed
phase 1
1 parent 3781787 commit 95d09cc

43 files changed

Lines changed: 62 additions & 15570 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ jobs:
514514
'dataLicense': 'CC0-1.0',
515515
'SPDXID': 'SPDXRef-DOCUMENT',
516516
'name': 'codebase-memory-mcp-${{ inputs.version }}',
517-
'documentNamespace': 'https://github.com/DeusData/codebase-memory-mcp/releases/${{ inputs.version }}',
517+
'documentNamespace': 'https://github.com/hodizoda/codebase-memory-mcp/releases/${{ inputs.version }}',
518518
'creationInfo': {
519519
'created': '$(date -u +%Y-%m-%dT%H:%M:%SZ)',
520520
'creators': ['Tool: codebase-memory-mcp-release-pipeline']
@@ -732,15 +732,15 @@ jobs:
732732
# Fetch public score and block release if repo health degrades below threshold.
733733
- name: OpenSSF Scorecard gate (minimum 4.0)
734734
run: |
735-
SCORE=$(curl -sf "https://api.scorecard.dev/projects/github.com/DeusData/codebase-memory-mcp" 2>/dev/null \
735+
SCORE=$(curl -sf "https://api.scorecard.dev/projects/github.com/hodizoda/codebase-memory-mcp" 2>/dev/null \
736736
| python3 -c "import json,sys; print(json.loads(sys.stdin.read()).get('score',0))" 2>/dev/null \
737737
|| echo "0")
738738
echo "OpenSSF Scorecard: $SCORE/10"
739739
if python3 -c "exit(0 if float('$SCORE') >= 4.0 else 1)" 2>/dev/null; then
740740
echo "=== Scorecard gate passed (>= 4.0) ==="
741741
else
742742
echo "BLOCKED: Scorecard $SCORE/10 is below minimum 4.0"
743-
echo "Check https://scorecard.dev/viewer/?uri=github.com/DeusData/codebase-memory-mcp"
743+
echo "Check https://scorecard.dev/viewer/?uri=github.com/hodizoda/codebase-memory-mcp"
744744
exit 1
745745
fi
746746
@@ -773,7 +773,7 @@ jobs:
773773
774774
# Build provenance
775775
REPORT+=$'**Build Provenance (SLSA)** — cryptographic proof each binary was built by GitHub Actions from this repo:\n'
776-
REPORT+=$'```\ngh attestation verify <downloaded-file> --repo DeusData/codebase-memory-mcp\n```\n\n'
776+
REPORT+=$'```\ngh attestation verify <downloaded-file> --repo hodizoda/codebase-memory-mcp\n```\n\n'
777777
778778
# Cosign
779779
REPORT+=$'**Sigstore cosign** — keyless signature verification:\n'
@@ -788,7 +788,7 @@ jobs:
788788
# SBOM
789789
REPORT+=$'**SBOM** — Software Bill of Materials (`sbom.json`) lists all vendored dependencies.\n\n'
790790
791-
REPORT+=$'See [SECURITY.md](https://github.com/DeusData/codebase-memory-mcp/blob/main/SECURITY.md) for full details.\n'
791+
REPORT+=$'See [SECURITY.md](https://github.com/hodizoda/codebase-memory-mcp/blob/main/SECURITY.md) for full details.\n'
792792
793793
# Append to release notes
794794
EXISTING=$(gh release view "$VERSION" --json body --jq '.body' --repo "$GITHUB_REPOSITORY")

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ Thanks to @halindrome, @bingh0, @mariomeyer, @kingchenc, @aaabramov, and @heraqu
6666

6767
## v0.5.3
6868

69-
See [GitHub release](https://github.com/DeusData/codebase-memory-mcp/releases/tag/v0.5.3).
69+
See [GitHub release](https://github.com/hodizoda/codebase-memory-mcp/releases/tag/v0.5.3).

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Contributions are welcome. This guide covers setup, testing, and PR guidelines.
99
**Prerequisites**: C compiler (gcc or clang), make, zlib, Git. Optional: Node.js 22+ (for graph UI).
1010

1111
```bash
12-
git clone https://github.com/DeusData/codebase-memory-mcp.git
12+
git clone https://github.com/hodizoda/codebase-memory-mcp.git
1313
cd codebase-memory-mcp
1414
git config core.hooksPath scripts/hooks # activates pre-commit security checks
1515
scripts/build.sh
@@ -105,7 +105,7 @@ If you add a new `system()`, `popen()`, `fork()`, or network call, it must be ju
105105

106106
## Good First Issues
107107

108-
Check [issues labeled `good first issue`](https://github.com/DeusData/codebase-memory-mcp/labels/good%20first%20issue) for beginner-friendly tasks with clear scope and guidance.
108+
Check [issues labeled `good first issue`](https://github.com/hodizoda/codebase-memory-mcp/labels/good%20first%20issue) for beginner-friendly tasks with clear scope and guidance.
109109

110110
## License
111111

Makefile.cbm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,9 @@ PIPELINE_SRCS = \
176176
src/pipeline/pass_envscan.c \
177177
src/pipeline/pass_compile_commands.c \
178178
src/pipeline/pass_infrascan.c \
179-
src/pipeline/httplink.c
179+
src/pipeline/httplink.c \
180+
src/pipeline/pass_servicelinks.c \
181+
src/pipeline/servicelink_stubs.c
180182

181183
# Traces module (new)
182184
TRACES_SRCS = src/traces/traces.c

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# codebase-memory-mcp
22

3-
[![GitHub Release](https://img.shields.io/github/v/release/DeusData/codebase-memory-mcp?style=flat&color=blue)](https://github.com/DeusData/codebase-memory-mcp/releases/latest)
3+
[![GitHub Release](https://img.shields.io/github/v/release/hodizoda/codebase-memory-mcp?style=flat&color=blue)](https://github.com/hodizoda/codebase-memory-mcp/releases/latest)
44
[![License](https://img.shields.io/badge/license-MIT-green)](LICENSE)
5-
[![CI](https://img.shields.io/github/actions/workflow/status/DeusData/codebase-memory-mcp/dry-run.yml?label=CI)](https://github.com/DeusData/codebase-memory-mcp/actions/workflows/dry-run.yml)
6-
[![Tests](https://img.shields.io/badge/tests-2042_passing-brightgreen)](https://github.com/DeusData/codebase-memory-mcp)
7-
[![Languages](https://img.shields.io/badge/languages-64-orange)](https://github.com/DeusData/codebase-memory-mcp)
8-
[![Agents](https://img.shields.io/badge/agents-10-purple)](https://github.com/DeusData/codebase-memory-mcp)
9-
[![Pure C](https://img.shields.io/badge/pure_C-zero_dependencies-blue)](https://github.com/DeusData/codebase-memory-mcp)
10-
[![Platform](https://img.shields.io/badge/macOS_%7C_Linux_%7C_Windows-supported-lightgrey)](https://github.com/DeusData/codebase-memory-mcp/releases/latest)
11-
[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/DeusData/codebase-memory-mcp/badge)](https://scorecard.dev/viewer/?uri=github.com/DeusData/codebase-memory-mcp)
5+
[![CI](https://img.shields.io/github/actions/workflow/status/hodizoda/codebase-memory-mcp/dry-run.yml?label=CI)](https://github.com/hodizoda/codebase-memory-mcp/actions/workflows/dry-run.yml)
6+
[![Tests](https://img.shields.io/badge/tests-2042_passing-brightgreen)](https://github.com/hodizoda/codebase-memory-mcp)
7+
[![Languages](https://img.shields.io/badge/languages-64-orange)](https://github.com/hodizoda/codebase-memory-mcp)
8+
[![Agents](https://img.shields.io/badge/agents-10-purple)](https://github.com/hodizoda/codebase-memory-mcp)
9+
[![Pure C](https://img.shields.io/badge/pure_C-zero_dependencies-blue)](https://github.com/hodizoda/codebase-memory-mcp)
10+
[![Platform](https://img.shields.io/badge/macOS_%7C_Linux_%7C_Windows-supported-lightgrey)](https://github.com/hodizoda/codebase-memory-mcp/releases/latest)
11+
[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/hodizoda/codebase-memory-mcp/badge)](https://scorecard.dev/viewer/?uri=github.com/hodizoda/codebase-memory-mcp)
1212

1313
**The fastest and most efficient code intelligence engine for AI coding agents.** Full-indexes an average repository in milliseconds, the Linux kernel (28M LOC, 75K files) in 3 minutes. Answers structural queries in under 1ms. Ships as a single static binary for macOS, Linux, and Windows — download, run `install`, done.
1414

@@ -32,7 +32,7 @@ High-quality parsing through [tree-sitter](https://tree-sitter.github.io/tree-si
3232

3333
## Quick Start
3434

35-
1. **Download** the binary for your platform from the [latest release](https://github.com/DeusData/codebase-memory-mcp/releases/latest):
35+
1. **Download** the binary for your platform from the [latest release](https://github.com/hodizoda/codebase-memory-mcp/releases/latest):
3636
- `codebase-memory-mcp-<os>-<arch>.tar.gz` — standard (MCP server only)
3737
- `codebase-memory-mcp-ui-<os>-<arch>.tar.gz` — with embedded graph visualization
3838

@@ -156,21 +156,21 @@ Every release includes `checksums.txt` with SHA-256 hashes. All binaries are sta
156156
**macOS / Linux:**
157157

158158
```bash
159-
curl -fsSL https://raw.githubusercontent.com/DeusData/codebase-memory-mcp/main/scripts/setup.sh | bash
159+
curl -fsSL https://raw.githubusercontent.com/hodizoda/codebase-memory-mcp/main/scripts/setup.sh | bash
160160
```
161161

162162
**Windows (PowerShell):**
163163

164164
```powershell
165-
irm https://raw.githubusercontent.com/DeusData/codebase-memory-mcp/main/scripts/setup-windows.ps1 | iex
165+
irm https://raw.githubusercontent.com/hodizoda/codebase-memory-mcp/main/scripts/setup-windows.ps1 | iex
166166
```
167167

168168
</details>
169169

170170
### Install via Claude Code
171171

172172
```
173-
You: "Install this MCP server: https://github.com/DeusData/codebase-memory-mcp"
173+
You: "Install this MCP server: https://github.com/hodizoda/codebase-memory-mcp"
174174
```
175175

176176
### Build from Source
@@ -188,7 +188,7 @@ You: "Install this MCP server: https://github.com/DeusData/codebase-memory-mcp"
188188
</details>
189189

190190
```bash
191-
git clone https://github.com/DeusData/codebase-memory-mcp.git
191+
git clone https://github.com/hodizoda/codebase-memory-mcp.git
192192
cd codebase-memory-mcp
193193
scripts/build.sh # standard binary
194194
scripts/build.sh --with-ui # with graph visualization

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Users can independently verify any release binary:
6363

6464
```bash
6565
# SLSA provenance (proves binary came from this repo's CI)
66-
gh attestation verify <downloaded-file> --repo DeusData/codebase-memory-mcp
66+
gh attestation verify <downloaded-file> --repo hodizoda/codebase-memory-mcp
6767

6868
# Sigstore cosign (keyless signature)
6969
cosign verify-blob --bundle <file>.bundle <file>

docs/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,8 +242,8 @@ <h1>codebase-memory-mcp</h1>
242242
</div>
243243
</div>
244244
<div class="cta-buttons">
245-
<a href="https://github.com/DeusData/codebase-memory-mcp" class="cta-primary">View on GitHub</a>
246-
<a href="https://github.com/DeusData/codebase-memory-mcp/releases/latest" class="cta-secondary">Download Latest Release</a>
245+
<a href="https://github.com/hodizoda/codebase-memory-mcp" class="cta-primary">View on GitHub</a>
246+
<a href="https://github.com/hodizoda/codebase-memory-mcp/releases/latest" class="cta-secondary">Download Latest Release</a>
247247
</div>
248248
</section>
249249

@@ -338,7 +338,7 @@ <h2>Benchmark results</h2>
338338
</table>
339339
<p style="color: var(--text-secondary); font-size: 0.875rem; margin-top: 8px;">
340340
Tested across 31 languages with agent-vs-agent methodology (372 questions).
341-
<a href="https://github.com/DeusData/codebase-memory-mcp/blob/main/BENCHMARK_REPORT.md">Full benchmark report &rarr;</a>
341+
<a href="https://github.com/hodizoda/codebase-memory-mcp/blob/main/BENCHMARK_REPORT.md">Full benchmark report &rarr;</a>
342342
</p>
343343
</section>
344344

@@ -425,9 +425,9 @@ <h2>How it compares</h2>
425425
<div class="container">
426426
<p>
427427
Open source, MIT licensed.
428-
<a href="https://github.com/DeusData/codebase-memory-mcp">GitHub</a> &middot;
429-
<a href="https://github.com/DeusData/codebase-memory-mcp/releases/latest">Releases</a> &middot;
430-
<a href="https://github.com/DeusData/codebase-memory-mcp/blob/main/BENCHMARK_REPORT.md">Benchmarks</a>
428+
<a href="https://github.com/hodizoda/codebase-memory-mcp">GitHub</a> &middot;
429+
<a href="https://github.com/hodizoda/codebase-memory-mcp/releases/latest">Releases</a> &middot;
430+
<a href="https://github.com/hodizoda/codebase-memory-mcp/blob/main/BENCHMARK_REPORT.md">Benchmarks</a>
431431
</p>
432432
</div>
433433
</footer>

0 commit comments

Comments
 (0)