Skip to content

Commit cf98af3

Browse files
Bundelkundclaude
andcommitted
fix(repo-urls): correct GitHub URL to Bundelkund/InGa
The actual public repository lives at github.com/Bundelkund/InGa, not the github.com/Bundlekund/inga-backend that package.json had drifted to. The URL in package.json had a transposed letter (Bundlekund vs the real Bundelkund) and an aspirational repo name (inga-backend vs the real InGa). A previous commit propagated that bad URL into README, tutorial, etc.; this commit reverts that propagation and aligns every reference with the real remote. Files corrected: - package.json (repository.url, homepage) - README.md (Quick Start clone command) - docs/tutorial.md (Step 1 clone command) - CONTRIBUTING.md (Development Setup; also fixed stale `cd InGa-the-GTM-operating-system` and pnpm references) - docs/troubleshooting.md (issue tracker URL) - CONTEXT.md (InGa-Site repo reference) - src/lib/connectors/wikidata.ts (User-Agent header per Wikidata bot policy) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 56d6afe commit cf98af3

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

CONTEXT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
- **Innerhalb dieses Repos**: Skill-Engine, Agent-Runtime, Provider-Registry, Connector-Layer, Intelligence Graph, Vault-Schreiber/Leser, CLI
3636
- **Ausserhalb (separate Services/Repos)**:
37-
- **InGa-Site** (Bundlekund/InGa-site): React Landing-Page mit Demo-Graph. Visualisiert _eine Snapshot-Variante_ des Intelligence Graph — KEIN Live-Sync.
37+
- **InGa-Site** (Bundelkund/InGa-site): React Landing-Page mit Demo-Graph. Visualisiert _eine Snapshot-Variante_ des Intelligence Graph — KEIN Live-Sync.
3838
- **FalkorDB**: Eigener Container, persistiert Graph, sprechen ueber Cypher
3939
- **Anthropic / Unipile / Crustdata / Instantly / Firecrawl**: Drittanbieter, abstrahiert hinter Provider-Interface
4040
- **Anti-Corruption Layer**:

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Thanks for your interest in contributing to InGa. Here's how to get started.
55
## Development Setup
66

77
```bash
8-
git clone https://github.com/Bundlekund/inga-backend
9-
cd InGa-the-GTM-operating-system
10-
pnpm install
8+
git clone https://github.com/Bundelkund/InGa
9+
cd InGa
10+
npm install
1111
cp .env.example .env.local # Add at least ANTHROPIC_API_KEY
12-
pnpm typecheck # Verify everything compiles
13-
pnpm test # Run the test suite
12+
npm run typecheck # Verify everything compiles
13+
npm test # Run the test suite
1414
```
1515

1616
## Architecture Rules
@@ -56,7 +56,7 @@ Never skip layers. A skill should never call an API directly — it goes through
5656

5757
## Reporting Bugs
5858

59-
Open an issue at https://github.com/Bundlekund/inga-backend with:
59+
Open an issue at https://github.com/Bundelkund/InGa with:
6060
- What you expected to happen
6161
- What actually happened
6262
- Output of `inga doctor`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ InGa is a CLI-first, open-source operating system for venture capital teams. It
99
## Quick Start
1010

1111
```bash
12-
git clone https://github.com/Bundlekund/inga-backend
13-
cd inga-backend
12+
git clone https://github.com/Bundelkund/InGa
13+
cd InGa
1414
npm install
1515

1616
docker-compose up -d falkordb

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,4 +163,4 @@ inga framework:derive --tenant <slug>
163163

164164
1. Run `inga doctor` — solves 80% of issues
165165
2. Check this guide for the specific error
166-
3. File an issue: https://github.com/Bundlekund/inga-backend
166+
3. File an issue: https://github.com/Bundelkund/InGa

docs/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ This tutorial walks you through a complete InGa deal flow -- from installation t
1313
## Step 1: Clone and Install (5 minutes)
1414

1515
```bash
16-
git clone https://github.com/Bundlekund/inga-backend
17-
cd inga-backend
16+
git clone https://github.com/Bundelkund/InGa
17+
cd InGa
1818
npm install
1919
cp .env.example .env.local
2020
```

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
"description": "InGa — the Venture Operating System. AI-native CLI engine for deal finding, enrichment, qualification, and campaign orchestration.",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/Bundlekund/inga-backend.git"
10+
"url": "https://github.com/Bundelkund/InGa.git"
1111
},
12-
"homepage": "https://github.com/Bundlekund/inga-backend",
12+
"homepage": "https://github.com/Bundelkund/InGa",
1313
"author": "Florian Rister",
1414
"keywords": [
1515
"gtm",

src/lib/connectors/wikidata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ interface WikidataFounderResult {
3636
}
3737

3838
const SPARQL_ENDPOINT = 'https://query.wikidata.org/sparql'
39-
const USER_AGENT = 'KonektosIG/0.5 (https://github.com/Bundlekund/inga-backend)'
39+
const USER_AGENT = 'KonektosIG/0.5 (https://github.com/Bundelkund/InGa)'
4040

4141
/**
4242
* Build SPARQL query for a company name — finds founders, their employers,

0 commit comments

Comments
 (0)