wendkeep 0.23.0 → 0.24.0
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/CHANGELOG.md +10 -0
- package/README.md +1 -1
- package/bin/wendkeep.mjs +1 -1
- package/package.json +1 -1
- package/src/init.mjs +2 -2
- package/src/taxonomy.mjs +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to **wendkeep** are documented here. Format based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this project follows
|
|
5
5
|
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.24.0] — 2026-07-08
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **No companion is pre-selected anymore.** `context-mode` was pre-checked (and the
|
|
11
|
+
non-interactive default); wendkeep is a neutral harness and should not presume a third-party
|
|
12
|
+
plugin. The interactive picker now starts with **nothing checked**, `init --yes` (and any
|
|
13
|
+
non-interactive run) installs **no** companions, and `resolveCompanions({})` returns `[]`.
|
|
14
|
+
Opt in explicitly — interactively (Space) or `--companions context-mode`. `src/taxonomy.mjs`.
|
|
15
|
+
- Prompt/help/README text updated to reflect the empty default.
|
|
16
|
+
|
|
7
17
|
## [0.23.0] — 2026-07-08
|
|
8
18
|
|
|
9
19
|
Vault structure — generated views + housekeeping (audit wave 2).
|
package/README.md
CHANGED
|
@@ -65,7 +65,7 @@ npx wendkeep init --no-companions --no-mcp --yes # zero companions,
|
|
|
65
65
|
| `--vault <path>` | Vault folder. Default `<project>/.<project-name>-vault`; interactive init asks. Point it at an existing vault to install into it. |
|
|
66
66
|
| `--project <path>` | Project root to wire (default: current directory). |
|
|
67
67
|
| `--locale <pt-BR\|en>` | Vault language — folder names, scaffold, skills. Interactive init asks; locked at init. |
|
|
68
|
-
| `--companions <csv>` | Companions to pin: `context-mode,caveman,understand-anything` (default:
|
|
68
|
+
| `--companions <csv>` | Companions to pin: `context-mode,caveman,understand-anything` (default: **none** — opt in explicitly; `dotcontext` is legacy). |
|
|
69
69
|
| `--no-companions` | Pin no companions. |
|
|
70
70
|
| `--no-mcp` | Skip **wendkeep's own** vault MCP (`wendkeep-vault`). Companion MCPs still follow `--companions`. |
|
|
71
71
|
| `--no-colors` | Skip the Obsidian color system (`.obsidian` snippet + graph groups). |
|
package/bin/wendkeep.mjs
CHANGED
|
@@ -30,7 +30,7 @@ Usage:
|
|
|
30
30
|
--project <path> Project root to wire (default: current directory).
|
|
31
31
|
--no-mcp Do not add the mcpvault MCP server to .mcp.json.
|
|
32
32
|
--companions <csv> Companion plugins/MCP to pin: context-mode,caveman,understand-anything
|
|
33
|
-
(default:
|
|
33
|
+
(default: none — opt in explicitly). dotcontext is legacy — the native a2 loop replaces it.
|
|
34
34
|
--no-companions Skip companion plugins/MCP entirely.
|
|
35
35
|
--no-colors Skip the Obsidian color system (.obsidian snippet + graph groups).
|
|
36
36
|
--dotcontext-mcp <v> dotcontext MCP placement: auto (default; skip project entry
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wendkeep",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.0",
|
|
4
4
|
"description": "A persistent-memory harness for AI coding agents on your Obsidian vault: turn-by-turn session capture plus a native, zero-dependency spec→change→verify→archive loop (sensor-gated, independent verdict, mutation discrimination). Local-first, agent-agnostic (Claude Code, Codex, Cursor…).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/init.mjs
CHANGED
|
@@ -207,13 +207,13 @@ function installVaultColors(vaultPath) {
|
|
|
207
207
|
const PROMPTS = {
|
|
208
208
|
'pt-BR': {
|
|
209
209
|
vault: (f) => `Caminho do vault Obsidian (Enter aceita o padrão, ou digite outro)\n [${f}]\n> `,
|
|
210
|
-
companionsHeader: '\nCompanions (plugins/MCP opcionais —
|
|
210
|
+
companionsHeader: '\nCompanions (plugins/MCP opcionais — nenhum vem pré-marcado):',
|
|
211
211
|
companionsAsk: (def) => `Digite os ids separados por vírgula (Enter aceita [${def}], "none" p/ nenhum): `,
|
|
212
212
|
menu: { hint: 'Espaço marca/desmarca · ↑/↓ move · a=todos · n=nenhum · Enter confirma', header: 'Companions' },
|
|
213
213
|
},
|
|
214
214
|
en: {
|
|
215
215
|
vault: (f) => `Obsidian vault path (Enter for the default, or type another)\n [${f}]\n> `,
|
|
216
|
-
companionsHeader: '\nCompanions (optional plugins/MCP —
|
|
216
|
+
companionsHeader: '\nCompanions (optional plugins/MCP — none pre-selected):',
|
|
217
217
|
companionsAsk: (def) => `Enter ids comma-separated (Enter for [${def}], "none" for none): `,
|
|
218
218
|
menu: { hint: 'Space toggles · ↑/↓ move · a=all · n=none · Enter confirms', header: 'Companions' },
|
|
219
219
|
},
|
package/src/taxonomy.mjs
CHANGED
|
@@ -102,8 +102,10 @@ export function hookCommand(name) {
|
|
|
102
102
|
export const COMPANIONS = [
|
|
103
103
|
{
|
|
104
104
|
id: 'context-mode',
|
|
105
|
-
label: 'context-mode — otimizador de contexto + memória FTS5 (
|
|
106
|
-
default:
|
|
105
|
+
label: 'context-mode — otimizador de contexto + memória FTS5 (opcional)',
|
|
106
|
+
// Not a default: wendkeep is a neutral harness and does not presume a third-party plugin.
|
|
107
|
+
// Opt in interactively or with `--companions context-mode`.
|
|
108
|
+
default: false,
|
|
107
109
|
marketplace: { source: 'git', url: 'https://github.com/mksglu/context-mode.git' },
|
|
108
110
|
plugin: 'context-mode',
|
|
109
111
|
// Agent-agnostic: MCP server, self-updating via unpinned npx.
|