Skip to content

Commit 26d1470

Browse files
leifericfclaude
andcommitted
docs(readme): add issue-refs to data model and relationship graph
Show :commit/issue-refs in the entity table and Mermaid relationship graph. Update named query count to 48 and mention issue tracking. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent de8fcbd commit 26d1470

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The CLI and [MCP](https://modelcontextprotocol.io) server expose the same capabi
164164

165165
## Named Queries
166166

167-
50 named Datalog queries live in `resources/queries/` (EDN), covering hotspots, ownership, dependencies, complexity, churn, impact analysis, LLM cost tracking, and benchmarks. Run `clj -M:run query list` to see them all.
167+
48 named Datalog queries live in `resources/queries/` (EDN), covering hotspots, ownership, dependencies, complexity, churn, impact analysis, issue tracking, LLM cost tracking, and benchmarks. Run `clj -M:run query list` to see them all.
168168

169169
## Data Model
170170

@@ -180,7 +180,7 @@ Noumenon combines four sources:
180180
| Entity | Identity | Key attributes |
181181
|---|---|---|
182182
| `repo` | `:repo/uri` | `:repo/commits`, `:repo/head-sha` |
183-
| `commit` | `:git/sha` (`:git/type :commit`) | `:commit/message`, `:commit/kind`, `:commit/authored-at`, `:commit/committed-at`, `:commit/additions`, `:commit/deletions` |
183+
| `commit` | `:git/sha` (`:git/type :commit`) | `:commit/message`, `:commit/kind`, `:commit/issue-refs`, `:commit/authored-at`, `:commit/committed-at`, `:commit/additions`, `:commit/deletions` |
184184
| `person` | `:person/email` | `:person/name` |
185185
| `file` | `:file/path` | `:file/ext`, `:file/lang`, `:file/lines`, `:file/size`, `:file/imports`, `:sem/*` |
186186
| `directory` | `:dir/path` | `:dir/parent`, `:dir/repo` |
@@ -198,6 +198,7 @@ flowchart LR
198198
Commit -->|:commit/committer| Committer[person]
199199
Commit -->|:commit/parents| Parent[commit]
200200
Commit -->|:commit/changed-files| File[file]
201+
Commit -.->|:commit/issue-refs| IssueRef[("#123 / PROJ-456 / URL")]
201202
202203
File -->|:file/directory| Dir[directory]
203204
Dir -->|:dir/parent| ParentDir[directory]

0 commit comments

Comments
 (0)