Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
196 changes: 187 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ serde_json = "1.0.145"
streaming-iterator = "0.1.9"
tempfile = "3.23.0"
thiserror = "2.0.17"
tokio = { version = "1.52", features = ["rt-multi-thread", "macros", "io-std", "sync"] }
tokio = { version = "1.52", features = ["rt-multi-thread", "macros", "io-std", "sync", "time"] }
toml = "1.1.2"
tree-sitter = "0.26"

Expand Down
2 changes: 1 addition & 1 deletion claude-plugin/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oxcode",
"version": "0.4.0",
"description": "PageRank-curated code intelligence for coding agents. Bundles the oxcode MCP server over stdio (self-updating from v0.1.2): oxcode_index builds/refreshes the index; explore/search/callers/callees/symbol/files/status query it. explore also surfaces n-ary impl/module hyperedges and a crate dependency graph for architecture-altitude context.",
"description": "PageRank-curated code intelligence for coding agents. Bundles the oxcode MCP server over stdio (self-updating from v0.1.2): oxcode_watch builds the index and keeps it current as files change — a file lock elects a single writer per folder while other instances serve reads; explore/search/callers/callees/symbol/files/status query it. explore also surfaces n-ary impl/module hyperedges and a crate dependency graph for architecture-altitude context.",
"author": { "name": "oxgraph", "email": "michael@snowmead.com" },
"homepage": "https://oxgraph.io",
"repository": "https://github.com/oxgraph/oxcode",
Expand Down
Loading