MCPcopy Create free account

hub / github.com/TtTRz/graphify-rs / functions

Functions909 in github.com/TtTRz/graphify-rs

↓ 1 callersFunctionis_private_host
Check whether a host string refers to a private or reserved address.
crates/graphify-security/src/url_validator.rs:37
↓ 1 callersFunctionis_sensitive
Returns `true` when the file at `path` looks like it contains secrets. Checks are performed against the file *name* and the full path string (lowerca
crates/graphify-detect/src/sensitive.rs:77
↓ 1 callersFunctionis_test_file
(path: &str)
src/main.rs:934
↓ 1 callersFunctionjava_config
()
crates/graphify-extract/src/lang_config.rs:127
↓ 1 callersFunctionjava_config
()
crates/graphify-extract/src/treesitter/treesitter_config.rs:113
↓ 1 callersFunctionjulia_config
()
crates/graphify-extract/src/lang_config.rs:388
↓ 1 callersFunctionkotlin_config
()
crates/graphify-extract/src/lang_config.rs:219
↓ 1 callersFunctionleiden_partition
Leiden algorithm: Louvain phase + refinement phase, iterated until stable. Reference: Traag, Waltman & van Eck (2019) "From Louvain to Leiden: guaran
crates/graphify-cluster/src/lib.rs:205
↓ 1 callersFunctionlooks_like_paper
Heuristic: read the first N chars and count regex hits from [`PAPER_SIGNALS`]. Returns `true` when the hit count reaches [`PAPER_SIGNAL_THRESHOLD`].
crates/graphify-detect/src/classify.rs:104
↓ 1 callersFunctionlua_config
()
crates/graphify-extract/src/lang_config.rs:300
↓ 1 callersFunctionmake_edge
(src: &str, tgt: &str)
crates/graphify-cluster/src/lib.rs:744
↓ 1 callersFunctionmake_graph_edge
(src: &str, tgt: &str, relation: &str, file: &str)
crates/graphify-build/src/codegraph_merge.rs:394
↓ 1 callersFunctionmake_graph_with_edges
()
crates/graphify-serve/src/search.rs:192
↓ 1 callersFunctionmake_node
(id: &str)
benches/graphify_bench.rs:11
↓ 1 callersFunctionmake_node
(id: &str)
crates/graphify-cluster/src/lib.rs:732
↓ 1 callersFunctionmap_edge_kind
CodeGraph edge kind -> graphify-rs relation string. Returns `None` for `contains` (skipped) and unknown kinds.
crates/graphify-build/src/codegraph_merge.rs:41
↓ 1 callersFunctionmap_node_kind
CodeGraph node kind -> graphify-rs NodeType.
crates/graphify-build/src/codegraph_merge.rs:11
↓ 1 callersFunctionmatches_word
Check if `word` appears as a complete word in `s`, using `_` and `.` as boundaries.
crates/graphify-detect/src/sensitive.rs:54
↓ 1 callersFunctionmerge_small_communities
Merge communities smaller than `MIN_COMMUNITY_SIZE` into their most-connected neighboring community.
crates/graphify-cluster/src/lib.rs:504
↓ 1 callersFunctionnormalize_dart_function_name
(lang: &str, func_name: &str)
crates/graphify-extract/src/treesitter/handlers.rs:186
↓ 1 callersFunctionobjc_config
()
crates/graphify-extract/src/lang_config.rs:368
↓ 1 callersFunctionopencode_install
`graphify-rs opencode install` — project-level OpenCode integration.
src/install.rs:272
↓ 1 callersFunctionopencode_uninstall
`graphify-rs opencode uninstall`
src/install.rs:293
↓ 1 callersFunctionparse_nonstandard_ipv4
Try parsing non-standard IPv4 representations (decimal, hex, octal).
crates/graphify-security/src/url_validator.rs:95
↓ 1 callersFunctionphp_config
()
crates/graphify-extract/src/lang_config.rs:255
↓ 1 callersFunctionpowershell_config
()
crates/graphify-extract/src/lang_config.rs:336
↓ 1 callersFunctionpython_config
()
crates/graphify-extract/src/treesitter/treesitter_config.rs:46
↓ 1 callersFunctionrandom_walk
Deterministic random walk from a start node.
crates/graphify-analyze/src/embedding.rs:181
↓ 1 callersFunctionread_claude_code_oauth_token
Read OAuth access token from Claude Code's local credential storage. Checks both `~/.claude/config.json` and `~/.claude/credentials.json` for an OAut
crates/graphify-extract/src/semantic/anthropic_oauth.rs:9
↓ 1 callersFunctionregister_in_file
Register a skill reference in a file (like ~/.claude/CLAUDE.md).
src/install.rs:403
↓ 1 callersFunctionregister_opencode_config
Register graphify-rs plugin in opencode.json.
src/install.rs:632
↓ 1 callersFunctionremove_claude_settings_hook
Remove Claude PreToolUse hook from .claude/settings.json.
src/install.rs:480
↓ 1 callersFunctionremove_codebuddy_settings_hook
Remove CodeBuddy PreToolUse hook from .codebuddy/settings.json.
src/install.rs:554
↓ 1 callersFunctionresolve_backslash_import
Resolve a PHP backslash-separated import. Labels like `"App\Models\User"` → try "User" as stem, then "Models".
crates/graphify-extract/src/lib.rs:768
↓ 1 callersFunctionresolve_c_include
Resolve a C/C++ `#include` to target entities. Include labels are like `"stdio.h"` or `"myheader.h"`. Strips the extension and matches the stem to fi
crates/graphify-extract/src/lib.rs:743
↓ 1 callersFunctionresolve_language
Resolve a language identifier to its tree-sitter `Language` and `TsConfig`. Returns `None` for unsupported languages.
crates/graphify-extract/src/treesitter/treesitter_config.rs:25
↓ 1 callersFunctionresolve_llm_config
( llm_config: Option<&crate::config::LLMConfig>, verb: Verbosity, )
src/cmd_build.rs:425
↓ 1 callersFunctionruby_config
()
crates/graphify-extract/src/lang_config.rs:178
↓ 1 callersFunctionruby_config
()
crates/graphify-extract/src/treesitter/treesitter_config.rs:169
↓ 1 callersFunctionrun_mcp_server
Start the MCP server, reading JSON-RPC requests from stdin and writing responses to stdout. Logs go to stderr so they don't interfere with the protoco
crates/graphify-serve/src/mcp/mod.rs:125
↓ 1 callersFunctionrust_config
()
crates/graphify-extract/src/lang_config.rs:111
↓ 1 callersFunctionrust_config
()
crates/graphify-extract/src/treesitter/treesitter_config.rs:83
↓ 1 callersFunctionsample_edge
()
crates/graphify-core/src/model.rs:212
↓ 1 callersFunctionsample_graph
()
crates/graphify-export/src/svg.rs:157
↓ 1 callersFunctionsample_graph
()
crates/graphify-export/src/graphml.rs:140
↓ 1 callersFunctionsample_graph
()
crates/graphify-export/src/report.rs:293
↓ 1 callersFunctionsample_graph
()
crates/graphify-export/src/json.rs:32
↓ 1 callersFunctionsample_graph
()
crates/graphify-export/src/wiki.rs:209
↓ 1 callersFunctionsample_graph
()
crates/graphify-export/src/cypher.rs:131
↓ 1 callersFunctionsanitize_filename
Sanitize a URL or string into a safe filename.
crates/graphify-ingest/src/lib.rs:265
↓ 1 callersFunctionsanitize_var
Make a valid Cypher variable name from a node ID.
crates/graphify-export/src/cypher.rs:76
↓ 1 callersFunctionscala_config
()
crates/graphify-extract/src/lang_config.rs:239
↓ 1 callersMethodset_hyperedges
Replace the hyperedges list.
crates/graphify-core/src/graph.rs:98
↓ 1 callersFunctionshould_ignore
Check if a path should be ignored based on common patterns.
crates/graphify-watch/src/lib.rs:47
↓ 1 callersFunctionshould_skip_entry
Returns `true` if this entry should be pruned from the walk.
crates/graphify-detect/src/lib.rs:295
↓ 1 callersFunctionsmart_summary
Generate a multi-level graph summary within a token budget. - `Detailed`: Equivalent to `subgraph_to_text` on the full graph. - `Community`: One repr
crates/graphify-serve/src/lib.rs:190
↓ 1 callersFunctionstart_server
Start the MCP server over stdio (JSON-RPC 2.0). Reads requests from stdin, writes responses to stdout. This is the entry point called by the CLI `ser
crates/graphify-serve/src/lib.rs:387
↓ 1 callersFunctionstep_cluster
( graph: &mut graphify_core::graph::KnowledgeGraph, verb: Verbosity, )
src/cmd_build.rs:472
↓ 1 callersFunctionstep_detect
( root: &Path, output_dir: &Path, update: bool, verb: Verbosity, )
src/cmd_build.rs:114
↓ 1 callersFunctionstep_export
( graph: &graphify_core::graph::KnowledgeGraph, communities: &HashMap<usize, Vec<String>>, cohesio
src/cmd_build.rs:543
↓ 1 callersFunctionstep_extract_ast
( root: &Path, cache_dir: &Path, detection: &graphify_detect::DetectResult, code_only: bool,
src/cmd_build.rs:167
↓ 1 callersFunctionstep_extract_semantic
( root: &Path, cache_dir: &Path, detection: &graphify_detect::DetectResult, extractions: &mut
src/cmd_build.rs:283
↓ 1 callersFunctionstrip_scripts_and_styles
Strip `<script>` and `<style>` blocks from HTML.
crates/graphify-ingest/src/lib.rs:236
↓ 1 callersFunctionswift_config
()
crates/graphify-extract/src/lang_config.rs:279
↓ 1 callersFunctiontarjan_scc
Iterative Tarjan's algorithm for finding strongly connected components.
crates/graphify-analyze/src/lib.rs:630
↓ 1 callersFunctionuninstall_single_hook
Remove the graphify block from a single hook file.
crates/graphify-hooks/src/lib.rs:99
↓ 1 callersFunctionunregister_opencode_config
Remove graphify-rs plugin from opencode.json.
src/install.rs:661
↓ 1 callersFunctionunwrap_declarator_name
(node: Node, source: &[u8])
crates/graphify-extract/src/treesitter/mod.rs:338
↓ 1 callersFunctionwatch_directory
Watch `root` for file changes and trigger rebuilds into `output_dir`. This is an async loop that runs until cancelled. On each batch of debounced fil
crates/graphify-watch/src/lib.rs:241
↓ 1 callersFunctionwrite_claude_settings_hook
Write Claude PreToolUse hook to .claude/settings.json.
src/install.rs:429
↓ 1 callersFunctionwrite_codebuddy_settings_hook
Write CodeBuddy PreToolUse hook to .codebuddy/settings.json.
src/install.rs:503
↓ 1 callersFunctionwrite_codex_hooks
Write Codex hooks.json.
src/install.rs:577
↓ 1 callersFunctionwrite_opencode_plugin
Write OpenCode plugin file.
src/install.rs:603
↓ 1 callersFunctionzig_config
()
crates/graphify-extract/src/lang_config.rs:320
Functionadd_and_get_node
()
crates/graphify-core/src/graph.rs:278
Functionadd_edge_and_neighbors
()
crates/graphify-core/src/graph.rs:295
Functionall_21_languages_have_configs
()
crates/graphify-extract/src/lang_config.rs:467
Functionall_edges_have_source_file
()
crates/graphify-extract/tests/treesitter.rs:314
Functionall_edges_have_source_file
()
crates/graphify-extract/tests/ast_extract.rs:755
Functionall_empty
()
crates/graphify-core/src/id.rs:63
Functionambiguous_edge_is_surprising
()
crates/graphify-analyze/src/tests.rs:149
Functionanalysis_result_default
()
crates/graphify-core/src/model.rs:317
Functionassert_send_sync
()
crates/graphify-extract/src/parser.rs:51
Functionbasic_parts
()
crates/graphify-core/src/id.rs:38
Functionbench_cluster
(c: &mut Criterion)
benches/graphify_bench.rs:55
Functionbench_detect_cycles
(c: &mut Criterion)
benches/graphify_bench.rs:69
Functionbench_extraction
(c: &mut Criterion)
benches/graphify_bench.rs:94
Functionbench_god_nodes
(c: &mut Criterion)
benches/graphify_bench.rs:76
Functionbench_json_export
(c: &mut Criterion)
benches/graphify_bench.rs:83
Functionbench_pagerank
(c: &mut Criterion)
benches/graphify_bench.rs:62
Functionbuild_creates_index_entries
()
crates/graphify-serve/src/search.rs:305
Functionbuild_from_empty
()
crates/graphify-build/src/lib.rs:97
Functionbuild_label_weight_higher_than_id
()
crates/graphify-serve/src/search.rs:318
Functionbuild_merges_multiple_extractions
()
crates/graphify-build/src/lib.rs:136
Functionbuild_prompts_contain_file_type
()
crates/graphify-extract/src/semantic/mod.rs:282
Functionbuild_source_file_tokens
()
crates/graphify-serve/src/search.rs:346
Functionbuild_with_nodes_and_edges
()
crates/graphify-build/src/lib.rs:105
Functionc_extracts_includes_and_functions
()
crates/graphify-extract/tests/ast_extract.rs:260
Functionc_extracts_structs
()
crates/graphify-extract/tests/ast_extract.rs:278
Functionc_include_creates_uses_edges
()
crates/graphify-extract/src/tests.rs:423
← previousnext →301–400 of 909, ranked by callers