← ClaudeAtlas

bearing-workspacelisted

Master index for __GITNEXUS_REPO__ GitNexus usage in Cursor. Use at the start of any code task — exploration, edits, refactors, PR review, or API changes. Teaches workflow chain, anti-patterns, and which skill to load.
ReidenXerx/bearing · ★ 6 · AI & Automation · score 75
Install: claude install-skill ReidenXerx/bearing
# GitNexus Workspace (__GITNEXUS_REPO__) This repo replaces grep-first navigation with a **knowledge graph + embeddings + Cypher/PDG** for **all code reasoning** (not only the first lookup). **`query`** uses BM25 + semantic vectors for orient/explore. **`trace`** answers known A→B call paths. **`pdg_query`** answers control/data-flow questions when the PDG layer exists. **`cypher`** answers precise graph questions (field ACCESSES, overrides, process steps). **`rename`** coordinates multi-file symbol renames (dry_run first). **Hooks actively block** lazy patterns when the index is fresh; **autonomous refresh** when stale or embeddings missing; **classical fallback** when GN fails — see `00-bearing-enforcement` rule. ## Mandatory workflow chain Do not skip steps: ``` READ gitnexus://repo/__GITNEXUS_REPO__/context # or npm run bearing:agent-brief (autonomous) READ gitnexus://repo/__GITNEXUS_REPO__/schema # before ad-hoc Cypher → query({search_query, task_context, goal, repo, limit: 5, max_symbols: 12}) # graph + embeddings — orient → context({name, include_content: false}) or context({uid, include_content: false}) → trace({from, to}) or pdg_query({mode}) # known paths, control/data flow when relevant → cypher({statement, params}) # structural graph: field ACCESSES, overrides, process steps → impact({target, direction: "upstream", summaryOnly: false, limit: 100}) # BEFORE edit → detect_changes({scope}) # BEFORE commit