kirograph 0.12.1 → 0.12.2
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 +4 -4
- package/dist/bin/kirograph.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-

|
|
1
|
+

|
|
2
2
|
|
|
3
3
|
# KiroGraph
|
|
4
4
|
|
|
5
|
-

|
|
5
|
+

|
|
6
6
|
|
|
7
7
|
Semantic code knowledge graph for [Kiro](https://kiro.dev): fewer tool calls, instant symbol lookups, 100% local.
|
|
8
8
|
|
|
@@ -557,7 +557,7 @@ fi
|
|
|
557
557
|
|
|
558
558
|
### 🪨 Caveman Mode 🪨
|
|
559
559
|
|
|
560
|
-

|
|
560
|
+

|
|
561
561
|
|
|
562
562
|
Caveman mode compresses the agent's communication style, cutting token usage on responses without affecting tool calls or code output. Inspired by [caveman](https://github.com/JuliusBrussee/caveman) 🪨 by [JuliusBrussee](https://github.com/JuliusBrussee).
|
|
563
563
|
|
|
@@ -715,7 +715,7 @@ kirograph export build --include-contains # Include structural contains edges (a
|
|
|
715
715
|
|
|
716
716
|
Output lands in `.kirograph/export/` by default. Open `index.html` in any browser.
|
|
717
717
|
|
|
718
|
-

|
|
718
|
+

|
|
719
719
|
|
|
720
720
|
#### Graph & navigation
|
|
721
721
|
|
package/dist/bin/kirograph.js
CHANGED
|
@@ -56,7 +56,7 @@ process.on("uncaughtException", (err) => {
|
|
|
56
56
|
process.exit(1);
|
|
57
57
|
});
|
|
58
58
|
const program = new import_commander.Command();
|
|
59
|
-
program.name("kirograph").description("Semantic code knowledge graph for Kiro").version("0.12.
|
|
59
|
+
program.name("kirograph").description("Semantic code knowledge graph for Kiro").version("0.12.2").addHelpCommand(true).hook("preAction", (thisCommand) => {
|
|
60
60
|
const name = thisCommand.name();
|
|
61
61
|
if (name === "init") (0, import_banner.printBanner)();
|
|
62
62
|
});
|
package/package.json
CHANGED