microservice-kg 0.1.1 → 0.1.3

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
@@ -99,6 +99,10 @@ The images below are sanitized examples intended for the public README.
99
99
 
100
100
  ![Obsidian graph view](docs/images/obsidian-graph-view.png)
101
101
 
102
+ ### Obsidian graph detail
103
+
104
+ ![Obsidian graph detail](docs/images/obsidian-graph-fullscreen.png)
105
+
102
106
  ## Install
103
107
 
104
108
  ```bash
@@ -111,6 +115,20 @@ Or run it without a global install:
111
115
  npx microservice-kg analyze /path/to/workspace --output ./output
112
116
  ```
113
117
 
118
+ ## Scoped GitHub Packages distribution
119
+
120
+ The repository can also publish a scoped package for GitHub Packages:
121
+
122
+ ```bash
123
+ @pawarss1/microservice-kg
124
+ ```
125
+
126
+ That distribution is intended for GitHub-native package discovery and for populating the repository's `Packages` section. The public npm package remains:
127
+
128
+ ```bash
129
+ microservice-kg
130
+ ```
131
+
114
132
  ## Usage
115
133
 
116
134
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "microservice-kg",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Consolidated microservice knowledge graph generator for multi-repo workspaces, with MCP support for agentic coding",
5
5
  "type": "module",
6
6
  "files": [
@@ -8,6 +8,7 @@
8
8
  "docs/images/inter-service-example.png",
9
9
  "docs/images/dependency-neighborhood-example.png",
10
10
  "docs/images/intra-service-workflow-example.png",
11
+ "docs/images/obsidian-graph-fullscreen.png",
11
12
  "docs/images/obsidian-graph-view.png",
12
13
  "README.md",
13
14
  "LICENSE"
@@ -20,7 +21,8 @@
20
21
  "analyze": "node ./src/cli.mjs analyze",
21
22
  "start": "node ./src/cli.mjs",
22
23
  "mcp": "node ./src/mcp-server.mjs",
23
- "pack:check": "npm pack --dry-run"
24
+ "pack:check": "npm pack --dry-run",
25
+ "build:github-package": "node ./scripts/build-github-package.mjs"
24
26
  },
25
27
  "keywords": [
26
28
  "microservices",
package/src/analyzer.mjs CHANGED
@@ -6,7 +6,6 @@ const IGNORED_DIR_NAMES = new Set([
6
6
  ".idea",
7
7
  ".gradle",
8
8
  ".microservice-kg",
9
- ".gitnexus",
10
9
  ".claude",
11
10
  "build",
12
11
  "dist",