@kentwynn/kgraph 0.2.21 → 0.2.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,39 @@
1
- # KGraph
2
-
3
- Persistent repository intelligence for AI coding tools.
1
+ <div align="center">
2
+
3
+ <img src="media/logo.svg" alt="KGraph Atom Core Logo" width="140" height="140">
4
+
5
+ # KGraph: Persistent repository intelligence for AI coding tools.
6
+
7
+ <strong>atoms · evidence · context packs</strong>
8
+
9
+ <p>
10
+ <a href="https://www.npmjs.com/package/@kentwynn/kgraph">
11
+ <img src="https://img.shields.io/npm/v/@kentwynn/kgraph?label=npm" alt="npm version">
12
+ </a>
13
+ <a href="https://github.com/kentwynn/KGraph/releases/latest">
14
+ <img src="https://img.shields.io/github/v/release/kentwynn/KGraph?label=release" alt="Latest release">
15
+ </a>
16
+ <a href="https://github.com/kentwynn/KGraph/actions/workflows/ci.yml">
17
+ <img src="https://img.shields.io/github/actions/workflow/status/kentwynn/KGraph/ci.yml?branch=main&label=ci" alt="CI">
18
+ </a>
19
+ <a href="https://github.com/kentwynn/KGraph/blob/main/LICENSE">
20
+ <img src="https://img.shields.io/github/license/kentwynn/KGraph" alt="License">
21
+ </a>
22
+ <a href="https://nodejs.org/">
23
+ <img src="https://img.shields.io/badge/node-%3E%3D20-339933?logo=node.js&logoColor=white" alt="Node.js >=20">
24
+ </a>
25
+ <a href="https://github.com/kentwynn/KGraph/security/policy">
26
+ <img src="https://img.shields.io/badge/security-policy-0f766e" alt="Security policy">
27
+ </a>
28
+ <a href="https://github.com/kentwynn/KGraph/wiki">
29
+ <img src="https://img.shields.io/badge/docs-wiki-blue" alt="Documentation">
30
+ </a>
31
+ <a href="https://github.com/kentwynn/KGraph/stargazers">
32
+ <img src="https://img.shields.io/github/stars/kentwynn/KGraph?style=social" alt="GitHub stars">
33
+ </a>
34
+ </p>
35
+
36
+ </div>
4
37
 
5
38
  KGraph gives Codex, GitHub Copilot, Cursor, Claude Code, Gemini CLI, Windsurf, and Cline a local knowledge layer for your repo: file maps, symbols, imports, relationships, and durable knowledge atoms from previous AI sessions. The goal is simple: your assistant should not spend every session re-learning the same codebase.
6
39
 
package/media/logo.svg ADDED
@@ -0,0 +1,29 @@
1
+ <svg width="220" height="220" viewBox="0 0 220 220" fill="none" xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="title desc">
2
+ <title id="title">KGraph Atom Core Logo</title>
3
+ <desc id="desc">Atom Core logo for KGraph, persistent repository intelligence for AI coding tools.</desc>
4
+ <defs>
5
+ <radialGradient id="core" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(110 104) rotate(90) scale(88)">
6
+ <stop offset="0" stop-color="#22D3EE"/>
7
+ <stop offset="0.58" stop-color="#38BDF8"/>
8
+ <stop offset="1" stop-color="#A78BFA"/>
9
+ </radialGradient>
10
+ <linearGradient id="orbit" x1="36" y1="56" x2="184" y2="164" gradientUnits="userSpaceOnUse">
11
+ <stop stop-color="#22D3EE"/>
12
+ <stop offset="1" stop-color="#C084FC"/>
13
+ </linearGradient>
14
+ <filter id="glow" x="12" y="12" width="196" height="196" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
15
+ <feGaussianBlur stdDeviation="6" result="blur"/>
16
+ <feColorMatrix in="blur" type="matrix" values="0 0 0 0 0.133 0 0 0 0 0.827 0 0 0 0 0.933 0 0 0 0.42 0"/>
17
+ <feBlend in="SourceGraphic"/>
18
+ </filter>
19
+ </defs>
20
+ <circle cx="110" cy="110" r="78" fill="#0F172A" fill-opacity="0.82" stroke="#1E293B" stroke-width="2"/>
21
+ <g filter="url(#glow)" stroke="url(#orbit)" stroke-width="6" stroke-linecap="round">
22
+ <ellipse cx="110" cy="110" rx="76" ry="28" transform="rotate(-23 110 110)"/>
23
+ <ellipse cx="110" cy="110" rx="76" ry="28" transform="rotate(23 110 110)"/>
24
+ <ellipse cx="110" cy="110" rx="28" ry="76"/>
25
+ </g>
26
+ <circle cx="110" cy="110" r="19" fill="url(#core)"/>
27
+ <circle cx="164" cy="70" r="7" fill="#22D3EE"/>
28
+ <circle cx="62" cy="148" r="6" fill="#C084FC"/>
29
+ </svg>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kentwynn/kgraph",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
4
4
  "description": "Persistent repo intelligence for AI coding assistants.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,6 +8,7 @@
8
8
  },
9
9
  "files": [
10
10
  "dist",
11
+ "media/logo.svg",
11
12
  "README.md",
12
13
  "LICENSE"
13
14
  ],