cohorte 1.2.0 → 1.2.1
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
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
Entries are shown by `/update-pipeline` ("What's new") after a core refresh. Keep them short,
|
|
4
4
|
user-facing, most recent first. One `## <version> — <YYYY-MM-DD>` section per release.
|
|
5
5
|
|
|
6
|
+
## 1.2.1 — 2026-07-29
|
|
7
|
+
|
|
8
|
+
- Telemetry collector URL shipped as the config-template default
|
|
9
|
+
(`https://telemetry.cohorte.thebidouille.fr/v1/events`) — consenting installs start
|
|
10
|
+
reporting once the collector is live. Still strictly opt-in; nothing changes for anyone
|
|
11
|
+
who declined (or never answered) the consent question.
|
|
12
|
+
|
|
6
13
|
## 1.2.0 — 2026-07-29
|
|
7
14
|
|
|
8
15
|
> **Opt-in anonymous telemetry, GDPR-first.** Nothing is sent unless you explicitly say yes.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cohorte",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Portable, stack-agnostic multi-agent development pipeline for Claude Code — install the core, run /init-pipeline, and it adapts to your project's stack.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"cohorte": "bin/cli.js"
|
|
@@ -22,7 +22,7 @@ telemetry:
|
|
|
22
22
|
enabled: false # cfg:telemetry_enabled — true ONLY via explicit consent
|
|
23
23
|
install_id: "" # cfg:telemetry_install_id — random UUID minted at consent; the erasure key
|
|
24
24
|
consent_date: "" # cfg:telemetry_consent_date — ISO date the human said yes
|
|
25
|
-
endpoint: ""
|
|
25
|
+
endpoint: "https://telemetry.cohorte.thebidouille.fr/v1/events" # cfg:telemetry_endpoint — collector URL; empty = off even if enabled
|
|
26
26
|
|
|
27
27
|
# ── obsidian ──────────────────────────────────────────────────────────────────
|
|
28
28
|
# Local vault used by the kanban mirror — defined here ONCE so no capability ever duplicates
|