Evidence-first code research for AI agents and developers. Octocode researches your local code and external code alike (GitHub repos, PRs, npm) with one toolset: ripgrep + AST search, trees, precise reads, and LSP.
$ npx -y skills add bgauryy/octocode-mcp --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: bgauryy/octocode-mcp
What's inside
Evidence-first code research for AI agents and developers.
Octocode researches your local code and external code alike (GitHub repos, PRs, npm) with one toolset: ripgrep + AST search, trees, precise reads, and LSP. Use it as a CLI or MCP server, backed by a Rust engine for fast, token-efficient results across single files or mega-repos.
Prerequisites: Node.js 20.12+
1. Run the Octocode CLI with npx
npx octocode --help
2. Authenticate with GitHub - optional, but unlocks private repositories and higher API rate limits:
npx octocode auth login
npx octocode status # verify the active token source
3. Choose your interface. Same tools and Rust engine on both. (Clone is on by default in the CLI, opt-in for MCP.)
π₯οΈ CLI - research straight from your terminal:
npx octocode
π€ MCP - one-click install:
Claude Code:
claude mcp add-json octocode --scope user '{"command":"npx","type":"stdio","args":["octocode-mcp@latest"]}'
Any other client: npx octocode install
Add to your MCP client config (or use a one-click install above):
{
"octocode": {
"command": "npx",
"type": "stdio",
"args": ["octocode-mcp@latest"]
}
}
Put a GitHub token and options under env (see Configuration).
Just run npx octocode, agents figure out the rest. The bare command prints built-in usage and the full tool catalog, so any coding agent knows how to drive it out of the box, no MCP client or extra wiring required.
npx octocode # self-describing usage for agents
npx octocode tools # list every tool
npx octocode tools localSearchCode --scheme # inspect a tool's schema
Every MCP tool is also a plain command: JSON in, token-efficient YAML out. Local paths route to local tools; owner/repo[/path] routes to GitHub.
npx octocode tools localSearchCode \
--queries '{"path":".","searchText":"authenticate","maxFiles":20}'
results:
- id: localSearchCode-1
data:
files:
- path: src/auth.ts
matches:
- line: 12
value: "export async function authenticate(req: Request) {"
Learn more at octocode.ai.
Agents code better from evidence than from guesses. Octocode researches two worlds with one flow, your local code and external code on GitHub and npm, and hands back compact, citable context before an agent changes, reviews, or explains code. Code is truth; context is the map.
Most tools do one slice (web search, or grep your repo) and hand back a fixed blob. Octocode covers the whole loop and lets the agent decide what data it needs next:
What you can do (whenever the next step needs proven context, not a guess):
| Need | Use Octocode to |
|---|---|
| Codebase questions | Search local or GitHub code, read exact regions, browse trees, and carry file/line anchors into the answer. |
| Implementation research | Compare patterns across repositories, npm packages, pull requests, commits, and local files before changing code. |
| Semantic navigation | Resolve definitions, references, callers/callees, call hierarchy, hovers, symbols, diagnostics, and type relationships through LSP. |
| Structural matching | Run AST-shaped searches with patterns or YAML rules so comments and strings do not become false positives. |
| Large-file context | Minify, skeletonize, or paginate code so agents spend tokens on relevant structure instead of boilerplate. |
| Agent workflows | Same engine via MCP, CLI, and Agent Skills. |
A blind, head-to-head test on research-oriented flows β not simple lookups (multi-hop traces, dependency/call-graph chains, commit ranges, blast-radius, PR reviews across repos).
How it works: 30 GitHub questions Γ 3 passes; Octocode vs gh, gh+Headroom, and gh+RTK on
identical questions (only the CLI differs). A blind judge (gpt-5.5) grades correctness; the metric is
characters through the model, counted from instrumented logs (chars β tokens). Result: at
near-parity correctness, Octocode answers with far fewer characters than every baseline.
βΆ Open the interactive report Β· run it / method Β· questions Β· all reports
17 tools in the full catalog. MCP registers 14 by default; the CLI exposes 15
because clone is enabled there by default. ghCloneRepo is opt-in on MCP
(ENABLE_CLONE=true), while ghListReleases and ghSearchDiscussions are opt-in
on both surfaces. Local tools default on for the CLI and off for the MCP
server (ENABLE_LOCAL=true enables them on MCP; ENABLE_LOCAL=false disables on
CLI). Flags: Configuration.
Token knobs. concise:true returns path/title-only lists. minify controls file read density: symbols = skeleton with line numbers, standard = comments/blanks stripped (default), none = exact bytes.
| Tool | What it does | Knob |
|---|---|---|
ghSearchCode | Code and path search across GitHub by owner, repo, path, filename, extension, and match filters. Accepts 1 to 5 parallel queries. | concise |
ghGetFileContent | Read a GitHub file or region: full file, line range, match slice, or paginated chars. | minify |
ghViewRepoStructure | Browse a repository's directory tree, plus opt-in repo enrichments. | include |
ghSearchRepos | Discover repositories by keywords, owner, topic, language, stars, updated, license, visibility. | concise |
ghSearchPullRequests | Search pull requests, or deep-read one PR: files, patches, comments, reviews, commits. | content |
ghSearchIssues | Search issues, or read one issue's body and comments. | content |
ghSearchCommits | Walk a repo's commit history, or compare two refs (base+head). | includeDiff |
ghListReleases | List releases + latest, with opt-in assets. Opt-in (ENABLE_RELEASES=true). | includeAssets |
ghSearchDiscussions | Search a repo's Discussions (Q&A, RFCs, announcements) via GraphQL. Opt-in (ENABLE_DISCUSSIONS=true). | keywordsToSearch |
ghCloneRepo | Clone a repo or sparse subtree into the local cache for local/LSP analysis. Opt-in on MCP (ENABLE_CLONE=true; CLI on by default). | sparsePath |
| Tool | What it does | Knob |
|---|---|---|
localSearchCode | Local code/text search returning file and line anchors. mode:"structural" runs Octocode AST shape queries (pattern or rule). | mode |
localViewStructure | Browse a local directory tree: depth, filters, pagination, metadata. | detail |
localFindFiles | Find local files and directories by name, path, regex, extension, size, time, permissions, type. | |
localFindDeadCode | Find likely-unreferenced exports and dead-code clusters using whole-repository reachability analysis. | entrypoints |
localGetFileContent | Read a local file or region: exact slice, match string, line range, or paginated chars. | minify |
| Tool | What it does | Knob |
|---|---|---|
npmSearch | npm package lookup and keyword search; returns metadata and the source repository for GitHub handoff. | concise |
| Tool | What it does |
|---|---|
lspGetSemantics | Typed semantic navigation: definition, references, callers, callees, callHierarchy, hover, documentSymbols, typeDefinition, implementation, workspaceSymbol, supertypes, subtypes, and diagnostic. From the CLI, invoke it directly: npx octocode tools lspGetSemantics --queries '<json>'. Navigation runs through installed language servers (see the LSP Tools Reference). |
Full schemas, fields, and examples for every tool live in docs/OCTOCODE_TOOLS.md (linked under Documentation).
The MCP server exposes the Octocode tool catalog directly to your AI assistant over stdio.
https://github.com/user-attachments/assets/de8d14c0-2ead-46ed-895e-09144c9b5071
Add to your MCP client config, using octocode-mcp:
{
"octocode": {
"command": "npx",
"type": "stdio",
"args": [
"octocode-mcp@latest"
]
}
}
Add a GitHub token and options under env - see Authentication and Configuration.
Same research engine, no MCP client needed. Local paths route to local tools; owner/repo[/path] routes to GitHub. Authenticate once with npx octocode auth login (see Authentication); run npx octocode --help for full usage.
| Command | What it does |
|---|---|
npx octocode tools <name> --scheme | Show one tool's schema: fields, types, bounds, defaults |
npx octocode tools <name> --queries '<json>' | Run a tool (same tools as MCP), YAML output |
npx octocode tools <name> --queries '<json>' --json | Run a tool, full CallToolResult JSON |
npx octocode tools | List every available tool |
npx octocode clone, npx octocode cache fetch|status|clearnpx octocode skill list|install|check|info|remove for bundled Octocode skillsnpx octocode lsp-server list|install|status|uninstall|cleannpx octocode install, npx octocode auth, npx octocode status, npx octocode contextFull syntax, flags, and exit codes: Octocode CLI Guide
Everything is optional; Octocode runs on sensible defaults. Settings resolve from three sources, in priority order:
environment variables > <octocode-home>/.octocoderc > built-in defaults
env or your shell.<octocode-home>/.octocoderc, machine-wide defaults read by both the CLI and the MCP server.Octocode home (<octocode-home>) holds the global config, encrypted credentials, sessions, stats, and tmp materialization caches. It defaults by platform and can be overridden with OCTOCODE_HOME:
| Platform | Location |
|---|---|
| macOS | ~/.octocode |
| Linux | ${XDG_CONFIG_HOME:-~/.config}/.octocode |
| Windows | %APPDATA%\.octocode |
Set values as MCP env entries (per client; these win over .octocoderc) or globally in <octocode-home>/.octocoderc (JSON with comments). Tokens never go in .octocoderc - use env or npx octocode auth login.
Most-used settings (both CLI and MCP unless noted):
| Env var | .octocoderc key | Default | What it does |
|---|---|---|---|
OCTOCODE_TOKEN / GH_TOKEN / GITHUB_TOKEN | env only | unset | GitHub token, in priority order. Never in .octocoderc. |
ENABLE_LOCAL | local.enabled | CLI true, MCP false | Local filesystem + LSP tools on/off. |
ENABLE_CLONE | local.enableClone | CLI true, MCP false | ghCloneRepo + directory fetch on/off. |
WORKSPACE_ROOT | local.workspaceRoot | cwd | Root for resolving relative local paths. |
ALLOWED_PATHS | local.allowedPaths | [] | Extra path allowlist for local access. |
OCTOCODE_OUTPUT_FORMAT | output.format | yaml | Response format: yaml or json. |
OCTOCODE_HOME, GitHub Enterprise (GITHUB_API_URL), MCP tool whitelisting (TOOLS_TO_RUN/ENABLE_TOOLS/DISABLE_TOOLS), and network timeouts/retries: see the Configuration Reference.
~/.octocode/.octocoderc:
{
"github": {
"apiUrl": "https://api.github.com"
},
"local": {
"enabled": true,
"enableClone": true
},
"output": {
"format": "yaml"
}
}
Per-project overrides and custom LSP servers live in a workspace .octocode/ folder. For the full .octocoderc schema, a ready-to-copy example, clone-cache tuning, GitHub Enterprise setup, and precedence details, see the Configuration Reference.
GitHub-backed tools require authentication. Any one method is enough. Full details: Authentication Setup.
npx octocode auth login
npx octocode status # verify the active token source
Interactive login lets you choose Octocode browser OAuth or gh auth login. Octocode OAuth credentials are stored encrypted on disk.
gh auth login
Octocode reads the gh token automatically - no further config needed.
Set OCTOCODE_TOKEN, GH_TOKEN, or GITHUB_TOKEN in your shell. Required scopes: repo, read:user, read:org.
Create a token at github.com/settings/tokens.
Security tip: Never commit tokens to version control. Use environment variables or secure secret management.
Every byte to the model is scanned and redacted first. All content (local files, GitHub/npm responses, errors, tool output) passes through the Rust engine's secret scanner on the way in and out, so secrets never reach the LLM. Identical under MCP and CLI.
localGetFileContent, ripgrep, structural search, binary, file discovery, structure) and external fetches (GitHub code/files, npm) are scanned as they are read, not only at the boundary.WORKSPACE_ROOT / config / cwd, then local reads are bounded to the engine's allowed roots (home by default, plus ALLOWED_PATHS and Octocode-registered roots). Symlinks are resolved and the real target is re-validated, so a link cannot escape into a blocked location..env*, .npmrc/.netrc, cloud/infra credentials (.aws/, .kube/, *.tfstate), .git/, browser logins, OS keychains, and wallets. Full list in SECURITY.md.octocode-engine. External helpers are fixed per lane, command/argument allowlisted, and run via spawn with argument arrays: no shell strings, no injection.gh CLI; tokens are never logged.Full security model, pipeline, and threat coverage: SECURITY.md. Related: Configuration & Authentication Β· Credentials
Four code-intelligence axes; three are native to the Rust engine and need no external tooling:
| Axis | What it does | How to use it |
|---|---|---|
| Structural AST | Tree-sitter shape queries (pattern or YAML rule) across 60+ extensions. | localSearchCode mode:"structural" Β· CLI tools localSearchCode --scheme |
| Signature outline | Body-free skeleton with line numbers from real tree-sitter parsing, no heuristics. An anti-growth guard returns the real file when a skeleton wouldn't be smaller. | minify:"symbols" Β· CLI tools localGetFileContent --scheme |
| Content minification | Comment/whitespace stripping for 70+ languages and config formats; HTML/Vue/Svelte also minify embedded <style>/<script>. | minify:"standard" (default) |
| LSP navigation | definition, references, callers/callees, callHierarchy, hover, typeDefinition, implementation, documentSymbols, via an installed language server; JS/TS also have a native, no-server path. | lspGetSemantics Β· CLI tools lspGetSemantics --scheme |
π Full support matrix: every extension with its exact AST, signature, LSP, and minify capability lives in the Full format support matrix.
Agent Skills are a lightweight, open format for extending AI agent capabilities. Browse and install on skills.sh/bgauryy/octocode-mcp
13 skills under skills/, bundled in the octocode package. Each is a lean SKILL.md that loads references only when needed, so they compose. Start with β Research for evidence-first code work.
npx octocode skill list
npx octocode skill install octocode-research --platform pi
npx octocode skill check --json
npx octocode skill help
| Skill | Use when |
|---|---|
| β octocode-research | Evidence-first research, review, debugging, refactors, prior-art validation. |
| octocode-scraping | Public page extraction and crawl triage: static corpus + graph v2 (pages/data/actions/risks/evidence), then CDP handoff for dynamic actions and blocked pages. |
| octocode-chrome-devtools | Browser/CDP evidence: network, console, performance, cookies/storage, screenshots, auth-gated pages, and live validation of scrape-graph actions. |
| Skill | Use when |
|---|---|
| octocode-brainstorming | Disciplined idea exploration before building: options, worth-building tests, prior-art maps. |
| octocode-rfc-generator | Evidence-backed RFCs, design docs, migration plans, option comparisons. |
| octocode-documentation | Writing or updating README, API docs, runbooks, AGENTS.md, ADRs. |
| Skill | Use when |
|---|---|
| octocode-roast | Blunt, evidence-backed code critique with severity ranking and repair paths. |
| octocode-graph-eval | Measuring whether a change helped: goalβKPI contracts, baselines, accept/revert loops, eval suites. |
| octocode-prompt-optimizer | Making prompts, tool schemas, and agent contracts clearer, safer, cheaper, measurable. |
| Skill | Use when |
|---|---|
| octocode-subagent | Delegation: spawn gates, decomposition, sealed packets, coordination, synthesis. |
| octocode-awareness | Shared-repo coordination: collision avoidance, handoffs, verification debt, durable memory. |
| octocode-skills | Agent-skill lifecycle: discover, review, create, improve, install, sync. |
| octocode-orchestrator-local-worker | Offloading token-heavy text work to a local Ollama worker under a verify gate. |
Web automation workflow: octocode-scraping performs the safe static pass first (fetch/crawl/extract β local corpus β graph v2). When the graph exposes dynamic actions or static output is blocked/thin, octocode-chrome-devtools validates live actionability, cookies/storage, network/HAR bodies, screenshots, or auth-gated state; discovered URLs/data/artifacts can be fed back into the scraping corpus for continued proof.
A yarn-workspaces monorepo. The MCP server and the CLI are thin front-ends over one shared TypeScript tool core, which delegates every CPU-heavy path to a single Rust engine (compiled via napi-rs to prebuilt .node binaries). One tool catalog, one security layer, one response shaper, reached two ways.
graph LR
CLI["octocode<br/>CLI"]
MCP["octocode-mcp<br/>MCP server, stdio"]
VSC["VS Code extension<br/>OAuth + install"]
CORE["octocode-tools-core<br/>tools, GitHub client, auth, pagination, security bridge"]
ENGINE["octocode-engine (Rust)<br/>secrets, minify, AST, signatures, ripgrep/diff/YAML, LSP"]
EXT["GitHub API, local FS + ripgrep, language servers"]
CLI --> CORE
MCP --> CORE
VSC -. starts .-> MCP
CORE --> ENGINE
CORE --> EXT
ENGINE --> EXT
style ENGINE fill:#1a1a2e,stroke:#e75d2a,color:#fff
Request flow is identical whether a call arrives over MCP or the CLI:
client β sanitize inputs (Rust) β run tool (GitHub / FS / LSP) β sanitize + YAML-serialize + paginate (Rust) β result + next-step hints
One Rust engine owns secret detection, sanitization, path/command validation, minification (70+ languages), signature extraction, structural AST search, ripgrep parsing, diff filtering, YAML serialization, and LSP, so the Node event loop stays unblocked and there is no duplicate native loader. It ships prebuilt for darwin (arm64/x64), linux (arm64/x64, gnu + musl), and win32-x64; no Rust toolchain is needed at runtime.
| Directory | npm package | Role |
|---|---|---|
packages/octocode | octocode | CLI: quick commands, raw tool runner, skill installs, auth/login/logout, install, status, context. |
packages/octocode-mcp | octocode-mcp | MCP server (stdio) that registers the tool catalog for AI assistants. |
packages/octocode-tools-core | @octocodeai/octocode-tools-core | Shared tool core: implementations, GitHub client, credentials and token resolution, session, pagination, security bridge. |
packages/octocode-engine | @octocodeai/octocode-engine | Rust/napi native engine: security scanning, minification, signatures, structural AST, ripgrep/diff/YAML, LSP. |
packages/octocode-config | @octocodeai/config | Zero-dep env + config loader: getOctocodeHome, .env parsing, .octocoderc reading. Single source used by every package and skill. |
packages/octocode-vscode | octocode-mcp-vscode | VS Code extension: GitHub OAuth + multi-editor MCP install. |
packages/octocode-benchmark (private, not published) holds benchmark methodology, evals, and run artifacts - see Documentation.
Website: octocode.ai Β· Product docs: github.com/bgauryy/octocode/tree/main/docs. This section is the canonical documentation index; benchmark methodology, evals, and run artifacts live in packages/octocode-benchmark.
| Area | Docs |
|---|---|
| MCP server | Octocode MCP Server Β· Configuration & Authentication |
| Tools and workflows | Octocode Tools Reference Β· RDD Manifest & Workflows Β· Octocode Research Skill Β· Search Guide |
| CLI | Octocode CLI Guide |
| Skills | Skills |
| Development and security | Security Model Β· LSP Server Lifecycle |
| Benchmarks and evals | Benchmark Results Β· Benchmark Design Β· Benchmark Runbook Β· Support Matrix |
| Shared internals | Credentials Architecture Β· Session Persistence |
Node.js or Environment Issues? Run the built-in doctor command to check your environment:
npx node-doctor check --json
Common Pitfalls:
repo and read:user scopes. If using the CLI, run npx octocode auth login to refresh.npx octocode auth login in your terminal first, or explicitly pass your OCTOCODE_TOKEN in the MCP env configuration.glibc or musl compatibility. On macOS/Windows, ensure you are on a supported architecture (x64 or arm64).Pi is a fast, local-first coding agent whose stated philosophy is "CLI tools with READMEs (Skills) over MCP." Pairing it with Octocode gives a lean, evidence-driven dev loop - Pi edits, Octocode researches. Two routes, pick by how much surface you need:
Skill route - recommended, leanest. Drop the octocode-research skill into Pi's global skills dir. It drives the Octocode CLI directly - no MCP transport, minimal token overhead - and Pi auto-discovers it:
npx octocode skill install octocode-research --platform pi
Adapter route - full tool surface. Install pi-mcp-adapter to expose Octocode MCP tools behind a single ~200-token proxy tool, so servers stay disconnected until a tool is actually called. Enable clone tools with ENABLE_CLONE=true.
Most agent failures happen before the edit: guessing who owns a behavior, trusting a snippet without reading the source, editing before proving blast radius. Run a cheaper loop instead: orient with trees, search, read exact evidence, use AST/LSP when identity matters, then patch and verify. The host edits, Octocode is the map, and skills encode the habit.
"Code is Truth, but Context is the Map." Read the Manifest of Octocode for Research Driven Development to understand the philosophy behind Octocode.
.github/
FUNDING.yml
workflows/
ci.yml
engine.yml
README.md
.gitignore
.npmignore
.prettierignore
.prettierrc.json
.syncpackrc.json
.syncpackrc.mjs
.yarn/
releases/
yarn-4.9.1.cjs
.yarnrc.yml
AGENTS.md
assets/
benchmark.png
logo.png
CHANGELOG.md
CLAUDE.md
docs/
CONFIGURATION.md
MCP_TOOL_QUALITY_AND_AGENT_WORKFLOW.md
OCTOCODE_MCP.md
OCTOCODE_RESEARCH_MANIFEST.md
OCTOCODE_TOOLS.md
ROUTING_EVIDENCE_POSITION_PAPER.md
SECURITY.md
eslint.config.js
glama.json
LICENSE
MANIFEST.md
package.json
packages/
octocode/
octocode-benchmark/
.gitignore
compare/
bin/
build_blind_packet.py
ghc
ghm
hr_compress.py
instrument_command.py
make_report_html.py
octoc
octoc-local
octoc1811
octoc1822
per_question_summary.py
preflight.py
record_answer.py
rtkm
sumlog.py
test_instrumentation.py
validate_campaign.py
github-questions/
Q1.md
Q10.md
Q11.md
Q12.md
Q13.md
Q14.md
Q15.md
Q16.md
Q17.md
Q18.md
Q19.md
Q2.md
Q20.md
Q21.md
Q22.md
Q23.md
Q24.md
Q25.md
Q26.md
Q27.md
Q28.md
Q29.md
Q3.md
Q30.md
Q4.md
Q5.md
Q6.md
Q7.md
Q8.md
Q9.md
README.md
octocode-vs-gh/
octocode-vs-gh-headroom/
README.md
octocode-vs-gh-rtk/
README.md
README.md
README.md
package.json
README.md
results/
campaign-175653-2026-08-06.md
campaign-2pass-183432-2026-08-06.md
full-octocode-vs-gh-152630-2026-08-07.md
full-octocode-vs-headroom-091618-2026-08-08.md
full-octocode-vs-headroom-134213-2026-08-07.md
full-octocode-vs-rtk-011533-2026-08-08.md
full-octocode-vs-rtk-162848-2026-08-07.md
index.html
octocode-vs-gh-headroom-011859-2026-08-06.md
octocode-vs-gh-headroom-1845-2026-08-05.md
octocode-vs-gh-headroom-200034-2026-08-05.md
octocode-vs-gh-rtk-011611-2026-08-06.md
octocode-vs-gh-rtk-183927-2026-08-05.md
octocode-vs-gh-rtk-191906-2026-08-05.md
octocode-vs-gh-rtk-200641-2026-08-05.md
octocode-vs-gh-rtk-localfix-020431-2026-08-06.md
per_question_summary.json
PER_QUESTION_SUMMARY.md
README.md
SUMMARY.md
VALIDATION-2026-08-08.md
skills/
octocode-benchmark/
README.md
references/
aggregation-and-stats.md
BENCHMARK.md
example-verdict.md
INSTRUCTIONS.md
JUDGING.md
matchup-readme.md
primer-gh-headroom.md
primer-gh-rtk.md
primer-gh.md
primer-octocode.md
REPORT_TEMPLATE.md
run-phases.md
run-preflight.md
run-with-agents.md
RUNNER_TOOL_CONTEXT.md
RUNNER.md
SCORING.md
scripts/
_hr_check.py
_hr_import.py
check-prereqs.sh
measure.sh
SKILL.md
octocode-config/
build.mjs
LICENSE
package.json
src/
cli.ts
config/
defaults.ts
index.ts
loader.ts
resolver.ts
resolverCache.ts
resolverSections.ts
runtimeSurface.ts
types.ts
validator.ts
home.ts
index.ts
tokens/
envTokens.ts
index.ts
types.ts
tests/
config.test.ts
tsconfig.build.json
tsconfig.json
vitest.config.ts
octocode-engine/
.gitignore
ARCHITECTURE.md
benches/
minify.rs
structural.rs
build.rs
Cargo.lock
Cargo.toml
clippy.toml
docs/
LSP_SERVER_LIFECYCLE.md
NATIVE_GRAPH_DOMAIN_SCOPE.md
PERF_PLAN_STRUCTURAL_CLI.md
SUPPORTED_LANGUAGES_AND_FEATURES.md
index.cjs
index.d.ts
index.js
loader/
index.cjs
index.d.ts
index.js
npm/
darwin-arm64/
package.json
darwin-x64/
package.json
linux-arm64-gnu/
package.json
linux-x64-gnu/
package.json
linux-x64-musl/
package.json
verify-binary.cjs
win32-x64-msvc/
package.json
package.json
rust-toolchain.toml
scripts/
check-binary-size.cjs
check-loader-entries.cjs
check-napi-abi.cjs
check-pack-size.cjs
check-platform-binaries.cjs
check-registry-consistency.cjs
check-version-consistency.cjs
gen-patterns.mjs
gen-server-manifest.mjs
postbuild.cjs
prebuild.cjs
sync-versions.cjs
src/
bindings/
comment_groups.rs
config.rs
extension.rs
filesystem.rs
lsp.rs
minify.rs
mod.rs
ripgrep.rs
security.rs
signatures.rs
tasks.rs
text.rs
yaml.rs
lib.rs
lsp/
client_tests.rs
client.rs
client.ts
commands.rs
config.rs
config.ts
evidence.ts
grammar.rs
ideContext.ts
index.ts
initConstants.ts
json_rpc.rs
lspClientPool.ts
lspErrorCodes.ts
manager.ts
mod.rs
native.ts
nativeExportNames.ts
platform.ts
resolver.rs
resolver.ts
schemas.ts
serverDiscovery.ts
serverManifest.json
serverManifest.ts
serverManifestData.ts
serverProvisioner.ts
symbol_kind.rs
types.rs
types.ts
uri.rs
uri.ts
validation.rs
validation.ts
workspace.rs
workspaceRoot.ts
minify/
apply.rs
comment_remover.rs
config.rs
minifier.rs
mod.rs
strategies/
code.rs
core.rs
json.rs
markdown.rs
mod.rs
web.rs
search/
classify.rs
fs_query.rs
line_extractor.rs
mod.rs
ripgrep_parser.rs
ripgrep_pattern.rs
ripgrep_search_tests.rs
ripgrep_search.rs
security/
commandUtils.ts
commandValidator.ts
contentSanitizer.ts
detector.rs
discoveryFilter.ts
filePatterns.ts
ignoredPathFilter.ts
index.ts
mask.ts
maskUtils.ts
mod.rs
native.ts
paramExtractors.ts
pathPatterns.ts
pathUtils.ts
pathValidator.ts
patterns.rs
regexes/
ai-providers.ts
analytics.ts
auth-crypto.ts
aws.ts
cloudProviders.ts
communications.ts
databases.ts
devTools.ts
index.ts
monitoring.ts
payments-commerce.ts
types.ts
vcs.ts
registry.ts
sanitizer.rs
securityConstants.ts
types.rs
types.ts
withSecurityValidation.ts
signatures/
extractor.rs
graph_facts.rs
js_oxc_calls.rs
js_oxc_tests.rs
js_oxc.rs
languages.rs
mod.rs
renderer.rs
structural/
files.rs
language.rs
mod_tests.rs
mod.rs
octo_tests.rs
octo.rs
query.rs
types.rs
text/
diff_parser.rs
file_extension.rs
line_diff.rs
mod.rs
utf8_offsets.rs
yaml_utils.rs
types.rs
tests/
ffi.test.ts
lsp/
client.test.ts
config.test.ts
configResolution.test.ts
core.test.ts
evidence.test.ts
ideContext.test.ts
initConstants.test.ts
lspClientPool.test.ts
lspErrorCodes.test.ts
manager.test.ts
managerWrappers.test.ts
platform.test.ts
schemas.test.ts
serverDiscovery.test.ts
serverManifest.test.ts
serverProvisioner.test.ts
tsgo.test.ts
wrappers.test.ts
security/
commandValidator.test.ts
contentSanitizer.test.ts
discoveryFilter.test.ts
ignoredPathFilter.test.ts
mask.test.ts
maskUtils.test.ts
native.test.ts
paramExtractors.test.ts
pathUtils.test.ts
pathValidator.test.ts
redactionParity.test.ts
registry.test.ts
withSecurityValidation.test.ts
... 1507 moreFAQ
octocode is a Claude Code plugin with 15 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes octocode-benchmark, octocode-awareness, octocode-brainstorming. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.