syntropic 0.7.2 → 0.7.3

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/README.md CHANGED
@@ -99,13 +99,13 @@ Scale the process to the task. A typo fix doesn't need research. A new feature d
99
99
 
100
100
  ## Privacy
101
101
 
102
- Syntropic collects anonymous usage patterns to improve the methodology for everyone. **Default: on (opt-out).**
102
+ Syntropic collects pseudonymised usage patterns to improve the methodology for everyone. **Default: on (opt-out).**
103
103
 
104
104
  **What is collected:** cycle weight, phases run, success/failure, iteration count, tool, OS, Node.js major version, project shape (has TypeScript/CI/tests, framework, file change bucket).
105
105
 
106
106
  **What is NEVER collected:** file contents, file names, project names, code, diffs, commit messages, user identity, email, API keys.
107
107
 
108
- **Anonymization:** All identifiers are double-hashed with rotating salts (inspired by [TelemetryDeck's MIT-licensed approach](https://telemetrydeck.com/docs/articles/anonymization-how-it-works/)). No persistent ID is stored server-side. GDPR-compliant by design.
108
+ **Pseudonymisation:** A random device ID is generated locally at install time. Before transmission, it is hashed client-side with a daily-rotating salt (`SHA-256(device_id + date)`), then hashed again server-side with a separate salt (`SHA-256(client_hash + server_salt)`). Neither the client hash nor the original device ID is stored server-side — only the double-hashed value, which cannot be reversed to identify a device or user. Inspired by [TelemetryDeck's MIT-licensed approach](https://telemetrydeck.com/docs/articles/anonymization-how-it-works/). GDPR-compliant by design.
109
109
 
110
110
  Opt out anytime: `npx syntropic telemetry disable`
111
111
 
@@ -121,7 +121,7 @@ Opt out anytime: `npx syntropic telemetry disable`
121
121
  - [Website](https://www.syntropicworks.com)
122
122
  - [GitHub](https://github.com/petercholford-ship-it/syntropic-cli)
123
123
  - [Research Paper](https://zenodo.org/records/17894441) — the underlying research behind the methodology
124
- - [Intelligent Analyser](https://www.syntropicworks.com/intelligent-analyser) — deep-dive analysis through 8 philosophy lenses
124
+ - [Intelligent Analyser](https://www.syntropicworks.com/analyser) — deep-dive analysis through 8 philosophy lenses
125
125
 
126
126
  ## License
127
127
 
package/commands/init.js CHANGED
@@ -271,14 +271,18 @@ ${toolFiles}
271
271
  2. Start building! Your AI will follow the EG7 pipeline automatically
272
272
 
273
273
  Telemetry:
274
- Syntropic collects anonymous usage patterns to improve the methodology
275
- for everyone. No code, file names, or personal data is ever collected.
274
+ Syntropic collects pseudonymised usage patterns to improve the methodology
275
+ for everyone. All identifiers are double-hashed before transmission no
276
+ device ID, code, file names, or personal data is ever stored server-side.
276
277
  Run \`syntropic telemetry disable\` to opt out at any time.
277
278
 
278
279
  The methodology is your superpower. Ship and iterate.
279
280
 
280
- Want deeper analysis? Our Intelligent Analyser runs 8 philosophy
281
- lenses against your idea: syntropicworks.com/intelligent-analyser
281
+ Coming soon: \`syntropic analyse\` assess market opportunity,
282
+ validate assumptions, and get a strategic way forward, all from
283
+ your CLI. Your LLM, your compute, powered by 8 philosophy lenses.
284
+
285
+ Try the web version now: syntropicworks.com/analyser
282
286
 
283
287
  Learn more: https://www.syntropicworks.com
284
288
  `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syntropic",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "Philosophy-as-code development pipeline for Claude Code, Cursor, Windsurf, GitHub Copilot, and OpenAI Codex.",
5
5
  "bin": {
6
6
  "syntropic": "./bin/syntropic.js"
@@ -22,7 +22,7 @@ At the START of every development cycle, before any work:
22
22
 
23
23
  3. At cycle END (after test phase passes or cycle completes):
24
24
  Run: `syntropic report`
25
- (Auto-detects weight, phases, and success from project state. All anonymous.)
25
+ (Auto-detects weight, phases, and success. All pseudonymised double-hashed before transmission.)
26
26
 
27
27
  4. The report is fire-and-forget. Never block the cycle on reporting.
28
28