replen 1.5.3 → 1.5.4
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.
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// finds every git repo, and for each one extracts:
|
|
5
5
|
// - The repo's `owner/name` from `git remote get-url origin`
|
|
6
6
|
// - A slug derived from the GITHUB repo name (so a local folder named
|
|
7
|
-
// "drone" whose remote is acme/
|
|
7
|
+
// "drone" whose remote is acme/acme registers with slug "acme",
|
|
8
8
|
// matching what shows on GitHub). Falls back to dirname for repos
|
|
9
9
|
// without a GitHub remote.
|
|
10
10
|
// - A name (from package.json's `name` field if present, else slug)
|
|
@@ -56,8 +56,8 @@ Find the user's local repositories and filter to the ones worth onboarding.
|
|
|
56
56
|
- Has a git remote (so Replen can scope by `owner/name`). Note any local-only
|
|
57
57
|
repos and skip them.
|
|
58
58
|
3. **Present the list and get ONE green light.** Show the in-scope repos and ask
|
|
59
|
-
the user to confirm or trim — e.g. *"Found 8 active repos to onboard:
|
|
60
|
-
|
|
59
|
+
the user to confirm or trim — e.g. *"Found 8 active repos to onboard: acme-web,
|
|
60
|
+
acme-api, … — go, or want me to drop any?"* This is the **only** question you
|
|
61
61
|
ask. Once confirmed, run the rest autonomously.
|
|
62
62
|
|
|
63
63
|
## Step 1.5 — Pre-flight: decide the MINIMUM work per repo (do NOT skip this)
|
|
@@ -291,7 +291,7 @@ sanitize titles, no codenames.
|
|
|
291
291
|
|
|
292
292
|
**Also capture architectural PRACTICES as capabilities.** Beyond what the code
|
|
293
293
|
*does*, note the distinctive structural *moves* it makes — these are what let
|
|
294
|
-
Replen suggest a pattern to your OTHER projects ("
|
|
294
|
+
Replen suggest a pattern to your OTHER projects ("Acme made its domain model
|
|
295
295
|
data-driven; this data-heavy project should consider it"). Include a capability
|
|
296
296
|
for any deliberate practice you find: a **data-driven domain ontology** (entity
|
|
297
297
|
types/relationships stored as DATA/rows, not hardcoded — configurable without a
|
|
@@ -353,7 +353,7 @@ typed properties, computed properties as rows", never the entity names).
|
|
|
353
353
|
it (e.g. `{tag: "computer vision", …, paths: ["src/cv/transformations.py"]}`).
|
|
354
354
|
Paths only, never code. You just read these files; recording WHERE each
|
|
355
355
|
capability lives lets Replen point another of the user's projects straight
|
|
356
|
-
at the implementation worth porting ("
|
|
356
|
+
at the implementation worth porting ("acme solved this — see src/cv/…").
|
|
357
357
|
**If you grounded from a vault, also pass the `concepts` array from 2d** —
|
|
358
358
|
concept titles + their `[[wikilinks]]` only (never file/symbol notes, never
|
|
359
359
|
bodies). Replen turns these into graph nodes + your-own-graph leaps. Omit it
|
|
@@ -369,7 +369,7 @@ typed properties, computed properties as rows", never the entity names).
|
|
|
369
369
|
|
|
370
370
|
## Step 3 — Group multi-repo products
|
|
371
371
|
|
|
372
|
-
If several repos are one product (e.g. `
|
|
372
|
+
If several repos are one product (e.g. `acme-web`/`acme-api`/`acme-cv`), group
|
|
373
373
|
them with `replen_set_product` so Replen unions the whole product's capabilities
|
|
374
374
|
when the user is in any one of them.
|
|
375
375
|
|
|
@@ -383,7 +383,7 @@ when the user is in any one of them.
|
|
|
383
383
|
```
|
|
384
384
|
Replen onboarding done — 8 repos grounded.
|
|
385
385
|
· docs: 2 created, 1 augmented, 5 already good (untouched)
|
|
386
|
-
· capabilities + report set for all 8;
|
|
386
|
+
· capabilities + report set for all 8; acme-* grouped as one product
|
|
387
387
|
· doc changes are on branch `replen/onboarding-docs` for your review
|
|
388
388
|
Replen will now surface genuinely relevant tools for these repos.
|
|
389
389
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "replen",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.4",
|
|
4
4
|
"description": "Make your AI coding tools smarter. One command, no API keys, free. Replen watches what your projects actually do and surfaces a few things worth bringing in each month. Use one as is, port a piece of another, cherry pick an idea, or build it clean room. The match happens inside your AI tool's session. A few actionable matches a month, by design.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"build": "tsc && chmod +x dist/index.js",
|
|
11
11
|
"dev": "tsx src/index.ts",
|
|
12
12
|
"check:skill-sync": "node scripts/check-skill-sync.mjs",
|
|
13
|
-
"prepublishOnly": "npm run build && npm run check:skill-sync"
|
|
13
|
+
"prepublishOnly": "npm run build && npm run check:skill-sync && node ../scripts/check-no-private-slugs.mjs"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|