@cortexkit/aft 0.47.1 → 0.47.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/dist/index.js +2 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1716,10 +1716,11 @@ function formatCallgraphSections(op, response, theme = PLAIN_CALLGRAPH_THEME, op
|
|
|
1716
1716
|
const warning = depthWarning(record, theme, "max_depth_reached", "truncated_paths");
|
|
1717
1717
|
const hubSummary = hubSummaryLine(record, theme);
|
|
1718
1718
|
const totalPaths = asNumber(record.total_paths) ?? paths.length;
|
|
1719
|
+
const totalPathsIsLowerBound = asBoolean(record.total_paths_is_lower_bound) ?? false;
|
|
1719
1720
|
const entryPoints = asNumber(record.entry_points_found) ?? 0;
|
|
1720
1721
|
const sections2 = [
|
|
1721
1722
|
joinNonEmpty([
|
|
1722
|
-
theme.fg("success", `${totalPaths} path${totalPaths === 1 ? "" : "s"}`),
|
|
1723
|
+
theme.fg("success", `${totalPathsIsLowerBound ? "at least " : ""}${totalPaths} path${totalPaths === 1 ? "" : "s"}`),
|
|
1723
1724
|
theme.fg("muted", `${entryPoints} entry point${entryPoints === 1 ? "" : "s"}`),
|
|
1724
1725
|
warning
|
|
1725
1726
|
])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cortexkit/aft",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Unified CLI for Agent File Tools (AFT) — setup, doctor, and diagnostics across supported agent harnesses (OpenCode, Pi)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@clack/prompts": "^1.6.0",
|
|
27
|
-
"@cortexkit/aft-bridge": "0.47.
|
|
27
|
+
"@cortexkit/aft-bridge": "0.47.2",
|
|
28
28
|
"comment-json": "^4.6.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|