replen 1.0.19 → 1.0.21
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/dist/commands.js
CHANGED
|
@@ -577,6 +577,6 @@ export async function runAtlas(argv) {
|
|
|
577
577
|
console.log(JSON.stringify({ dir, count: data.files.length }));
|
|
578
578
|
return;
|
|
579
579
|
}
|
|
580
|
-
console.log(`Atlas
|
|
581
|
-
console.log(`Open ${dir} in Obsidian (or any markdown editor)
|
|
580
|
+
console.log(`Atlas: ${data.files.length} tiles written → ${dir}`);
|
|
581
|
+
console.log(`Open ${dir} in Obsidian (or any markdown editor) — the tiles stitch into the graph view of your projects, capabilities, and decisions.`);
|
|
582
582
|
}
|
|
@@ -5,10 +5,12 @@ description: Review Replen's suggestions for the current repo against your code.
|
|
|
5
5
|
|
|
6
6
|
# Replen Match — in-session candidate triage
|
|
7
7
|
|
|
8
|
-
You are running
|
|
8
|
+
You are running **Brainstem**'s matching loop locally. **Watchtower** — Replen's
|
|
9
9
|
maintained network of ~1,250 sources (vendor changelogs, advisories, pricing
|
|
10
|
-
pages, release feeds, standards trackers, EOL calendars) —
|
|
11
|
-
|
|
10
|
+
pages, release feeds, standards trackers, EOL calendars) — fetched the raw
|
|
11
|
+
events; **Brainstem** scored them against this codebase's capabilities; you've
|
|
12
|
+
got the user's codebase open and make the final call. Verdicts you record land
|
|
13
|
+
in **Atlas** and tune Brainstem's ranking for every future session.
|
|
12
14
|
Your job is to decide which (if any) are worth their attention, write up the
|
|
13
15
|
strong ones, and capture what they want to do about them.
|
|
14
16
|
|
|
@@ -344,7 +346,7 @@ The user hasn't set up filter-mode B's tag list. Mention it once: "Heads
|
|
|
344
346
|
up — you'd get sharper matches if you set project tags at /settings.
|
|
345
347
|
Continuing with unfiltered for now."
|
|
346
348
|
|
|
347
|
-
##
|
|
349
|
+
## Atlas tiles — local memory for any agent
|
|
348
350
|
|
|
349
351
|
Replen keeps an agent-readable markdown vault at `~/.replen/atlas/` — the
|
|
350
352
|
user's whole portfolio as linked notes: every project and what it does,
|
|
@@ -356,8 +358,8 @@ The MCP server refreshes it in the background (at most twice a day);
|
|
|
356
358
|
Use it whenever you need CROSS-PROJECT context: "what else does this user
|
|
357
359
|
build?", "have we solved X in another repo?", "what did we decide about
|
|
358
360
|
Y last quarter?". Start at `MAP.md`, or call `replen_recall` for a direct
|
|
359
|
-
query. Reading the
|
|
360
|
-
|
|
361
|
+
query. Reading the tiles beats re-deriving the portfolio from scratch —
|
|
362
|
+
they're the memory layer, and they're already on disk.
|
|
361
363
|
|
|
362
364
|
## When NOT to run this skill
|
|
363
365
|
|
|
@@ -89,7 +89,7 @@ grounding source (faster AND richer than a cold code-read):
|
|
|
89
89
|
|
|
90
90
|
If you ground from one of these, START the report (2c) with one line:
|
|
91
91
|
`Grounding source: Graphify vault at <path>` (or `Obsidian vault…` / `ADRs…`)
|
|
92
|
-
— it renders into the user's Atlas
|
|
92
|
+
— it renders into the user's Atlas tiles, linking the two tools. Then skim the
|
|
93
93
|
code only to VERIFY (the vault may be stale); don't re-derive what it already
|
|
94
94
|
holds. Privacy is unchanged: only capabilities/descriptors/paths/tags leave
|
|
95
95
|
the machine, exactly as with a code-read — never vault content or code.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "replen",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
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": {
|