repo-nexus 0.1.2 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -25
- package/docs/FAQ.md +57 -4
- package/docs/rnex.example.yaml +26 -3
- package/package.json +30 -14
- package/rnex +638 -17
- package/toolkit/plugins/karpathy-llm/README.md +47 -0
- package/toolkit/plugins/karpathy-llm/plugin.yaml +9 -0
- package/toolkit/plugins/karpathy-llm/rules/KARPATHY_RULES.md +57 -0
- package/toolkit/plugins/karpathy-llm/templates/LLM_WIKI.sample.md +48 -0
- package/toolkit/prompts/.gitkeep +0 -0
- package/toolkit/scripts/.gitkeep +0 -0
- package/toolkit/templates/.gitkeep +0 -0
package/README.md
CHANGED
|
@@ -7,20 +7,47 @@
|
|
|
7
7
|
[](#)
|
|
8
8
|
[](docs/FAQ.md)
|
|
9
9
|
|
|
10
|
-
A
|
|
10
|
+
A **simple, lightweight companion tool** for multi-repo workflows. It links multiple independent repositories and shares universal AI instructions (like `AGENTS.md`) using standard Unix symlinks — **without Git submodules, monorepo migrations, or complex setup**.
|
|
11
11
|
|
|
12
|
-
- **No
|
|
13
|
-
- **
|
|
14
|
-
- **AI
|
|
15
|
-
- **
|
|
16
|
-
- **
|
|
17
|
-
|
|
18
|
-
|
|
12
|
+
- **No Git Submodules or Nested Git Friction**: Keep your repositories completely independent. No detached HEADs, no `.gitmodules`, and no merge conflicts between repos.
|
|
13
|
+
- **A Lean Companion, Not a Workspace Replacer**: It does not replace your editor, terminal, build tools, or package manager. It is a tiny (~20 KB) helper that seamlessly complements your existing workflow.
|
|
14
|
+
- **Unified Workspace for AI Coding Assistants**: Open one folder to give Cursor, Claude Code, GitHub Copilot, or Antigravity complete cross-repo visibility.
|
|
15
|
+
- **Single Source of Truth for AI Guidelines**: Share and sync `AGENTS.md`, Copilot instructions (`.github/copilot-instructions.md`), Cursor rules (`.cursorrules`), Claude instructions (`CLAUDE.md`), and custom prompts across all projects.
|
|
16
|
+
- **Zero Dependencies**: Pure POSIX shell CLI (`rnex`). Works out of the box with zero external runtimes required.
|
|
17
|
+
A **simple, lightweight companion tool** for multi-repo workflows. It links multiple independent repositories and shares universal AI instructions (like `AGENTS.md`) using standard Unix symlinks — **without Git submodules, monorepo migrations, or complex setup**.
|
|
18
|
+
|
|
19
|
+
- **No Git Submodules or Nested Git Friction**: Keep your repositories completely independent. No detached HEADs, no `.gitmodules`, and no merge conflicts between repos.
|
|
20
|
+
- **A Lean Companion, Not a Workspace Replacer**: It does not replace your editor, terminal, build tools, or package manager. It is a tiny (~20 KB) helper that seamlessly complements your existing workflow.
|
|
21
|
+
- **Unified Workspace for AI Coding Assistants**: Open one folder to give Cursor, Claude Code, GitHub Copilot, or Antigravity complete cross-repo visibility.
|
|
22
|
+
- **Single Source of Truth for AI Guidelines**: Share and sync `AGENTS.md`, Copilot instructions (`.github/copilot-instructions.md`), Cursor rules (`.cursorrules`), Claude instructions (`CLAUDE.md`), and custom prompts across all projects.
|
|
23
|
+
- **Zero Dependencies**: Pure POSIX shell CLI (`rnex`). Works out of the box with zero external runtimes required.
|
|
19
24
|
|
|
20
25
|
> 💡 **Have questions?** Check out the **[Frequently Asked Questions (FAQ)](docs/FAQ.md)** for architecture deep dives, Git workflows, and AI context strategies.
|
|
21
26
|
|
|
22
27
|
---
|
|
23
28
|
|
|
29
|
+
## What Repo Nexus Is (and What It Isn't)
|
|
30
|
+
|
|
31
|
+
| What It Is | What It Isn't |
|
|
32
|
+
| :--- | :--- |
|
|
33
|
+
| **A lightweight companion utility** (~20 KB POSIX script). | **NOT a replacement for your workspace or tools.** It doesn't replace VS Code, Cursor, JetBrains, or your terminal. |
|
|
34
|
+
| **A simple symlink manager** that groups existing repos into one folder for convenience. | **NOT a build tool or monorepo orchestrator.** It doesn't manage builds or replace tools like Nx, Turborepo, Cargo, or Gradle. |
|
|
35
|
+
| **Zero Git friction.** Repositories remain normal, autonomous Git repos. | **NOT Git submodules or subtrees.** No `.gitmodules` files, no detached HEADs, no commit coordination lock-in. |
|
|
36
|
+
| **Non-invasive.** If you delete the workspace, your repos remain completely untouched. | **NOT a proprietary platform.** No background daemons, no database, no vendor lock-in. |
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## What Repo Nexus Is (and What It Isn't)
|
|
41
|
+
|
|
42
|
+
| What It Is | What It Isn't |
|
|
43
|
+
| :--- | :--- |
|
|
44
|
+
| **A lightweight companion utility** (~20 KB POSIX script). | **NOT a replacement for your workspace or tools.** It doesn't replace VS Code, Cursor, JetBrains, or your terminal. |
|
|
45
|
+
| **A simple symlink manager** that groups existing repos into one folder for convenience. | **NOT a build tool or monorepo orchestrator.** It doesn't manage builds or replace tools like Nx, Turborepo, Cargo, or Gradle. |
|
|
46
|
+
| **Zero Git friction.** Repositories remain normal, autonomous Git repos. | **NOT Git submodules or subtrees.** No `.gitmodules` files, no detached HEADs, no commit coordination lock-in. |
|
|
47
|
+
| **Non-invasive.** If you delete the workspace, your repos remain completely untouched. | **NOT a proprietary platform.** No background daemons, no database, no vendor lock-in. |
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
24
51
|
## How It Works: The Two Symlink Flows
|
|
25
52
|
|
|
26
53
|
```
|
|
@@ -54,14 +81,19 @@ A tooling-independent, zero-dependency workspace orchestrator for multiple repos
|
|
|
54
81
|
|
|
55
82
|
## Key Principles
|
|
56
83
|
|
|
57
|
-
1. **
|
|
58
|
-
|
|
84
|
+
1. **No Git Submodules (Complete Repository Autonomy)**:
|
|
85
|
+
Member repositories are never converted into Git submodules or subtrees. Each repository keeps its own standalone Git history, remotes, branches, and commits. `rnex` simply links them on your local filesystem.
|
|
86
|
+
1. **No Git Submodules (Complete Repository Autonomy)**:
|
|
87
|
+
Member repositories are never converted into Git submodules or subtrees. Each repository keeps its own standalone Git history, remotes, branches, and commits. `rnex` simply links them on your local filesystem.
|
|
59
88
|
|
|
60
|
-
2. **
|
|
61
|
-
|
|
89
|
+
2. **Symlink Write-Through**:
|
|
90
|
+
Symlinks are transparent pointers resolved by your OS. When you or an AI agent edit `repos/backend/src/index.ts`, the OS resolves the link and writes directly to the source repository on disk.
|
|
91
|
+
2. **Symlink Write-Through**:
|
|
92
|
+
Symlinks are transparent pointers resolved by your OS. When you or an AI agent edit `repos/backend/src/index.ts`, the OS resolves the link and writes directly to the source repository on disk.
|
|
62
93
|
|
|
63
94
|
3. **Single Source of Truth for AI Context**:
|
|
64
|
-
Edit `AGENTS.md` in Repo Nexus, and changes immediately reflect across all member repositories.
|
|
95
|
+
Edit `AGENTS.md` once in Repo Nexus, and changes immediately reflect across all member repositories.
|
|
96
|
+
Edit `AGENTS.md` once in Repo Nexus, and changes immediately reflect across all member repositories.
|
|
65
97
|
|
|
66
98
|
4. **Dynamic Workspace Scope**:
|
|
67
99
|
Easily show or hide member repos from the active workspace without modifying disk contents.
|
|
@@ -70,27 +102,49 @@ A tooling-independent, zero-dependency workspace orchestrator for multiple repos
|
|
|
70
102
|
|
|
71
103
|
## Installation
|
|
72
104
|
|
|
73
|
-
|
|
105
|
+
Install `rnex` via npm, GitHub Packages, or the zero-dependency native installer:
|
|
74
106
|
|
|
75
|
-
### Option 1:
|
|
107
|
+
### Option 1: Via npm (Recommended)
|
|
76
108
|
|
|
77
|
-
|
|
109
|
+
```bash
|
|
110
|
+
npm install -g repo-nexus
|
|
111
|
+
```
|
|
112
|
+
*(Installs both `repo-nexus` and `rnex` commands globally, or run via `npx repo-nexus init`)*
|
|
113
|
+
|
|
114
|
+
### Option 2: Via GitHub Packages
|
|
78
115
|
|
|
79
116
|
```bash
|
|
80
|
-
|
|
81
|
-
cd repo-nexus
|
|
82
|
-
./rnex install
|
|
117
|
+
npm install -g @nu-nenoi/repo-nexus --registry=https://npm.pkg.github.com
|
|
83
118
|
```
|
|
84
|
-
|
|
119
|
+
Install `rnex` via npm, GitHub Packages, or the zero-dependency native installer:
|
|
85
120
|
|
|
86
|
-
### Option
|
|
121
|
+
### Option 1: Via npm (Recommended)
|
|
87
122
|
|
|
88
123
|
```bash
|
|
89
124
|
npm install -g repo-nexus
|
|
90
125
|
```
|
|
91
|
-
*(Installs both `repo-nexus` and `rnex`
|
|
126
|
+
*(Installs both `repo-nexus` and `rnex` commands globally, or run via `npx repo-nexus init`)*
|
|
92
127
|
|
|
93
|
-
### Option
|
|
128
|
+
### Option 2: Via GitHub Packages
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
npm install -g @nu-nenoi/repo-nexus --registry=https://npm.pkg.github.com
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Option 3: Native Installer (Zero Dependencies)
|
|
135
|
+
### Option 3: Native Installer (Zero Dependencies)
|
|
136
|
+
|
|
137
|
+
Clone the repository and run the built-in installer:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
git clone https://github.com/nu-nenoi/repo-nexus.git
|
|
141
|
+
cd repo-nexus
|
|
142
|
+
./rnex install
|
|
143
|
+
```
|
|
144
|
+
*(Installs `rnex` and `repo-nexus` symlinks into `~/.local/bin`, or pass a custom directory like `./rnex install /usr/local/bin`)*
|
|
145
|
+
|
|
146
|
+
### Option 4: Shell Alias
|
|
147
|
+
### Option 4: Shell Alias
|
|
94
148
|
|
|
95
149
|
Add to your `~/.zshrc` or `~/.bashrc`:
|
|
96
150
|
```bash
|
|
@@ -146,9 +200,39 @@ rnex remove my-app
|
|
|
146
200
|
|
|
147
201
|
---
|
|
148
202
|
|
|
203
|
+
## Plugins & AI Context Packs
|
|
204
|
+
|
|
205
|
+
Repo Nexus features a zero-dependency plugin architecture. Plugins package curated AI instructions, agent behavioral rules, and architecture templates that are automatically synchronized into member repositories via symlinks.
|
|
206
|
+
|
|
207
|
+
```bash
|
|
208
|
+
# List available and active plugins
|
|
209
|
+
rnex plugin list
|
|
210
|
+
|
|
211
|
+
# Inspect plugin details and provided files
|
|
212
|
+
rnex plugin info karpathy-llm
|
|
213
|
+
|
|
214
|
+
# Enable a plugin across your workspace
|
|
215
|
+
rnex plugin enable karpathy-llm
|
|
216
|
+
|
|
217
|
+
# Disable a plugin and clean up injected files
|
|
218
|
+
rnex plugin disable karpathy-llm
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
### Built-in Plugin: `karpathy-llm`
|
|
222
|
+
The `karpathy-llm` plugin packages Andrej Karpathy's verified LLM agent design patterns and context engineering principles:
|
|
223
|
+
* **The 4 Cardinal Agent Rules** (`.agents/rules/KARPATHY_RULES.md`):
|
|
224
|
+
1. *Think Before Coding:* Formulate explicit assumptions, boundary checks, and trade-offs before writing code.
|
|
225
|
+
2. *Simplicity First:* Minimal abstractions, readable implementations, zero speculative boilerplate.
|
|
226
|
+
3. *Surgical Changes:* Minimal blast radius, preserved comments/docstrings, and tight diffs.
|
|
227
|
+
4. *Goal-Driven Execution:* Upfront verification criteria, automated tests, and diff inspection.
|
|
228
|
+
* **Multi-Repo Context Engineering:** Guidelines for AI agents respecting member repo autonomy and symlink write-through semantics.
|
|
229
|
+
* **LLM Wiki Knowledge Pattern** (`docs/LLM_WIKI.sample.md`): Persistent, indexed multi-repo architecture documentation that compounds across agent sessions.
|
|
230
|
+
|
|
231
|
+
---
|
|
232
|
+
|
|
149
233
|
## Workspace Configuration (`rnex.yaml`)
|
|
150
234
|
|
|
151
|
-
The configuration file defines repo symlink directory, AI context files to sync, and registered repositories:
|
|
235
|
+
The configuration file defines repo symlink directory, AI context files to sync, enabled plugins, and registered repositories:
|
|
152
236
|
|
|
153
237
|
```yaml
|
|
154
238
|
# Directory for repository symlinks (relative or absolute)
|
|
@@ -161,6 +245,10 @@ ai_files:
|
|
|
161
245
|
# - .cursorrules
|
|
162
246
|
# - CLAUDE.md
|
|
163
247
|
|
|
248
|
+
# Workspace plugins
|
|
249
|
+
plugins:
|
|
250
|
+
- karpathy-llm
|
|
251
|
+
|
|
164
252
|
# Member repositories
|
|
165
253
|
repos:
|
|
166
254
|
backend:
|
|
@@ -193,7 +281,7 @@ repos:
|
|
|
193
281
|
|:---|:---|
|
|
194
282
|
| `rnex init [dir]` | Initialize a new workspace in current (or target) directory |
|
|
195
283
|
| `rnex install [dir]` | Install `rnex` & `repo-nexus` globally into `~/.local/bin` (or custom dir) |
|
|
196
|
-
| `rnex add <name> <path>` | Register repo, create scope symlink, and
|
|
284
|
+
| `rnex add [-y] <name> <path>` | Register repo, create scope symlink, and sync AI context (prompts to extend existing files) |
|
|
197
285
|
| `rnex remove <name>` | Unregister repo, unlink from scope, and clean up injected AI files |
|
|
198
286
|
| `rnex list` | List all registered repos and visibility scopes |
|
|
199
287
|
| `rnex status` | Display status of AI context files, active member repos, and paths |
|
|
@@ -201,6 +289,8 @@ repos:
|
|
|
201
289
|
| `rnex hide <name>` | Hide a repo from active workspace indexing |
|
|
202
290
|
| `rnex sync` | Reconcile all scope symlinks and AI context files from config |
|
|
203
291
|
|
|
292
|
+
> **Note on Existing AI Files**: Pre-existing files in member repositories are never overwritten. When adding a new repo, `rnex` prompts whether to update existing files and safely extends them with workspace context between managed markers. Pass `-y` / `--yes` to auto-confirm.
|
|
293
|
+
|
|
204
294
|
---
|
|
205
295
|
|
|
206
296
|
## Operating on External Workspaces via `--config`
|
package/docs/FAQ.md
CHANGED
|
@@ -6,7 +6,10 @@ This document answers common questions about **Repo Nexus (`rnex`)**, why it exi
|
|
|
6
6
|
|
|
7
7
|
## Table of Contents
|
|
8
8
|
|
|
9
|
-
- [
|
|
9
|
+
- [General Setup & Philosophy](#general-setup--philosophy)
|
|
10
|
+
- [What is repo-nexus?](#what-is-repo-nexus)
|
|
11
|
+
- [How does it differ from "monster" monorepo orchestrators?](#how-does-it-differ-from-monster-monorepo-orchestrators)
|
|
12
|
+
- [Does it require Git Submodules?](#does-it-require-git-submodules)
|
|
10
13
|
- [Why do I need rnex?](#why-do-i-need-rnex)
|
|
11
14
|
- [Who is this useful and interesting for?](#who-is-this-useful-and-interesting-for)
|
|
12
15
|
- [Why not just use a monorepo or Git submodules?](#why-not-just-use-a-monorepo-or-git-submodules)
|
|
@@ -16,9 +19,13 @@ This document answers common questions about **Repo Nexus (`rnex`)**, why it exi
|
|
|
16
19
|
- [Can I use Git commands (pull, push, commit) on symlinked repos?](#can-i-use-git-commands-pull-push-commit-on-symlinked-repos)
|
|
17
20
|
- [Can AI agents create and modify files inside member repos via symlinks?](#can-ai-agents-create-and-modify-files-inside-member-repos-via-symlinks)
|
|
18
21
|
- [Will rnex interfere with Git branches, remotes, or commit histories?](#will-rnex-interfere-with-git-branches-remotes-or-commit-histories)
|
|
19
|
-
- [AI Context
|
|
22
|
+
- [AI Context & IDE Workspace Integration](#ai-context--ide-workspace-integration)
|
|
23
|
+
- [How does it optimize workspaces for IDEs?](#how-does-it-optimize-workspaces-for-ides)
|
|
24
|
+
- [How does it support accurate AI context?](#how-does-it-support-accurate-ai-context)
|
|
25
|
+
- [What is the risk of tool lock-in?](#what-is-the-risk-of-tool-lock-in)
|
|
20
26
|
- [Do I need rnex to inject symlinks into my member repos?](#do-i-need-rnex-to-inject-symlinks-into-my-member-repos)
|
|
21
27
|
- [How should AI instructions be structured across repos? (Committed files vs. symlinks)](#how-should-ai-instructions-be-structured-across-repos-committed-files-vs-symlinks)
|
|
28
|
+
- [What happens if a member repository already has an existing AI configuration file?](#what-happens-if-a-member-repository-already-has-an-existing-ai-configuration-file)
|
|
22
29
|
- [Which AI assistants and configuration files are supported?](#which-ai-assistants-and-configuration-files-are-supported)
|
|
23
30
|
- [How do I prevent AI agents from running out of context or token bloat?](#how-do-i-prevent-ai-agents-from-running-out-of-context-or-token-bloat)
|
|
24
31
|
- [Platforms & Setup](#platforms--setup)
|
|
@@ -29,7 +36,25 @@ This document answers common questions about **Repo Nexus (`rnex`)**, why it exi
|
|
|
29
36
|
|
|
30
37
|
---
|
|
31
38
|
|
|
32
|
-
##
|
|
39
|
+
## General Setup & Philosophy
|
|
40
|
+
|
|
41
|
+
### What is repo-nexus?
|
|
42
|
+
|
|
43
|
+
It is a zero-dependency workspace utility designed to treat multiple independent Git repositories as subprojects under a single, unified development workspace.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
### How does it differ from "monster" monorepo orchestrators?
|
|
48
|
+
|
|
49
|
+
Unlike heavy, invasive tools that take over your entire terminal workflow, execute automated pipelines, or bundle massive dependency trees, repo-nexus acts strictly as a lightweight, metadata-only layout manager. It does not inject wrapper scripts or run automated build pipelines.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
### Does it require Git Submodules?
|
|
54
|
+
|
|
55
|
+
No. It manages the directory mappings internally via configuration files. Your independent Git repositories remain clean, isolated, and completely untouched at the Git history level.
|
|
56
|
+
|
|
57
|
+
---
|
|
33
58
|
|
|
34
59
|
### Why do I need rnex?
|
|
35
60
|
|
|
@@ -107,7 +132,25 @@ The Repo Nexus workspace ignores `repos/` in `.gitignore`, ensuring your workspa
|
|
|
107
132
|
|
|
108
133
|
---
|
|
109
134
|
|
|
110
|
-
## AI Context
|
|
135
|
+
## AI Context & IDE Workspace Integration
|
|
136
|
+
|
|
137
|
+
### How does it optimize workspaces for IDEs?
|
|
138
|
+
|
|
139
|
+
By defining your multi-repo structure through repo-nexus, it bridges the gap across decoupled project folders to generate seamless multi-root workspaces for modern code editors.
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
### How does it support accurate AI context?
|
|
144
|
+
|
|
145
|
+
It serves as an informational metadata layer across repositories. It allows you to synchronize and propagate AI rule parameters, prompt setups, and documentation frameworks (like `.cursorrules`, `AGENTS.md`, or `CLAUDE.md`) globally so that coding assistants see the entire multi-repo architecture as one coherent context.
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
### What is the risk of tool lock-in?
|
|
150
|
+
|
|
151
|
+
Zero. Because repo-nexus only overlays structural configuration metadata rather than refactoring your code, removing it from your stack is as simple as deleting its single config file. Your codebases remain independent and functional.
|
|
152
|
+
|
|
153
|
+
---
|
|
111
154
|
|
|
112
155
|
### Do I need rnex to inject symlinks into my member repos?
|
|
113
156
|
|
|
@@ -138,6 +181,16 @@ The cleanest architecture separates concerns into two distinct layers:
|
|
|
138
181
|
|
|
139
182
|
---
|
|
140
183
|
|
|
184
|
+
### What happens if a member repository already has an existing AI configuration file?
|
|
185
|
+
|
|
186
|
+
`rnex` will **never replace or overwrite** existing AI files in a member repository.
|
|
187
|
+
|
|
188
|
+
When you run `rnex add <name> <path>`, `rnex` detects any pre-existing AI context files (such as `AGENTS.md` or `.cursorrules`) and prompts you whether to update them. If confirmed, `rnex` **extends** the existing file by appending the workspace context enclosed within clearly demarcated markers (`# --- REPO-NEXUS AI CONTEXT ---`).
|
|
189
|
+
|
|
190
|
+
This preserves all repository-specific rules while layering universal workspace guidelines on top. Subsequent `rnex sync` calls keep the extended block synchronized without duplicating content or modifying the repository's custom instructions. Pass `-y` / `--yes` to `rnex add` to auto-confirm updating existing files.
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
141
194
|
### Which AI assistants and configuration files are supported?
|
|
142
195
|
|
|
143
196
|
`rnex` is tool-agnostic and auto-detects or syncs standard configuration files for:
|
package/docs/rnex.example.yaml
CHANGED
|
@@ -22,9 +22,11 @@ repos_dir: ./repos
|
|
|
22
22
|
# ------------------------------------------------------------------------------
|
|
23
23
|
# ai_files — AI context files to auto-sync into member repositories
|
|
24
24
|
# ------------------------------------------------------------------------------
|
|
25
|
-
# Each file listed here is
|
|
26
|
-
# registered member repository.
|
|
27
|
-
#
|
|
25
|
+
# Each file listed here is synced from the workspace root into every
|
|
26
|
+
# registered member repository. If a member repository already contains an
|
|
27
|
+
# existing file, it is extended (never replaced) with workspace context.
|
|
28
|
+
# When adding a new repository, rnex prompts whether to update existing files.
|
|
29
|
+
# This keeps AI instructions consistent across all your projects.
|
|
28
30
|
#
|
|
29
31
|
# Paths are relative to the workspace root (where this config file lives).
|
|
30
32
|
# Both files and directories are supported.
|
|
@@ -53,6 +55,27 @@ ai_files:
|
|
|
53
55
|
# - CONVENTIONS.md
|
|
54
56
|
# - toolkit/prompts/review-checklist.md
|
|
55
57
|
|
|
58
|
+
# ------------------------------------------------------------------------------
|
|
59
|
+
# plugins — Workspace plugins and AI instruction packs
|
|
60
|
+
# ------------------------------------------------------------------------------
|
|
61
|
+
# Plugins extend your workspace with curated AI guidelines, context rules,
|
|
62
|
+
# and scaffolding templates. When enabled, plugin context files are automatically
|
|
63
|
+
# synchronized into all registered member repositories during `rnex sync`.
|
|
64
|
+
#
|
|
65
|
+
# Manage plugins with:
|
|
66
|
+
# rnex plugin list # View available and active plugins
|
|
67
|
+
# rnex plugin enable <name> # Enable and sync into member repos
|
|
68
|
+
# rnex plugin disable <name> # Disable and clean up
|
|
69
|
+
#
|
|
70
|
+
# Built-in plugins:
|
|
71
|
+
# karpathy-llm — Andrej Karpathy's agent behavioral principles,
|
|
72
|
+
# multi-repo context engineering, and LLM Wiki pattern
|
|
73
|
+
#
|
|
74
|
+
# Local / custom plugins can also be placed in .nexus/plugins/<name>/
|
|
75
|
+
|
|
76
|
+
plugins:
|
|
77
|
+
# - karpathy-llm
|
|
78
|
+
|
|
56
79
|
# ------------------------------------------------------------------------------
|
|
57
80
|
# repos — Member repositories managed by Repo Nexus
|
|
58
81
|
# ------------------------------------------------------------------------------
|
package/package.json
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repo-nexus",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.2.5",
|
|
4
|
+
"description": "Lightweight, zero-dependency companion tool for multi-repo workspaces and shared AI context via symlinks (no git submodules)",
|
|
5
5
|
"bin": {
|
|
6
|
-
"repo-nexus": "
|
|
7
|
-
"rnex": "
|
|
6
|
+
"repo-nexus": "rnex",
|
|
7
|
+
"rnex": "rnex"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
|
|
11
|
+
"test": "./tests/test_cli.sh"
|
|
8
12
|
},
|
|
9
13
|
"files": [
|
|
10
14
|
"rnex",
|
|
11
15
|
"README.md",
|
|
12
16
|
"LICENSE",
|
|
13
|
-
"docs/"
|
|
17
|
+
"docs/",
|
|
18
|
+
"toolkit/"
|
|
14
19
|
],
|
|
15
20
|
"repository": {
|
|
16
21
|
"type": "git",
|
|
@@ -21,18 +26,29 @@
|
|
|
21
26
|
},
|
|
22
27
|
"homepage": "https://github.com/nu-nenoi/repo-nexus#readme",
|
|
23
28
|
"keywords": [
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
29
|
+
"rnex",
|
|
30
|
+
"repo-nexus",
|
|
31
|
+
"rnex",
|
|
32
|
+
"repo-nexus",
|
|
27
33
|
"multi-repo",
|
|
28
34
|
"monorepo",
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
35
|
+
"ai-agents",
|
|
36
|
+
"agents.md",
|
|
37
|
+
"cursor-rules",
|
|
38
|
+
"claude-code",
|
|
39
|
+
"ai-agents",
|
|
40
|
+
"agents.md",
|
|
41
|
+
"cursor-rules",
|
|
42
|
+
"claude-code",
|
|
33
43
|
"copilot",
|
|
34
44
|
"cursor",
|
|
35
|
-
"
|
|
45
|
+
"plugins",
|
|
46
|
+
"karpathy",
|
|
47
|
+
"context-engineering",
|
|
48
|
+
"symlink",
|
|
49
|
+
"workspace",
|
|
50
|
+
"developer-tools",
|
|
51
|
+
"cli"
|
|
36
52
|
],
|
|
37
53
|
"license": "MIT",
|
|
38
54
|
"author": "Anton Shramkov",
|
|
@@ -43,4 +59,4 @@
|
|
|
43
59
|
"darwin",
|
|
44
60
|
"linux"
|
|
45
61
|
]
|
|
46
|
-
}
|
|
62
|
+
}
|