replen 1.0.19 → 1.0.20
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
|
}
|
|
@@ -344,7 +344,7 @@ The user hasn't set up filter-mode B's tag list. Mention it once: "Heads
|
|
|
344
344
|
up — you'd get sharper matches if you set project tags at /settings.
|
|
345
345
|
Continuing with unfiltered for now."
|
|
346
346
|
|
|
347
|
-
##
|
|
347
|
+
## Atlas tiles — local memory for any agent
|
|
348
348
|
|
|
349
349
|
Replen keeps an agent-readable markdown vault at `~/.replen/atlas/` — the
|
|
350
350
|
user's whole portfolio as linked notes: every project and what it does,
|
|
@@ -356,8 +356,8 @@ The MCP server refreshes it in the background (at most twice a day);
|
|
|
356
356
|
Use it whenever you need CROSS-PROJECT context: "what else does this user
|
|
357
357
|
build?", "have we solved X in another repo?", "what did we decide about
|
|
358
358
|
Y last quarter?". Start at `MAP.md`, or call `replen_recall` for a direct
|
|
359
|
-
query. Reading the
|
|
360
|
-
|
|
359
|
+
query. Reading the tiles beats re-deriving the portfolio from scratch —
|
|
360
|
+
they're the memory layer, and they're already on disk.
|
|
361
361
|
|
|
362
362
|
## When NOT to run this skill
|
|
363
363
|
|
|
@@ -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.20",
|
|
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": {
|