@@ -51,7 +51,7 @@ git-mind captures those relationships explicitly, so you can query them, visuali
5151### From source
5252
5353``` bash
54- git clone https://github.com/neuroglyph /git-mind.git
54+ git clone https://github.com/flyingrobots /git-mind.git
5555cd git-mind
5656npm install
5757```
@@ -484,7 +484,7 @@ Status values are normalized on read — `Done`, `DONE`, `complete`, `finished`
484484### Custom views (programmatic)
485485
486486``` javascript
487- import { defineView , renderView , loadGraph } from ' @neuroglyph /git-mind' ;
487+ import { defineView , renderView , loadGraph } from ' @flyingrobots /git-mind' ;
488488
489489defineView (' my-view' , (nodes , edges ) => ({
490490 nodes: nodes .filter (n => n .startsWith (' feature:' )),
@@ -544,7 +544,7 @@ git mind import graph.yaml --dry-run
544544# ## Programmatic import
545545
546546` ` ` javascript
547- import { importFile, loadGraph } from '@neuroglyph /git-mind';
547+ import { importFile, loadGraph } from '@flyingrobots /git-mind';
548548
549549const graph = await loadGraph('.');
550550const result = await importFile(graph, 'graph.yaml', { dryRun: false });
@@ -586,7 +586,7 @@ Edges created from directives get a confidence of **0.8** — high, but flagged
586586# ## Processing commits programmatically
587587
588588` ` ` javascript
589- import { processCommit, loadGraph } from '@neuroglyph /git-mind';
589+ import { processCommit, loadGraph } from '@flyingrobots /git-mind';
590590
591591const graph = await loadGraph('.');
592592await processCommit(graph, {
@@ -641,7 +641,7 @@ When you run `git mind at <ref>`:
641641# ## Programmatic usage
642642
643643` ` ` javascript
644- import { loadGraph, getEpochForRef, computeStatus, getCurrentTick, recordEpoch } from '@neuroglyph /git-mind';
644+ import { loadGraph, getEpochForRef, computeStatus, getCurrentTick, recordEpoch } from '@flyingrobots /git-mind';
645645
646646const graph = await loadGraph('.');
647647
@@ -745,7 +745,7 @@ import {
745745 defineView, renderView, listViews, classifyStatus,
746746 // Hooks
747747 parseDirectives, processCommit,
748- } from '@neuroglyph /git-mind';
748+ } from '@flyingrobots /git-mind';
749749` ` `
750750
751751# ## Initialize and load
0 commit comments