Skip to content

Commit 88cdee7

Browse files
committed
docs: fix links to repo
1 parent e54d269 commit 88cdee7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

docs/.vitepress/config.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export default defineConfig({
1212

1313
nav: [
1414
{text: 'Docs', link: '/'},
15-
{text: 'GitHub', link: 'https://github.com/butschster/context-generator'},
16-
{text: 'Json Schema', link: 'https://raw.githubusercontent.com/butschster/context-generator/refs/heads/main/json-schema.json'}
15+
{text: 'GitHub', link: 'https://github.com/context-hub/generator'},
16+
{text: 'Json Schema', link: 'https://raw.githubusercontent.com/context-hub/generator/refs/heads/main/json-schema.json'}
1717
],
1818

1919
sidebar: [

docs/advanced/development-process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Interfaces and abstract classes define the contracts and relationships between c
4848
Use the following instruction to create a context file with detailed descriptions of the codebase using Claude:
4949
5050
> Note: Provide the following instruction to Claude and
51-
> also [Json Schema](https://raw.githubusercontent.com/butschster/context-generator/refs/heads/main/json-schema.json) to
51+
> also [Json Schema](https://raw.githubusercontent.com/context-hub/generator/refs/heads/main/json-schema.json) to
5252
> help it understand the document structure.
5353
5454
```

docs/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ with contributing to our project.
88
There are many ways to contribute to Context Generator:
99

1010
1. **Report Issues**: If you find a bug or have a
11-
suggestion, [create an issue](https://github.com/butschster/context-generator/issues) on our GitHub repository.
11+
suggestion, [create an issue](https://github.com/context-hub/generator/issues) on our GitHub repository.
1212
2. **Submit Pull Requests**: Have a fix or a new feature? Submit a pull request!
1313
3. **Improve Documentation**: Help us make our documentation more clear, comprehensive, and accessible.
1414
4. **Share Your Use Cases**: Let us know how you're using Context Generator in your projects.
@@ -238,6 +238,6 @@ collaborating with you!
238238
## Questions?
239239
240240
If you have any questions about contributing, feel free to open an issue labeled "question" or reach out through the
241-
[discussions](https://github.com/butschster/context-generator/discussions) section on GitHub.
241+
[discussions](https://github.com/context-hub/generator/discussions) section on GitHub.
242242
243243
Thank you for considering contributing to Context Generator!

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ latest version and sets it up for immediate use.
2020

2121
```bash
2222
# Install to /usr/local/bin (will be added to PATH in most Linux distributions)
23-
curl -sSL https://raw.githubusercontent.com/butschster/context-generator/main/download-latest.sh | sh
23+
curl -sSL https://raw.githubusercontent.com/context-hub/generator/main/download-latest.sh | sh
2424
```
2525

2626
**What the script does**
@@ -39,7 +39,7 @@ ctx
3939
## PHAR File
4040

4141
If you prefer to use a PHAR file, you can download the latest version from
42-
the [GitHub releases page](https://github.com/butschster/context-generator/releases)
42+
the [GitHub releases page](https://github.com/context-hub/generator/releases)
4343

4444
## Requirements
4545

docs/getting-started/ide-integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ ctx schema --download
1111

1212
This command will download the `json-schema.json` file to your current working directory. You can also find the
1313
schema file in
14-
the [GitHub repository](https://raw.githubusercontent.com/butschster/context-generator/refs/heads/main/json-schema.json)
14+
the [GitHub repository](https://raw.githubusercontent.com/context-hub/generator/refs/heads/main/json-schema.json)
1515

1616
## Configure your IDE
1717

1818
### PhpStorm/IntelliJ IDEA
1919

2020
Add the `json-schema.json` file
21-
or [url](https://raw.githubusercontent.com/butschster/context-generator/refs/heads/main/json-schema.json) to your
21+
or [url](https://raw.githubusercontent.com/context-hub/generator/refs/heads/main/json-schema.json) to your
2222
project and associate it with your `context.yaml` or `context.json` file.
2323

2424
### VS Code
@@ -33,7 +33,7 @@ Add the following to your `settings.json`:
3333
"context.json",
3434
"context.yaml"
3535
],
36-
"url": "https://raw.githubusercontent.com/butschster/context-generator/refs/heads/main/json-schema.json"
36+
"url": "https://raw.githubusercontent.com/context-hub/generator/refs/heads/main/json-schema.json"
3737
}
3838
]
3939
}

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ for LLMs.
88
Download and install the tool using our installation script:
99

1010
```bash
11-
curl -sSL https://raw.githubusercontent.com/butschster/context-generator/main/download-latest.sh | sh
11+
curl -sSL https://raw.githubusercontent.com/context-hub/generator/main/download-latest.sh | sh
1212
```
1313

1414
This installs the `ctx` command to your system (typically in `/usr/local/bin`).

0 commit comments

Comments
 (0)