Skip to content

Commit d30d7d9

Browse files
committed
chore: rename @neuroglyph/git-mind to @flyingrobots/git-mind (#289)
Repository transferred to flyingrobots org. Updated npm package scope, GitHub URLs, schema $id fields, docs, and git remote.
1 parent 59e9bd5 commit d30d7d9

36 files changed

Lines changed: 53 additions & 53 deletions

.reuse/dep5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
22
Upstream-Name: git-mind
33
Upstream-Contact: James Ross <james@flyingrobots.dev>
4-
Source: https://github.com/neuroglyph/git-mind
4+
Source: https://github.com/flyingrobots/git-mind
55

66
Files: *
77
Copyright: 2025-2026 James Ross

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -357,10 +357,10 @@ Complete rewrite from C23 to Node.js on `@git-stunts/git-warp`.
357357
- Docker-based CI/CD
358358
- All C-specific documentation
359359

360-
[3.1.0]: https://github.com/neuroglyph/git-mind/releases/tag/v3.1.0
361-
[3.0.0]: https://github.com/neuroglyph/git-mind/releases/tag/v3.0.0
362-
[2.0.0-alpha.5]: https://github.com/neuroglyph/git-mind/releases/tag/v2.0.0-alpha.5
363-
[2.0.0-alpha.4]: https://github.com/neuroglyph/git-mind/releases/tag/v2.0.0-alpha.4
364-
[2.0.0-alpha.3]: https://github.com/neuroglyph/git-mind/releases/tag/v2.0.0-alpha.3
365-
[2.0.0-alpha.2]: https://github.com/neuroglyph/git-mind/releases/tag/v2.0.0-alpha.2
366-
[2.0.0-alpha.0]: https://github.com/neuroglyph/git-mind/releases/tag/v2.0.0-alpha.0
360+
[3.1.0]: https://github.com/flyingrobots/git-mind/releases/tag/v3.1.0
361+
[3.0.0]: https://github.com/flyingrobots/git-mind/releases/tag/v3.0.0
362+
[2.0.0-alpha.5]: https://github.com/flyingrobots/git-mind/releases/tag/v2.0.0-alpha.5
363+
[2.0.0-alpha.4]: https://github.com/flyingrobots/git-mind/releases/tag/v2.0.0-alpha.4
364+
[2.0.0-alpha.3]: https://github.com/flyingrobots/git-mind/releases/tag/v2.0.0-alpha.3
365+
[2.0.0-alpha.2]: https://github.com/flyingrobots/git-mind/releases/tag/v2.0.0-alpha.2
366+
[2.0.0-alpha.0]: https://github.com/flyingrobots/git-mind/releases/tag/v2.0.0-alpha.0

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Thanks for your interest in contributing. This document covers the essentials.
1111
## Setup
1212

1313
```bash
14-
git clone https://github.com/neuroglyph/git-mind.git
14+
git clone https://github.com/flyingrobots/git-mind.git
1515
cd git-mind
1616
npm install
1717
npm test

GUIDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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
5555
cd git-mind
5656
npm 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

489489
defineView('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
549549
const graph = await loadGraph('.');
550550
const 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
591591
const graph = await loadGraph('.');
592592
await 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
646646
const 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

docs/contracts/cli/at.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/neuroglyph/git-mind/docs/contracts/cli/at.schema.json",
3+
"$id": "https://github.com/flyingrobots/git-mind/docs/contracts/cli/at.schema.json",
44
"title": "git-mind at --json",
55
"description": "Time-travel output from `git mind at <ref> --json`",
66
"type": "object",

docs/contracts/cli/content-delete.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/neuroglyph/git-mind/docs/contracts/cli/content-delete.schema.json",
3+
"$id": "https://github.com/flyingrobots/git-mind/docs/contracts/cli/content-delete.schema.json",
44
"title": "git-mind content delete --json",
55
"description": "Content deletion result from `git mind content delete --json`",
66
"type": "object",

docs/contracts/cli/content-meta.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/neuroglyph/git-mind/docs/contracts/cli/content-meta.schema.json",
3+
"$id": "https://github.com/flyingrobots/git-mind/docs/contracts/cli/content-meta.schema.json",
44
"title": "git-mind content meta --json",
55
"description": "Content metadata result from `git mind content meta --json`",
66
"type": "object",

docs/contracts/cli/content-set.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/neuroglyph/git-mind/docs/contracts/cli/content-set.schema.json",
3+
"$id": "https://github.com/flyingrobots/git-mind/docs/contracts/cli/content-set.schema.json",
44
"title": "git-mind content set --json",
55
"description": "Content attachment result from `git mind content set --json`",
66
"type": "object",

docs/contracts/cli/content-show.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/neuroglyph/git-mind/docs/contracts/cli/content-show.schema.json",
3+
"$id": "https://github.com/flyingrobots/git-mind/docs/contracts/cli/content-show.schema.json",
44
"title": "git-mind content show --json",
55
"description": "Content display result from `git mind content show --json`",
66
"type": "object",

docs/contracts/cli/diff.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/neuroglyph/git-mind/docs/contracts/cli/diff.schema.json",
3+
"$id": "https://github.com/flyingrobots/git-mind/docs/contracts/cli/diff.schema.json",
44
"title": "git-mind diff --json",
55
"description": "Graph diff result from `git mind diff <ref-a>..<ref-b> --json`",
66
"type": "object",

0 commit comments

Comments
 (0)