A codebase intelligence tool that builds an in-memory RDF knowledge graph and exposes it through CLI commands, MCP tools, and SPARQL queries. It parses 17 programming languages using structural AST analysis, extracts metadata from config files and documents, indexes git history for human activity analysis, detects engineering practices, and generates architecture diagrams.
| Method | Command | Requirements |
|---|---|---|
| npx | npx @chapeaux/beret |
Node.js |
| npx (JSR) | npx jsr:@chapeaux/beret |
Node.js |
| Cargo | cargo install chapeaux-beret |
Rust 1.85+ |
| Source | cargo build --release |
Rust 1.85+ |
The release profile enables LTO and single codegen unit for maximum binary performance.
Beret operates in three modes: CLI for direct analysis, stdio MCP for AI tool integration, and HTTP MCP for remote access.
Run analysis commands directly from the terminal. Each command indexes the target directory and prints JSON to stdout.
beret describe # consolidated project analysis
beret activity # git contributors, active files, recent commits
beret testing # test frameworks, test ratio
beret architecture # layers, structure counts
beret dependencies # package managers, dep count
beret practices # all detected engineering practices
beret stats # counts by structure type
beret find main # find symbols named "main"
beret diagram # generate LikeC4 architecture diagram
beret query 'SELECT ?f WHERE { ?f <http://repo.example.org/a> <http://repo.example.org/Function> }'All commands accept an optional [PATH] argument (defaults to current directory):
beret describe /path/to/project
beret activity ~/repos/my-appUse --exclude to skip paths during indexing with gitignore-style patterns (repeatable):
beret describe --exclude node_modules --exclude target
beret stats --exclude '*.generated.*' --exclude vendor/
beret describe /path/to/project --exclude dist --exclude .cacheThe server starts with an empty knowledge graph and indexes on demand. Call refresh_index with a directory path to populate the graph, then use the other tools to explore. This lets you launch one server and re-target it at different projects or subdirectories as you work.
| Mode | Command | Transport | index_repo tool |
|---|---|---|---|
| Local | beret |
stdio | No |
| Remote | beret --serve 8080 |
HTTP/SSE | Yes |
| Remote (bind all) | beret --serve 0.0.0.0:9090 |
HTTP/SSE | Yes |
An optional [PATH] argument (e.g., beret /path/to/project) sets the default directory for refresh_index when called without a path. If omitted, defaults to the current working directory.
In stdio mode, --exclude patterns passed on the command line are applied as defaults to every refresh_index call. Additional patterns can be passed via the exclude tool parameter.
| Setup | Install required | Config |
|---|---|---|
| Stdio | cargo install chapeaux-beret |
{"command": "beret"} |
| Stdio via npx | None | {"command": "npx", "args": ["-y", "@chapeaux/beret"]} |
| Stdio via JSR | None | {"command": "npx", "args": ["-y", "jsr:@chapeaux/beret"]} |
| Remote HTTP | None (server runs elsewhere) | {"url": "http://your-server:8080/sse"} |
All entries are placed in
{
"mcpServers": {
"beret": ...
}
}
in your client config (e.g., mcp.json, claude_desktop_config.json).
After connecting, ask the agent to index a directory (e.g., "index the current project") or for remote HTTP, a repository (e.g., "index https://github.com/user/repo").
All list-returning tools support limit, offset, and exclude parameters. exclude takes a comma-separated list of directory names to filter out (e.g., "docs,stories,dist"). When results exceed the limit, the response includes has_more: true and next_offset for pagination.
| Tool | Parameters | Default limit | What it does |
|---|---|---|---|
file_stats |
exclude? |
— | Count of functions, classes, configs, documents, binaries, commits, etc. Start here for a project overview. |
find_entry_points |
exclude?, limit?, offset? |
100 | Find main functions, index files, app/server/cli modules. Answers: "Where does this app start?" |
list_structures |
path?, kind?, exclude?, limit?, offset? |
200 | List all indexed structures. Filter by path substring and/or kind (Function, Class, Config, Document, Binary, Stylesheet, Section, Style, Element, Commit). |
find_symbol |
name, exclude?, limit?, offset? |
100 | Find where a function, class, struct, or module is defined. Partial name match. |
| Tool | Parameters | Default limit | What it does |
|---|---|---|---|
find_callers |
name?, exclude?, limit?, offset? |
100 | Who calls this function? Omit name to get all call edges. |
find_callees |
name?, exclude?, limit?, offset? |
100 | What does this function call? Omit name to get all call edges. |
find_dead_code |
exclude?, limit?, offset? |
100 | Functions defined but never called anywhere. Find unused code and refactoring candidates. |
| Tool | Parameters | Default limit | What it does |
|---|---|---|---|
find_dependencies |
exclude?, limit?, offset? |
200 | List all external package dependencies from build files (package.json, Cargo.toml, pom.xml, go.mod, requirements.txt, and 15+ more). |
| Tool | Parameters | Default limit | What it does |
|---|---|---|---|
search_pattern |
pattern, language, exclude?, limit?, offset? |
200 | Structural AST search using ast-grep syntax. Unlike text search, matches code structure. Use $NAME for wildcards, $$$ARGS for variadic. |
query_codebase |
sparql, limit?, offset? |
500 | Raw SPARQL SELECT/ASK against the knowledge graph for advanced queries. |
| Tool | Parameters | Default limit | What it does |
|---|---|---|---|
generate_diagram |
path?, depth?, code_only?, exclude?, limit? |
500 elements | Generate a LikeC4 architecture diagram. Auto-adjusts depth based on codebase size. |
depth:0= auto (default),1= directories,2= +files,3= +functions/classescode_only:true(default) — excludes docs, configs, binaries, test dirs, stories, etc.exclude: comma-separated directory names to additionally exclude- Beret theme: custom colors (navy
#00005F, orange#F5921B, gold#FFCC17, teal#37A3A3, blue#0066CC), distinct shapes per element type, styled relationship arrows - Output: paste into playground.likec4.dev, save as
.c4, or render withnpx likec4
| Tool | Parameters | What it does |
|---|---|---|
describe_project |
— | Recommended first call. Consolidated analysis with cross-cutting insights covering all categories below plus git activity. |
describe_practices |
— | High-level summary of all detected engineering practices across 14 categories. |
describe_testing |
— | Test frameworks, test function count (annotation + path-based detection), test-to-code ratio. |
describe_ci_cd |
— | CI platforms, containerization, build tools, deployment platforms, infrastructure-as-code. |
describe_code_quality |
— | Linters, formatters, type checkers, conventions (git hooks, lint-staged, etc.), code analysis. |
describe_architecture |
— | Architecture layers, monorepo detection, structure counts. |
describe_documentation |
— | Documentation artifacts (license, changelog, contributing, codeowners, etc.). |
describe_dependencies |
— | Package managers, dependency count, automated update tools. |
describe_activity |
— | Git activity: top contributors with commit counts, most active files, recent commits. |
| Tool | Parameters | What it does |
|---|---|---|
refresh_index |
path?, exclude? |
Index a directory and build the knowledge graph. Call this first before using other tools. exclude takes comma-separated gitignore-style patterns to skip during indexing. |
index_repo (HTTP only) |
url |
Clone a git repo (or pull if already cloned) and index it. |
When results are paginated, the response wraps results with metadata:
{
"results": [...],
"total": 1847,
"returned": 200,
"offset": 0,
"has_more": true,
"next_offset": 200,
"message": "Showing 1–200 of 1847 results. Use offset: 200 to see the next page."
}Find all Rust functions:
pattern: "fn $NAME($$$ARGS) { $$$BODY }"
language: "rust"
Find all console.log calls in JavaScript:
pattern: "console.log($MSG)"
language: "javascript"
Find Python classes inheriting from a base:
pattern: "class $NAME($BASE): $$$BODY"
language: "python"
All IRIs use the repo: prefix, which expands to http://repo.example.org/.
List all functions:
SELECT ?func WHERE {
?func <http://repo.example.org/a> <http://repo.example.org/Function>
}Find all callers of a function:
SELECT ?caller WHERE {
?caller <http://repo.example.org/calls> <http://repo.example.org/process>
}Find all dependencies:
SELECT ?file ?dep WHERE {
?file <http://repo.example.org/dependsOn> ?dep
}Find test functions (annotation or path-based):
SELECT ?func WHERE {
?func <http://repo.example.org/isTestFunction> <http://repo.example.org/true>
}Find recent commit authors:
SELECT ?author ?date ?message WHERE {
?commit <http://repo.example.org/commitAuthor> ?author .
?commit <http://repo.example.org/commitDate> ?date .
?commit <http://repo.example.org/commitMessage> ?message
} ORDER BY DESC(?date) LIMIT 10Find most-modified files:
SELECT ?file ?count WHERE {
?file <http://repo.example.org/commitCount> ?count
} ORDER BY DESC(?count) LIMIT 20List binary files with MIME types:
SELECT ?file ?mime WHERE {
?file <http://repo.example.org/a> <http://repo.example.org/Binary> .
?file <http://repo.example.org/hasMimeType> ?mime
}Check if any call relationships exist:
ASK { ?a <http://repo.example.org/calls> ?b }| Triple | Meaning |
|---|---|
<file/name> repo:a repo:Function |
A function, method, or constructor definition |
<file/name> repo:a repo:Class |
A class, struct, interface, trait, or module definition |
<caller> repo:calls <callee> |
A function call relationship |
<file/name> repo:isTestFunction repo:true |
A test function (detected via annotation or path) |
Subjects are qualified with the file path (e.g., src/main.rs/handle_request). Call targets are the unqualified callee name. For method calls like obj.method(), only method is recorded. For namespaced calls like mod::func(), only func is recorded.
Test detection: Functions are marked as tests via @Test/@ParameterizedTest/@RepeatedTest annotations (Java), [TestMethod]/[Fact]/[Theory]/[Test] attributes (C#), or when located in test directories (/test/, /tests/, /__tests__/, /spec/).
| Triple | Meaning |
|---|---|
<file> repo:a repo:Config |
A configuration file |
<file> repo:declares <key> |
A top-level key in the file |
<file> repo:dependsOn <pkg> |
A dependency (from 20+ build file formats) |
| Triple | Meaning |
|---|---|
<file> repo:a repo:Document |
A document file |
<file/heading> repo:a repo:Section |
A heading or section |
<file/#id> repo:a repo:Element |
An HTML element with an id |
<file/.class> repo:a repo:Element |
An HTML element with a class |
| Triple | Meaning |
|---|---|
<file> repo:a repo:Stylesheet |
A CSS file |
<file/selector> repo:a repo:Style |
A CSS selector rule |
| Triple | Meaning |
|---|---|
<file> repo:a repo:Binary |
A binary file |
<file> repo:hasMimeType <mime> |
The file's MIME type |
<file> repo:hasSize <bytes> |
The file size in bytes |
Indexed from git log output (last 500 commits). Gracefully skipped if not a git repo.
| Triple | Meaning |
|---|---|
repo:project repo:hasCommit <hash> |
A commit in the repository |
<hash> repo:a repo:Commit |
A commit object |
<hash> repo:commitAuthor <name> |
The commit author |
<hash> repo:commitDate <iso-date> |
The commit date |
<hash> repo:commitMessage <text> |
The commit message (first line) |
<hash> repo:commitTouches <file> |
A file changed by the commit |
<file> repo:lastModifiedBy <name> |
Author of the most recent commit touching this file |
<file> repo:lastModifiedDate <date> |
Date of the most recent commit |
<file> repo:commitCount <n> |
Number of commits touching this file |
<file> repo:contributedBy <name> |
An author who has committed to this file |
| Language | Extensions | Functions | Classes/Types | Calls |
|---|---|---|---|---|
| Python | .py |
def |
class |
calls |
| Rust | .rs |
fn |
struct, impl |
call expressions |
| JavaScript | .js, .mjs, .cjs |
function |
class |
call expressions |
| TypeScript | .ts |
function |
class, interface |
call expressions |
| TSX | .tsx |
function |
class, interface |
call expressions |
| Go | .go |
func |
type specs | call expressions |
| Java | .java |
methods, constructors | class, interface, enum |
method invocations |
| C | .c |
functions | struct |
call expressions |
| C++ | .cpp, .cc, .cxx, .hpp |
functions | struct, class |
call expressions |
| C# | .cs |
methods | class, interface, struct, enum |
invocations |
| Ruby | .rb |
def |
class, module |
calls |
| PHP | .php |
function, methods |
class, interface, enum |
calls |
| Kotlin | .kt, .kts |
fun |
class, object |
call expressions |
| Swift | .swift |
func |
class, struct |
call expressions |
| Scala | .scala, .sc |
def |
class, object, trait |
call expressions |
| Bash | .sh, .bash |
function |
— | commands |
| Lua | .lua |
function |
— | function calls |
| Type | Extensions | What is extracted |
|---|---|---|
| JSON | .json |
Top-level keys, package.json dependencies |
| YAML | .yml, .yaml |
Top-level keys |
| Markdown | .md, .markdown |
Headings |
| AsciiDoc | .adoc, .asciidoc |
Headings |
| reStructuredText | .rst |
Headings |
| Man pages | .1–.9 |
Headings |
| HTML | .html, .htm |
Element IDs and classes |
| CSS | .css |
Selectors |
Images (.png, .jpg, .gif, .webp, .svg, .ico, .bmp), audio (.mp3, .wav, .ogg, .flac, .aac), video (.mp4, .webm, .avi, .mov, .mkv), fonts (.ttf, .otf, .woff, .woff2), documents (.pdf), archives (.zip, .gz, .tar), executables (.exe, .dll, .so, .dylib, .wasm), databases (.sqlite, .db).
Dependencies are extracted from 20+ build file formats: package.json, Cargo.toml, pom.xml, build.gradle(.kts), go.mod, Gemfile, Podfile, requirements.txt, pyproject.toml, composer.json, Pipfile, pubspec.yaml, Package.swift, build.sbt, mix.exs, .csproj/.fsproj, Dockerfile/Containerfile (FROM), docker-compose.yml (image), .spec (Requires/BuildRequires), debian/control (Depends/Build-Depends).
Detected from file presence and directory structure. All use <project> as subject.
| Predicate | Example values | Detected from |
|---|---|---|
usesCIPlatform |
github-actions, gitlab-ci, jenkins, packit, zuul, tekton | .github/workflows/, .gitlab-ci.yml, Jenkinsfile, .packit.yaml, .zuul.yaml |
usesTestFramework |
jest, pytest, cypress, playwright, tmt, jacoco | jest.config.*, pytest.ini, cypress.config.*, .fmf/, jacoco plugin |
usesLinter |
eslint, biome, ruff, rubocop, rpmlint, checkstyle | .eslintrc*, biome.json, ruff.toml, .rpmlintrc |
usesFormatter |
prettier, editorconfig | .prettierrc*, .editorconfig |
usesBuildTool |
make, gradle, maven, cmake, autotools, kbuild, tito | Makefile, build.gradle, pom.xml, configure.ac, Kbuild |
usesContainerization |
docker, docker-compose, podman, helm, kustomize | Dockerfile, Containerfile, docker-compose.yml, Chart.yaml |
usesPackageManager |
npm, yarn, pnpm, cargo, pip, poetry, bundler | package.json, yarn.lock, Cargo.toml, Pipfile |
usesTypeChecking |
typescript, mypy, javascript-jsdoc | tsconfig.json, mypy.ini |
usesCodeAnalysis |
sonarqube, codecov | sonar-project.properties, .codecov.yml |
usesConfigManagement |
ansible, puppet, chef | ansible.cfg, Puppetfile, Berksfile |
usesDeploymentPlatform |
serverless, vercel, netlify, fly, heroku | serverless.yml, vercel.json, fly.toml |
usesPackagingFormat |
rpm, deb, snap, flatpak, appimage, arch | .spec, debian/, snapcraft.yaml, *.flatpak.json |
hasLayer |
source, tests, api, ui, domain, services, infrastructure | Directory names: src/, tests/, api/, deploy/, etc. |
hasDocumentation |
license, changelog, contributing-guide, codeowners, api-spec | LICENSE, CHANGELOG.md, CONTRIBUTING.md, CODEOWNERS |
followsConvention |
conventional-commits, git-hooks, lint-staged, systemd, selinux, fedora-gating | .commitlintrc*, .husky/, *.service, *.te |
The ingestor uses parallel file walking (via the ignore crate) and direct tree-sitter node kind matching for speed. Benchmarked at 5,000 files / 60,000 triples in under 1 second in debug mode. Git history indexing adds a single git log call after the file walk.
cargo publishPublishes as chapeaux-beret. Users install with cargo install chapeaux-beret.
cd npm && npm publish --access publicPublishes as @chapeaux/beret. Requires pre-built binaries uploaded to GitHub releases.
cd npm && npx jsr publishPublishes as @chapeaux/beret on JSR. Users run with npx jsr:@chapeaux/beret.
cargo testMIT