free-coding-models 0.4.3 → 0.5.1

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.
Files changed (142) hide show
  1. package/README.md +9 -1
  2. package/bin/free-coding-models.js +19 -9
  3. package/changelog/v0.5.0.md +15 -0
  4. package/changelog/v0.5.1.md +24 -0
  5. package/package.json +7 -2
  6. package/src/{analysis.js → core/analysis.js} +5 -5
  7. package/src/{constants.js → core/constants.js} +1 -1
  8. package/src/{endpoint-installer.js → core/endpoint-installer.js} +1 -1
  9. package/src/{installed-models-manager.js → core/installed-models-manager.js} +1 -1
  10. package/src/{kilo.js → core/kilo.js} +1 -2
  11. package/src/{openclaw.js → core/openclaw.js} +1 -1
  12. package/src/{opencode.js → core/opencode.js} +2 -1
  13. package/src/{ping-loop.js → core/ping-loop.js} +1 -1
  14. package/src/{router-daemon.js → core/router-daemon.js} +169 -4
  15. package/src/{router-dashboard.js → core/router-dashboard.js} +2 -2
  16. package/src/{setup.js → core/setup.js} +1 -1
  17. package/src/{sync-set.js → core/sync-set.js} +1 -1
  18. package/src/{telemetry.js → core/telemetry.js} +1 -1
  19. package/src/{tool-launchers.js → core/tool-launchers.js} +2 -2
  20. package/src/{updater.js → core/updater.js} +1 -1
  21. package/src/{utils.js → core/utils.js} +2 -0
  22. package/src/{app.js → tui/app.js} +38 -38
  23. package/src/{cli-help.js → tui/cli-help.js} +3 -1
  24. package/src/{command-palette.js → tui/command-palette.js} +2 -2
  25. package/src/{key-handler.js → tui/key-handler.js} +11 -11
  26. package/src/{overlays.js → tui/overlays.js} +2 -2
  27. package/src/{render-helpers.js → tui/render-helpers.js} +2 -2
  28. package/src/{render-table.js → tui/render-table.js} +9 -9
  29. package/src/{tui-filters.js → tui/tui-filters.js} +3 -3
  30. package/src/{tui-state.js → tui/tui-state.js} +1 -1
  31. package/web/README.md +46 -0
  32. package/web/dist/assets/index-ByGf4Kq-.js +14 -0
  33. package/web/dist/assets/index-Ds7wmHBv.css +1 -0
  34. package/web/dist/index.html +3 -6
  35. package/web/index.html +1 -4
  36. package/web/package.json +11 -0
  37. package/web/server.js +609 -214
  38. package/web/src/App.jsx +54 -12
  39. package/web/src/components/analytics/AnalyticsView.jsx +10 -4
  40. package/web/src/components/atoms/AILatencyCell.jsx +38 -0
  41. package/web/src/components/atoms/AILatencyCell.module.css +43 -0
  42. package/web/src/components/atoms/HealthCell.jsx +53 -0
  43. package/web/src/components/atoms/HealthCell.module.css +15 -0
  44. package/web/src/components/atoms/LastPingCell.jsx +35 -0
  45. package/web/src/components/atoms/LastPingCell.module.css +35 -0
  46. package/web/src/components/atoms/MoodCell.jsx +25 -0
  47. package/web/src/components/atoms/MoodCell.module.css +6 -0
  48. package/web/src/components/atoms/RankCell.jsx +9 -0
  49. package/web/src/components/atoms/RankCell.module.css +9 -0
  50. package/web/src/components/atoms/TPSCell.jsx +36 -0
  51. package/web/src/components/atoms/TPSCell.module.css +38 -0
  52. package/web/src/components/atoms/VerdictBadge.jsx +30 -7
  53. package/web/src/components/atoms/VerdictBadge.module.css +24 -15
  54. package/web/src/components/dashboard/ExportModal.jsx +9 -4
  55. package/web/src/components/dashboard/FilterBar.jsx +112 -10
  56. package/web/src/components/dashboard/FilterBar.module.css +86 -1
  57. package/web/src/components/dashboard/ModelTable.jsx +293 -52
  58. package/web/src/components/dashboard/ModelTable.module.css +131 -33
  59. package/web/src/components/dashboard/StatsBar.jsx +7 -5
  60. package/web/src/components/layout/Footer.jsx +1 -1
  61. package/web/src/components/layout/Header.jsx +43 -9
  62. package/web/src/components/layout/Header.module.css +38 -4
  63. package/web/src/components/layout/Sidebar.jsx +19 -11
  64. package/web/src/components/layout/Sidebar.module.css +15 -5
  65. package/web/src/components/settings/SettingsView.jsx +24 -6
  66. package/web/src/components/settings/SettingsView.module.css +0 -1
  67. package/web/src/global.css +70 -73
  68. package/web/src/hooks/useFilter.js +117 -25
  69. package/web/src/hooks/useSSE.js +33 -9
  70. package/web/src/hooks/useSocket.js +200 -0
  71. package/web/vite.config.js +41 -0
  72. package/src/graphify-out/cache/089db1c1def873cf6d112f1590da4490e61e691aff0db41e006aa2fb15ba0656.json +0 -1
  73. package/src/graphify-out/cache/0b510b53cf1a1393fb52b1fc3bbbf88b63938e961ec5b82119a2e9715fee8bd7.json +0 -1
  74. package/src/graphify-out/cache/0ec9a95a326bde58e0316889018b278062d06d494d0f31ba177c9de71e5fed2d.json +0 -1
  75. package/src/graphify-out/cache/1548663a24a68dce740ebab1bd1d3091048c9604e9d067a1650a42a6d82541d4.json +0 -1
  76. package/src/graphify-out/cache/1783af63cb6d0dfb4d469009f71ac83a74ba0b33d48186ff2c6e63f9429e900a.json +0 -1
  77. package/src/graphify-out/cache/1e109f5eb5dc4fd285871c3613e32b6b14a8c225f4080ee34b51c7e1a1764571.json +0 -1
  78. package/src/graphify-out/cache/1eb24dbeb69b46c8bc1caf925df2f2a964af0f33aea143adf8ddf88e017db6ca.json +0 -1
  79. package/src/graphify-out/cache/21e1bcfed11685e8347243f9d8516072dda183266a4bfe22c52fb31753a446c8.json +0 -1
  80. package/src/graphify-out/cache/2327473478b9c4b1940bf7ef66c9ee960b3cba8d5302e56b625df8274246e0b4.json +0 -1
  81. package/src/graphify-out/cache/25955b81fd25454c8fa90fb71a47db8d1215cf621beb8ff3cbd580aaf011b4f3.json +0 -1
  82. package/src/graphify-out/cache/2739677f19c702f88f3de0a0bac475066adbda98709907ad3de967aef689f86d.json +0 -1
  83. package/src/graphify-out/cache/2bba03422f6b3ee7f5b5d29cc90314a064d259e5822a176657bda3e04505cf00.json +0 -1
  84. package/src/graphify-out/cache/2ddf1d2c6d10147b0402446bc71a7988187b79b6210dd7e7250be8c555b9ff35.json +0 -1
  85. package/src/graphify-out/cache/2ee07457a5767c95a57f8e9eb95b28f800044f35666e0715e9d88ad1103a092e.json +0 -1
  86. package/src/graphify-out/cache/2fe9f75dc2951c417f2c8dd22749092cf550dc67599f1c8d1866900dc6e9154e.json +0 -1
  87. package/src/graphify-out/cache/41c4b7c27e7fc3e2948d3a4bf95a72de2ed9a6f0463994babdce8ed2cc84598c.json +0 -1
  88. package/src/graphify-out/cache/5028defd54b7fbd3c7e444973e493de036e097e9b1d2a7cae7f19b88d68aacde.json +0 -1
  89. package/src/graphify-out/cache/5b133aba3fb16410c5b1fdbd1730039fc7fa1ac93abd99d7be08f60da70fc8d4.json +0 -1
  90. package/src/graphify-out/cache/74252e5b0978d85ab3421a3de1a9384aa282ffd2be2cfe7db2530139089f4275.json +0 -1
  91. package/src/graphify-out/cache/7695ebeea056095edd14332963cc43354ef3a097caf46f1e28d0f01369642901.json +0 -1
  92. package/src/graphify-out/cache/777aa7085c395a935c6556bbde182cd871edb61f3a685ed8068ec0c8f6fb0075.json +0 -1
  93. package/src/graphify-out/cache/82a723881980e82273c113def8315533d7da28827e300413d9ad30f27b7407df.json +0 -1
  94. package/src/graphify-out/cache/86b87c9603e6cd188f42c7eed3b86c291d48a781c223a707e74f3e7ed0c02a21.json +0 -1
  95. package/src/graphify-out/cache/890fead9a78cadaed560a2d2453916121fa605c3e43a334910ac4bc951a9ef6d.json +0 -1
  96. package/src/graphify-out/cache/89d3ea66f52783caa775ef9a30923d7d6225e1d8ae9e962f4741b8c7785dab1e.json +0 -1
  97. package/src/graphify-out/cache/8cc82cd9edce41f0e1c092f14a94fd52bf847addf3237b616dc5a9e505bd05bd.json +0 -1
  98. package/src/graphify-out/cache/93ba2e25e3ff7ad525f397902345fbd375df7315de7b402e20cc803c14eccde8.json +0 -1
  99. package/src/graphify-out/cache/99beed29580b9c7bfecfee794cb3d8e535fcf0eb3b92113108f88bdd0a8e79b3.json +0 -1
  100. package/src/graphify-out/cache/aeeb931fa477c65ce2e51d8149957350fa54225c613222bbbe8448998d1afd3d.json +0 -1
  101. package/src/graphify-out/cache/baf91bef5b5ecb2a476433b6cc0c48c563c54ee2d07fc3c192e543685e3e7222.json +0 -1
  102. package/src/graphify-out/cache/bd98b94ac4e9b92b6336d47b26e0366b51a4eaf0711d722f05f98dfae23ab42b.json +0 -1
  103. package/src/graphify-out/cache/bfcb51e9328e9cbfbee4f6fee0f56635d7b03488addc9f6c4e4b190b70a73362.json +0 -1
  104. package/src/graphify-out/cache/c0d3dabeb093aa758c49eadf41b87ecc96a16c1449c2670aaf48cbfc891d8da6.json +0 -1
  105. package/src/graphify-out/cache/c20d6630236f473c1406068c3ae205853e649b216495c93dfec055dd222c55cf.json +0 -1
  106. package/src/graphify-out/cache/c22b9122816bebce0a2f79af41a986559d01e00163dbcd579c5755621b4cb483.json +0 -1
  107. package/src/graphify-out/cache/ca556ec14453ddb8f9e0c5a832dac90d77111b9bad5f8c2d80d272e2e7a06371.json +0 -1
  108. package/src/graphify-out/cache/d6dbc9135dfa35a756b3b09b06700e4bc229fdccba11bb963f2ba44028e0bbae.json +0 -1
  109. package/src/graphify-out/cache/e1cf71276f1779d0fa075f79bd7c8a9fd0b8eef6932ac043137451b7c7fa7cbe.json +0 -1
  110. package/src/graphify-out/cache/e4b3be14494467df2d2ed389bc4f18f099021cb5bc355b901fa88387b2d8b8a2.json +0 -1
  111. package/src/graphify-out/cache/eaea0dded097f6f9553b654220046c6ec0c9be592a5973d906564ee60af34e0d.json +0 -1
  112. package/src/graphify-out/cache/ef07d0cd2675d1f79d2a2fdbf3bc3319687638751e9ce89b0d0d97ed1cd9f7e1.json +0 -1
  113. package/src/graphify-out/cache/f81272d6eb8aaff9e96d5a1d9f06777db70ac3652a646b951ded51f79871d733.json +0 -1
  114. package/src/graphify-out/cache/f9619dd92186f75a6dbda937e0c606647153918524cdb5763f956e6ec2a9e386.json +0 -1
  115. package/src/graphify-out/cache/fd88b1b2ff4bfcae08559d9c2aaeeb9a3f1e2f5cd8928762c311196956c170a5.json +0 -1
  116. package/web/dist/assets/index-CGN-0_A0.css +0 -1
  117. package/web/dist/assets/index-Czwis3ab.js +0 -11
  118. /package/src/{benchmark.js → core/benchmark.js} +0 -0
  119. /package/src/{cache.js → core/cache.js} +0 -0
  120. /package/src/{changelog-loader.js → core/changelog-loader.js} +0 -0
  121. /package/src/{config.js → core/config.js} +0 -0
  122. /package/src/{favorites.js → core/favorites.js} +0 -0
  123. /package/src/{kilo-config.js → core/kilo-config.js} +0 -0
  124. /package/src/{legacy-proxy-cleanup.js → core/legacy-proxy-cleanup.js} +0 -0
  125. /package/src/{model-merger.js → core/model-merger.js} +0 -0
  126. /package/src/{opencode-config.js → core/opencode-config.js} +0 -0
  127. /package/src/{ping.js → core/ping.js} +0 -0
  128. /package/src/{product-flags.js → core/product-flags.js} +0 -0
  129. /package/src/{provider-metadata.js → core/provider-metadata.js} +0 -0
  130. /package/src/{provider-quota-fetchers.js → core/provider-quota-fetchers.js} +0 -0
  131. /package/src/{quota-capabilities.js → core/quota-capabilities.js} +0 -0
  132. /package/src/{security.js → core/security.js} +0 -0
  133. /package/src/{shell-env.js → core/shell-env.js} +0 -0
  134. /package/src/{testfcm.js → core/testfcm.js} +0 -0
  135. /package/src/{token-usage-reader.js → core/token-usage-reader.js} +0 -0
  136. /package/src/{tool-bootstrap.js → core/tool-bootstrap.js} +0 -0
  137. /package/src/{tool-metadata.js → core/tool-metadata.js} +0 -0
  138. /package/src/{usage-reader.js → core/usage-reader.js} +0 -0
  139. /package/src/{mouse.js → tui/mouse.js} +0 -0
  140. /package/src/{theme.js → tui/theme.js} +0 -0
  141. /package/src/{tier-colors.js → tui/tier-colors.js} +0 -0
  142. /package/src/{ui-config.js → tui/ui-config.js} +0 -0
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_app_js", "label": "app.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1"}, {"id": "app_runapp", "label": "runApp()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L181"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "chalk", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L92", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "module", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L93", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "url", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L94", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "fs", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L95", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "crypto", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L96", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L97", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "path", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L98", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_sources_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L99", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_utils_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L100", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L101", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_model_merger_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L102", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_opencode_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L103", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_usage_reader_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L104", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_token_usage_reader_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L105", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_provider_quota_fetchers_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L106", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_quota_capabilities_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L107", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_constants_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L108", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_tier_colors_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L109", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_ping_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L110", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_analysis_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L111", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_provider_metadata_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L112", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_telemetry_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L113", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_favorites_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L114", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_updater_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L115", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_setup_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L116", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_shell_env_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L117", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_render_helpers_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L118", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_render_table_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L119", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_opencode_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L120", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_kilo_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L121", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_openclaw_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L122", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_overlays_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L123", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_key_handler_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L124", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_mouse_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L125", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_router_dashboard_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L126", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_tool_metadata_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L127", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_tool_launchers_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L128", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_tool_bootstrap_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L129", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_endpoint_installer_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L130", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_cache_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L131", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_security_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L132", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_cli_help_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L133", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "users_vava_documents_github_free_coding_models_src_theme_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L134", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_app_js", "target": "app_runapp", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L181", "weight": 1.0}], "raw_calls": [{"caller_nid": "app_runapp", "callee": "detectActiveTheme", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L184"}, {"caller_nid": "app_runapp", "callee": "checkConfigSecurity", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L187"}, {"caller_nid": "app_runapp", "callee": "some", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L210"}, {"caller_nid": "app_runapp", "callee": "keys", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L210"}, {"caller_nid": "app_runapp", "callee": "promptApiKey", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L213"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L215"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L216"}, {"caller_nid": "app_runapp", "callee": "red", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L216"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L217"}, {"caller_nid": "app_runapp", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L217"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L218"}, {"caller_nid": "app_runapp", "callee": "exit", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L219"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L224"}, {"caller_nid": "app_runapp", "callee": "syncShellEnv", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L225"}, {"caller_nid": "app_runapp", "callee": "ensureShellRcSource", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L226"}, {"caller_nid": "app_runapp", "callee": "promptShellEnvMigration", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L233"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L237"}, {"caller_nid": "app_runapp", "callee": "syncShellEnv", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L238"}, {"caller_nid": "app_runapp", "callee": "ensureShellRcSource", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L239"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L243"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L248"}, {"caller_nid": "app_runapp", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L254"}, {"caller_nid": "app_runapp", "callee": "getToolModeOrder", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L254"}, {"caller_nid": "app_runapp", "callee": "find", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L257"}, {"caller_nid": "app_runapp", "callee": "getToolModeOrder", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L257"}, {"caller_nid": "app_runapp", "callee": "randomUUID", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L282"}, {"caller_nid": "app_runapp", "callee": "sendUsageTelemetry", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L286"}, {"caller_nid": "app_runapp", "callee": "toISOString", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L290"}, {"caller_nid": "app_runapp", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L301"}, {"caller_nid": "app_runapp", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L301"}, {"caller_nid": "app_runapp", "callee": "dirname", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L301"}, {"caller_nid": "app_runapp", "callee": "fileURLToPath", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L301"}, {"caller_nid": "app_runapp", "callee": "checkForUpdate", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L303"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L307"}, {"caller_nid": "app_runapp", "callee": "min", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L312"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L313"}, {"caller_nid": "app_runapp", "callee": "promptUpdateNotification", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L318"}, {"caller_nid": "app_runapp", "callee": "runUpdate", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L320"}, {"caller_nid": "app_runapp", "callee": "import", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L323"}, {"caller_nid": "app_runapp", "callee": "_exec", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L326"}, {"caller_nid": "app_runapp", "callee": "_exec", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L327"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L328"}, {"caller_nid": "app_runapp", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L328"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L329"}, {"caller_nid": "app_runapp", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L329"}, {"caller_nid": "app_runapp", "callee": "promptUpdateNotification", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L331"}, {"caller_nid": "app_runapp", "callee": "runUpdate", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L333"}, {"caller_nid": "app_runapp", "callee": "fetchLastReleaseDate", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L342"}, {"caller_nid": "app_runapp", "callee": "fetchOpenRouterFreeModels", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L343"}, {"caller_nid": "app_runapp", "callee": "splice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L347"}, {"caller_nid": "app_runapp", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L351"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L354"}, {"caller_nid": "app_runapp", "callee": "yellow", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L354"}, {"caller_nid": "app_runapp", "callee": "refreshInstalledEndpoints", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L359"}, {"caller_nid": "app_runapp", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L364"}, {"caller_nid": "app_runapp", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L364"}, {"caller_nid": "app_runapp", "callee": "syncFavoriteFlags", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L374"}, {"caller_nid": "app_runapp", "callee": "loadTokenUsageByProviderModel", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L379"}, {"caller_nid": "app_runapp", "callee": "_usageForRow", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L381"}, {"caller_nid": "app_runapp", "callee": "buildProviderModelTokenKey", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L383"}, {"caller_nid": "app_runapp", "callee": "now", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L403"}, {"caller_nid": "app_runapp", "callee": "on", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L563"}, {"caller_nid": "app_runapp", "callee": "loadCache", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L630"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L697"}, {"caller_nid": "app_runapp", "callee": "cyan", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L697"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L698"}, {"caller_nid": "app_runapp", "callee": "all", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L701"}, {"caller_nid": "app_runapp", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L701"}, {"caller_nid": "app_runapp", "callee": "forEach", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L705"}, {"caller_nid": "app_runapp", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L719"}, {"caller_nid": "app_runapp", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L725"}, {"caller_nid": "app_runapp", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L731"}, {"caller_nid": "app_runapp", "callee": "sortResults", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L735"}, {"caller_nid": "app_runapp", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L738"}, {"caller_nid": "app_runapp", "callee": "formatResultsAsJSON", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L738"}, {"caller_nid": "app_runapp", "callee": "saveCache", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L741"}, {"caller_nid": "app_runapp", "callee": "exit", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L743"}, {"caller_nid": "app_runapp", "callee": "write", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L747"}, {"caller_nid": "app_runapp", "callee": "flush", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L749"}, {"caller_nid": "app_runapp", "callee": "on", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L765"}, {"caller_nid": "app_runapp", "callee": "on", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L766"}, {"caller_nid": "app_runapp", "callee": "keys", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L769"}, {"caller_nid": "app_runapp", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L771"}, {"caller_nid": "app_runapp", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L771"}, {"caller_nid": "app_runapp", "callee": "max", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L773"}, {"caller_nid": "app_runapp", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L773"}, {"caller_nid": "app_runapp", "callee": "applyTierFilter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L825"}, {"caller_nid": "app_runapp", "callee": "createOverlayRenderers", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L843"}, {"caller_nid": "app_runapp", "callee": "createKeyHandler", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L880"}, {"caller_nid": "app_runapp", "callee": "createMouseEventHandler", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L941"}, {"caller_nid": "app_runapp", "callee": "createMouseHandler", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L970"}, {"caller_nid": "app_runapp", "callee": "forEach", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L975"}, {"caller_nid": "app_runapp", "callee": "setEncoding", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L982"}, {"caller_nid": "app_runapp", "callee": "resume", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L983"}, {"caller_nid": "app_runapp", "callee": "emitKeypressEvents", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L988"}, {"caller_nid": "app_runapp", "callee": "setRawMode", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L990"}, {"caller_nid": "app_runapp", "callee": "prependListener", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1005"}, {"caller_nid": "app_runapp", "callee": "on", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1015"}, {"caller_nid": "app_runapp", "callee": "on", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1034"}, {"caller_nid": "app_runapp", "callee": "on", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1043"}, {"caller_nid": "app_runapp", "callee": "setInterval", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1046"}, {"caller_nid": "app_runapp", "callee": "round", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1190"}, {"caller_nid": "app_runapp", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1193"}, {"caller_nid": "app_runapp", "callee": "sortResultsWithPinnedFavorites", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1194"}, {"caller_nid": "app_runapp", "callee": "write", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1198"}, {"caller_nid": "app_runapp", "callee": "renderTable", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1198"}, {"caller_nid": "app_runapp", "callee": "flush", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1200"}, {"caller_nid": "app_runapp", "callee": "all", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1218"}, {"caller_nid": "app_runapp", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1218"}, {"caller_nid": "app_runapp", "callee": "scheduleNextPing", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1266"}, {"caller_nid": "app_runapp", "callee": "saveCache", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1271"}, {"caller_nid": "app_runapp", "callee": "setInterval", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1276"}, {"caller_nid": "app_runapp", "callee": "setInterval", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1323"}, {"caller_nid": "app_runapp", "callee": "fetchRouterFooterStats", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1326"}, {"caller_nid": "app_runapp", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/app.js", "source_location": "L1334"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_shell_env_js", "label": "shell-env.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L1"}, {"id": "shell_env_getenvfilepath", "label": "getEnvFilePath()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L57"}, {"id": "shell_env_detectshellinfo", "label": "detectShellInfo()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L69"}, {"id": "shell_env_buildenvcontent", "label": "buildEnvContent()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L109"}, {"id": "shell_env_buildrcsourceline", "label": "buildRcSourceLine()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L152"}, {"id": "shell_env_syncshellenv", "label": "syncShellEnv()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L174"}, {"id": "shell_env_ensureshellrcsource", "label": "ensureShellRcSource()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L207"}, {"id": "shell_env_removeshellenv", "label": "removeShellEnv()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L246"}, {"id": "shell_env_promptshellenvmigration", "label": "promptShellEnvMigration()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L293"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "node_fs", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L38", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "node_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L39", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "node_path", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L40", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "node_readline", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L41", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "chalk", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L42", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "users_vava_documents_github_free_coding_models_src_provider_metadata_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L43", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "users_vava_documents_github_free_coding_models_src_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L44", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_getenvfilepath", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L57", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_detectshellinfo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L69", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_buildenvcontent", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L109", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_buildrcsourceline", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L152", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_syncshellenv", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L174", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_ensureshellrcsource", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L207", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_removeshellenv", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L246", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_shell_env_js", "target": "shell_env_promptshellenvmigration", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L293", "weight": 1.0}, {"source": "shell_env_syncshellenv", "target": "shell_env_detectshellinfo", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L175", "weight": 1.0}, {"source": "shell_env_syncshellenv", "target": "shell_env_getenvfilepath", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L176", "weight": 1.0}, {"source": "shell_env_syncshellenv", "target": "shell_env_buildenvcontent", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L192", "weight": 1.0}, {"source": "shell_env_ensureshellrcsource", "target": "shell_env_detectshellinfo", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L208", "weight": 1.0}, {"source": "shell_env_ensureshellrcsource", "target": "shell_env_getenvfilepath", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L209", "weight": 1.0}, {"source": "shell_env_ensureshellrcsource", "target": "shell_env_buildrcsourceline", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L210", "weight": 1.0}, {"source": "shell_env_removeshellenv", "target": "shell_env_detectshellinfo", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L247", "weight": 1.0}, {"source": "shell_env_removeshellenv", "target": "shell_env_getenvfilepath", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L248", "weight": 1.0}, {"source": "shell_env_promptshellenvmigration", "target": "shell_env_detectshellinfo", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L294", "weight": 1.0}], "raw_calls": [{"caller_nid": "shell_env_getenvfilepath", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L58"}, {"caller_nid": "shell_env_getenvfilepath", "callee": "homedir", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L58"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L70"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "homedir", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L71"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L73"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L74"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L76"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L77"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L79"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L80"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L84"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L84"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L85"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L87"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L87"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L88"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L90"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L91"}, {"caller_nid": "shell_env_detectshellinfo", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L96"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "entries", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L121"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L126"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L129"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L132"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L134"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L138"}, {"caller_nid": "shell_env_buildenvcontent", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L139"}, {"caller_nid": "shell_env_buildrcsourceline", "callee": "homedir", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L153"}, {"caller_nid": "shell_env_buildrcsourceline", "callee": "startsWith", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L155"}, {"caller_nid": "shell_env_buildrcsourceline", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L156"}, {"caller_nid": "shell_env_syncshellenv", "callee": "some", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L178"}, {"caller_nid": "shell_env_syncshellenv", "callee": "values", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L178"}, {"caller_nid": "shell_env_syncshellenv", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L185"}, {"caller_nid": "shell_env_syncshellenv", "callee": "unlinkSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L186"}, {"caller_nid": "shell_env_syncshellenv", "callee": "writeFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L193"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L213"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "readFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L215"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L222"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L228"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L229"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "mkdirSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L229"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "trimEnd", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L232"}, {"caller_nid": "shell_env_ensureshellrcsource", "callee": "writeFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L234"}, {"caller_nid": "shell_env_removeshellenv", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L253"}, {"caller_nid": "shell_env_removeshellenv", "callee": "unlinkSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L255"}, {"caller_nid": "shell_env_removeshellenv", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L263"}, {"caller_nid": "shell_env_removeshellenv", "callee": "readFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L265"}, {"caller_nid": "shell_env_removeshellenv", "callee": "includes", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L266"}, {"caller_nid": "shell_env_removeshellenv", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L267"}, {"caller_nid": "shell_env_removeshellenv", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L267"}, {"caller_nid": "shell_env_removeshellenv", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L267"}, {"caller_nid": "shell_env_removeshellenv", "callee": "split", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L267"}, {"caller_nid": "shell_env_removeshellenv", "callee": "writeFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L272"}, {"caller_nid": "shell_env_promptshellenvmigration", "callee": "pop", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L295"}, {"caller_nid": "shell_env_promptshellenvmigration", "callee": "split", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L295"}, {"caller_nid": "shell_env_promptshellenvmigration", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L296"}, {"caller_nid": "shell_env_promptshellenvmigration", "callee": "keys", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/shell-env.js", "source_location": "L296"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_kilo_js", "label": "kilo.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L1"}, {"id": "kilo_getkilomodelid", "label": "getKiloModelId()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L15"}, {"id": "kilo_buildopenaicompatibleproviderconfig", "label": "buildOpenAiCompatibleProviderConfig()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L21"}, {"id": "kilo_spawnkilo", "label": "spawnKilo()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L37"}, {"id": "kilo_startkilo", "label": "startKilo()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L70"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "chalk", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L6", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "users_vava_documents_github_free_coding_models_src_render_table_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L7", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "users_vava_documents_github_free_coding_models_src_kilo_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L8", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "users_vava_documents_github_free_coding_models_src_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L9", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "users_vava_documents_github_free_coding_models_src_provider_metadata_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L10", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "users_vava_documents_github_free_coding_models_src_tool_bootstrap_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L11", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "users_vava_documents_github_free_coding_models_sources_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L12", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "kilo_getkilomodelid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L15", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "kilo_buildopenaicompatibleproviderconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L21", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "kilo_spawnkilo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L37", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_kilo_js", "target": "kilo_startkilo", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L70", "weight": 1.0}, {"source": "kilo_startkilo", "target": "kilo_getkilomodelid", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L72", "weight": 1.0}, {"source": "kilo_startkilo", "target": "kilo_buildopenaicompatibleproviderconfig", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L199", "weight": 1.0}, {"source": "kilo_startkilo", "target": "kilo_spawnkilo", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L218", "weight": 1.0}], "raw_calls": [{"caller_nid": "kilo_getkilomodelid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L16"}, {"caller_nid": "kilo_getkilomodelid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L17"}, {"caller_nid": "kilo_buildopenaicompatibleproviderconfig", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L25"}, {"caller_nid": "kilo_buildopenaicompatibleproviderconfig", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L25"}, {"caller_nid": "kilo_spawnkilo", "callee": "getApiKey", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L39"}, {"caller_nid": "kilo_spawnkilo", "callee": "import", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L46"}, {"caller_nid": "kilo_spawnkilo", "callee": "spawn", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L47"}, {"caller_nid": "kilo_spawnkilo", "callee": "resolveToolBinaryPath", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L47"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L75"}, {"caller_nid": "kilo_startkilo", "callee": "green", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L75"}, {"caller_nid": "kilo_startkilo", "callee": "bold", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L75"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L76"}, {"caller_nid": "kilo_startkilo", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L76"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L77"}, {"caller_nid": "kilo_startkilo", "callee": "loadKiloConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L79"}, {"caller_nid": "kilo_startkilo", "callee": "saveKiloConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L211"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L213"}, {"caller_nid": "kilo_startkilo", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L213"}, {"caller_nid": "kilo_startkilo", "callee": "getKiloConfigPath", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L213"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L214"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L215"}, {"caller_nid": "kilo_startkilo", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L215"}, {"caller_nid": "kilo_startkilo", "callee": "log", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/kilo.js", "source_location": "L216"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_testfcm_js", "label": "testfcm.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L1"}, {"id": "testfcm_normalizetestfcmtoolname", "label": "normalizeTestfcmToolName()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L156"}, {"id": "testfcm_resolvetestfcmtoolspec", "label": "resolveTestfcmToolSpec()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L168"}, {"id": "testfcm_hasconfiguredkey", "label": "hasConfiguredKey()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L181"}, {"id": "testfcm_createtestfcmrunid", "label": "createTestfcmRunId()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L195"}, {"id": "testfcm_extractjsonpayload", "label": "extractJsonPayload()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L211"}, {"id": "testfcm_picktestfcmselectionindex", "label": "pickTestfcmSelectionIndex()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L236"}, {"id": "testfcm_detecttranscriptfindings", "label": "detectTranscriptFindings()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L302"}, {"id": "testfcm_classifytooltranscript", "label": "classifyToolTranscript()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L329"}, {"id": "testfcm_buildfixtasks", "label": "buildFixTasks()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L363"}, {"id": "testfcm_buildtestfcmreport", "label": "buildTestfcmReport()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L397"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_normalizetestfcmtoolname", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L156", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_resolvetestfcmtoolspec", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L168", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_hasconfiguredkey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L181", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_createtestfcmrunid", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L195", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_extractjsonpayload", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L211", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_picktestfcmselectionindex", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L236", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_detecttranscriptfindings", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L302", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_classifytooltranscript", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L329", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_buildfixtasks", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L363", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_testfcm_js", "target": "testfcm_buildtestfcmreport", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L397", "weight": 1.0}, {"source": "testfcm_resolvetestfcmtoolspec", "target": "testfcm_normalizetestfcmtoolname", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L169", "weight": 1.0}, {"source": "testfcm_classifytooltranscript", "target": "testfcm_detecttranscriptfindings", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L341", "weight": 1.0}], "raw_calls": [{"caller_nid": "testfcm_normalizetestfcmtoolname", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L157"}, {"caller_nid": "testfcm_normalizetestfcmtoolname", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L158"}, {"caller_nid": "testfcm_normalizetestfcmtoolname", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L158"}, {"caller_nid": "testfcm_hasconfiguredkey", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L182"}, {"caller_nid": "testfcm_hasconfiguredkey", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L183"}, {"caller_nid": "testfcm_hasconfiguredkey", "callee": "some", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L183"}, {"caller_nid": "testfcm_createtestfcmrunid", "callee": "toISOString", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L196"}, {"caller_nid": "testfcm_createtestfcmrunid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L197"}, {"caller_nid": "testfcm_createtestfcmrunid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L197"}, {"caller_nid": "testfcm_createtestfcmrunid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L197"}, {"caller_nid": "testfcm_createtestfcmrunid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L197"}, {"caller_nid": "testfcm_createtestfcmrunid", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L197"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L212"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L213"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L215"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L215"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "parse", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L217"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L218"}, {"caller_nid": "testfcm_extractjsonpayload", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L220"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L237"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L244"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "has", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L247"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "set", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L248"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "get", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L257"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L258"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L259"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L267"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "get", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L268"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "find", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L271"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L276"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "get", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L277"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "find", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L279"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L284"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L287"}, {"caller_nid": "testfcm_picktestfcmselectionindex", "callee": "findIndex", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L290"}, {"caller_nid": "testfcm_detecttranscriptfindings", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L303"}, {"caller_nid": "testfcm_detecttranscriptfindings", "callee": "match", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L307"}, {"caller_nid": "testfcm_detecttranscriptfindings", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L310"}, {"caller_nid": "testfcm_classifytooltranscript", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L330"}, {"caller_nid": "testfcm_classifytooltranscript", "callee": "find", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L331"}, {"caller_nid": "testfcm_buildfixtasks", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L366"}, {"caller_nid": "testfcm_buildfixtasks", "callee": "add", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L367"}, {"caller_nid": "testfcm_buildfixtasks", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L367"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L399"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L400"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L401"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L402"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L403"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L404"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "trim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L405"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L405"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L407"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L408"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L409"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "toUpperCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L409"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L410"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L411"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L412"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L413"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L414"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L414"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L415"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L416"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L417"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L418"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L419"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L420"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L421"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L424"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L425"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L427"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L429"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L431"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L432"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L433"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L434"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L437"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L438"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L441"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L444"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L446"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L448"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L449"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L452"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L455"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L457"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L459"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L460"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L463"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L466"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L468"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L470"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L471"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L474"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L477"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L479"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L481"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L482"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L484"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L485"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L486"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L488"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L489"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L490"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L492"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L493"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L494"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L495"}, {"caller_nid": "testfcm_buildtestfcmreport", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/testfcm.js", "source_location": "L497"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_favorites_js", "label": "favorites.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L1"}, {"id": "favorites_ensurefavoritesconfig", "label": "ensureFavoritesConfig()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L39"}, {"id": "favorites_tofavoritekey", "label": "toFavoriteKey()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L56"}, {"id": "favorites_syncfavoriteflags", "label": "syncFavoriteFlags()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L66"}, {"id": "favorites_togglefavoritemodel", "label": "toggleFavoriteModel()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L86"}, {"id": "favorites_reorderfavorite", "label": "reorderFavorite()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L115"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_favorites_js", "target": "users_vava_documents_github_free_coding_models_src_config_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L32", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_favorites_js", "target": "favorites_ensurefavoritesconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L39", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_favorites_js", "target": "favorites_tofavoritekey", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L56", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_favorites_js", "target": "favorites_syncfavoriteflags", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L66", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_favorites_js", "target": "favorites_togglefavoritemodel", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L86", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_favorites_js", "target": "favorites_reorderfavorite", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L115", "weight": 1.0}, {"source": "favorites_syncfavoriteflags", "target": "favorites_ensurefavoritesconfig", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L67", "weight": 1.0}, {"source": "favorites_syncfavoriteflags", "target": "favorites_tofavoritekey", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L70", "weight": 1.0}, {"source": "favorites_togglefavoritemodel", "target": "favorites_ensurefavoritesconfig", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L88", "weight": 1.0}, {"source": "favorites_togglefavoritemodel", "target": "favorites_tofavoritekey", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L89", "weight": 1.0}, {"source": "favorites_reorderfavorite", "target": "favorites_ensurefavoritesconfig", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L117", "weight": 1.0}, {"source": "favorites_reorderfavorite", "target": "favorites_tofavoritekey", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L118", "weight": 1.0}], "raw_calls": [{"caller_nid": "favorites_ensurefavoritesconfig", "callee": "isArray", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L40"}, {"caller_nid": "favorites_ensurefavoritesconfig", "callee": "filter", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L42"}, {"caller_nid": "favorites_syncfavoriteflags", "callee": "map", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L68"}, {"caller_nid": "favorites_syncfavoriteflags", "callee": "get", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L71"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "loadConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L87"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L90"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "splice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L92"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L93"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "replaceConfigContents", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L96"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L99"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L100"}, {"caller_nid": "favorites_togglefavoritemodel", "callee": "replaceConfigContents", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L103"}, {"caller_nid": "favorites_reorderfavorite", "callee": "loadConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L116"}, {"caller_nid": "favorites_reorderfavorite", "callee": "indexOf", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L119"}, {"caller_nid": "favorites_reorderfavorite", "callee": "saveConfig", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L124"}, {"caller_nid": "favorites_reorderfavorite", "callee": "replaceConfigContents", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/favorites.js", "source_location": "L125"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "label": "opencode-config.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L1"}, {"id": "opencode_config_loadopencodeconfig", "label": "loadOpenCodeConfig()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L27"}, {"id": "opencode_config_saveopencodeconfig", "label": "saveOpenCodeConfig()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L36"}, {"id": "opencode_config_restoreopencodebackup", "label": "restoreOpenCodeBackup()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L44"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "target": "node_fs", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L19", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "target": "node_path", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L20", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "target": "node_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L21", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "target": "opencode_config_loadopencodeconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L27", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "target": "opencode_config_saveopencodeconfig", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L36", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_opencode_config_js", "target": "opencode_config_restoreopencodebackup", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L44", "weight": 1.0}], "raw_calls": [{"caller_nid": "opencode_config_loadopencodeconfig", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L29"}, {"caller_nid": "opencode_config_loadopencodeconfig", "callee": "parse", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L30"}, {"caller_nid": "opencode_config_loadopencodeconfig", "callee": "readFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L30"}, {"caller_nid": "opencode_config_saveopencodeconfig", "callee": "mkdirSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L37"}, {"caller_nid": "opencode_config_saveopencodeconfig", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L38"}, {"caller_nid": "opencode_config_saveopencodeconfig", "callee": "copyFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L39"}, {"caller_nid": "opencode_config_saveopencodeconfig", "callee": "writeFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L41"}, {"caller_nid": "opencode_config_saveopencodeconfig", "callee": "stringify", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L41"}, {"caller_nid": "opencode_config_restoreopencodebackup", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L45"}, {"caller_nid": "opencode_config_restoreopencodebackup", "callee": "copyFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/opencode-config.js", "source_location": "L46"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_security_js", "label": "security.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L1"}, {"id": "security_getconfigpath", "label": "getConfigPath()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L40"}, {"id": "security_getconfigpermissions", "label": "getConfigPermissions()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L50"}, {"id": "security_isconfigsecure", "label": "isConfigSecure()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L71"}, {"id": "security_fixconfigpermissions", "label": "fixConfigPermissions()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L82"}, {"id": "security_formatmode", "label": "formatMode()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L98"}, {"id": "security_formatmoderwx", "label": "formatModeRwx()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L103"}, {"id": "security_checkconfigsecurity", "label": "checkConfigSecurity()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L127"}, {"id": "security_promptsecurityfix", "label": "promptSecurityFix()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L159"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "node_fs", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L34", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "node_path", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L35", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "node_os", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L36", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "node_readline", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L37", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_getconfigpath", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L40", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_getconfigpermissions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L50", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_isconfigsecure", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L71", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_fixconfigpermissions", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L82", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_formatmode", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L98", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_formatmoderwx", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L103", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_checkconfigsecurity", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L127", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_security_js", "target": "security_promptsecurityfix", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L159", "weight": 1.0}, {"source": "security_getconfigpermissions", "target": "security_getconfigpath", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L51", "weight": 1.0}, {"source": "security_isconfigsecure", "target": "security_getconfigpermissions", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L72", "weight": 1.0}, {"source": "security_fixconfigpermissions", "target": "security_getconfigpath", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L83", "weight": 1.0}, {"source": "security_checkconfigsecurity", "target": "security_getconfigpermissions", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L128", "weight": 1.0}, {"source": "security_checkconfigsecurity", "target": "security_formatmode", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L141", "weight": 1.0}, {"source": "security_checkconfigsecurity", "target": "security_formatmoderwx", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L142", "weight": 1.0}, {"source": "security_checkconfigsecurity", "target": "security_promptsecurityfix", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L154", "weight": 1.0}, {"source": "security_promptsecurityfix", "target": "security_fixconfigpermissions", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L174", "weight": 1.0}, {"source": "security_promptsecurityfix", "target": "security_getconfigpath", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L186", "weight": 1.0}], "raw_calls": [{"caller_nid": "security_getconfigpath", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L41"}, {"caller_nid": "security_getconfigpath", "callee": "homedir", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L41"}, {"caller_nid": "security_getconfigpermissions", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L54"}, {"caller_nid": "security_getconfigpermissions", "callee": "statSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L58"}, {"caller_nid": "security_fixconfigpermissions", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L86"}, {"caller_nid": "security_fixconfigpermissions", "callee": "chmodSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L90"}, {"caller_nid": "security_formatmode", "callee": "padStart", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L99"}, {"caller_nid": "security_formatmode", "callee": "toString", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L99"}, {"caller_nid": "security_formatmoderwx", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L110"}, {"caller_nid": "security_formatmoderwx", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L112"}, {"caller_nid": "security_formatmoderwx", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L117"}, {"caller_nid": "security_formatmoderwx", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L118"}, {"caller_nid": "security_formatmoderwx", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L118"}, {"caller_nid": "security_formatmoderwx", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L119"}, {"caller_nid": "security_formatmoderwx", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L119"}, {"caller_nid": "security_formatmoderwx", "callee": "join", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L120"}, {"caller_nid": "security_formatmoderwx", "callee": "slice", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L120"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L144"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L145"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L146"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L147"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L148"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L149"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L150"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L151"}, {"caller_nid": "security_checkconfigsecurity", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L152"}, {"caller_nid": "security_promptsecurityfix", "callee": "createInterface", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L160"}, {"caller_nid": "security_promptsecurityfix", "callee": "close", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L170"}, {"caller_nid": "security_promptsecurityfix", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L173"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L177"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L178"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L179"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L182"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L183"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L184"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L185"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L186"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L187"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L191"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L192"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L193"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L194"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L195"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L196"}, {"caller_nid": "security_promptsecurityfix", "callee": "close", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L200"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L202"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L203"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L204"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L205"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L206"}, {"caller_nid": "security_promptsecurityfix", "callee": "error", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/security.js", "source_location": "L207"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_constants_js", "label": "constants.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L1"}, {"id": "constants_mscell", "label": "msCell()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L118"}, {"id": "constants_spincell", "label": "spinCell()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L134"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_constants_js", "target": "chalk", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L42", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_constants_js", "target": "users_vava_documents_github_free_coding_models_src_mouse_ts", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L51", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_constants_js", "target": "constants_mscell", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L118", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_constants_js", "target": "constants_spincell", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L134", "weight": 1.0}], "raw_calls": [{"caller_nid": "constants_mscell", "callee": "dim", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L119"}, {"caller_nid": "constants_mscell", "callee": "padStart", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L119"}, {"caller_nid": "constants_mscell", "callee": "padStart", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L120"}, {"caller_nid": "constants_mscell", "callee": "String", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L120"}, {"caller_nid": "constants_mscell", "callee": "red", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L121"}, {"caller_nid": "constants_mscell", "callee": "greenBright", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L122"}, {"caller_nid": "constants_mscell", "callee": "yellow", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L123"}, {"caller_nid": "constants_mscell", "callee": "red", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L124"}, {"caller_nid": "constants_spincell", "callee": "yellow", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L134"}, {"caller_nid": "constants_spincell", "callee": "padEnd", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/constants.js", "source_location": "L134"}]}
@@ -1 +0,0 @@
1
- {"nodes": [{"id": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "label": "changelog-loader.js", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L1"}, {"id": "changelog_loader_loadchangelog", "label": "loadChangelog()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L25"}, {"id": "changelog_loader_getlatestchanges", "label": "getLatestChanges()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L81"}, {"id": "changelog_loader_formatchangelogfordisplay", "label": "formatChangelogForDisplay()", "file_type": "code", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L91"}], "edges": [{"source": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "target": "fs", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L13", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "target": "path", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L14", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "target": "url", "relation": "imports_from", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L15", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "target": "changelog_loader_loadchangelog", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L25", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "target": "changelog_loader_getlatestchanges", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L81", "weight": 1.0}, {"source": "users_vava_documents_github_free_coding_models_src_changelog_loader_js", "target": "changelog_loader_formatchangelogfordisplay", "relation": "contains", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L91", "weight": 1.0}, {"source": "changelog_loader_getlatestchanges", "target": "changelog_loader_loadchangelog", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L82", "weight": 1.0}, {"source": "changelog_loader_formatchangelogfordisplay", "target": "changelog_loader_getlatestchanges", "relation": "calls", "confidence": "EXTRACTED", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L92", "weight": 1.0}], "raw_calls": [{"caller_nid": "changelog_loader_loadchangelog", "callee": "existsSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L26"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "readFileSync", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L28"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "split", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L30"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "match", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L37"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "match", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L50"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L54"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "toLowerCase", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L56"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "match", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L62"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L63"}, {"caller_nid": "changelog_loader_loadchangelog", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L63"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "entries", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L101"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L103"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L107"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "replace", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L107"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "substring", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L109"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L111"}, {"caller_nid": "changelog_loader_formatchangelogfordisplay", "callee": "push", "source_file": "/Users/vava/Documents/GitHub/free-coding-models/src/changelog-loader.js", "source_location": "L113"}]}