public
nobgit
read
Codex
NobGit for Codex
Languages
Repository composition by tracked source files.
PowerShell
57%
Shell
43%
Trace
readme.md
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
# NobGit for Codex
3
Codex plugin for working with NobGit repositories. It adds a NobGit skill and
4
connects Codex to the NobGit MCP server for repository discovery, repository
5
metadata, repository trees/files, and issue operations.
7
## Install
9
If you already cloned or pulled this repository from NobGit, run the installer
10
from the repository folder. This copies the plugin to the Codex personal plugin
11
source folder, creates or updates the personal marketplace entry, and tries to
12
install `nobgit@personal`.
14
### Windows PowerShell
16
```powershell
17
git clone https://www.nobgit.com/nobgit/codex.git "$env:USERPROFILE\Downloads\nobgit-codex"
18
Set-Location "$env:USERPROFILE\Downloads\nobgit-codex"
19
.\install.ps1
20
```
22
### macOS or Linux
24
```bash
25
git clone https://www.nobgit.com/nobgit/codex.git "$HOME/Downloads/nobgit-codex"
26
cd "$HOME/Downloads/nobgit-codex"
27
./install.sh
28
```
30
If the Codex CLI is not available to the installer, open Codex, go to Plugins,
31
search for `nobgit`, and install it from the Personal marketplace.
33
Start a new Codex thread after installing so the NobGit skill and MCP tools are
34
loaded into the conversation.
36
## Marketplace install
38
This repository is also a local marketplace root. If you want to install it that
39
way instead of using the personal installer:
41
```bash
42
codex plugin marketplace add <path-to-this-repository>
43
codex plugin add nobgit@nobgit
44
```
46
## Why the marketplace step matters
48
Cloning this repository into a plugin folder can make the skill load locally, but
49
Codex uses the marketplace entry to render the plugin in the Plugins UI. The
50
entry above marks NobGit as available, names its local source path, and gives it
51
the Developer Tools category.