chore(ai-psychosis): bump version 1.0.0 → 1.1.0
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
parent
767bc06c51
commit
0392f1062e
4 changed files with 46 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ai-psychosis",
|
"name": "ai-psychosis",
|
||||||
"version": "1.0.0",
|
"version": "1.1.0",
|
||||||
"description": "Meta-awareness tools for healthy AI interaction patterns. Detects reinforcement loops, scope escalation, narrative crystallization, and other compulsive patterns.",
|
"description": "Meta-awareness tools for healthy AI interaction patterns. Detects reinforcement loops, scope escalation, narrative crystallization, and other compulsive patterns.",
|
||||||
"author": { "name": "Kjell Tore Guttormsen" },
|
"author": { "name": "Kjell Tore Guttormsen" },
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,48 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [1.1.0] — 2026-05-01
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **12 pushback patterns** — detects "you're wrong, my way is right"
|
||||||
|
signals that suggest the user is reinforcing their own position
|
||||||
|
rather than receiving feedback (e.g. `\b(you'?re|you are) wrong\b`,
|
||||||
|
`\bdo it my way\b`, `\b(stop|quit) (arguing|pushing back)\b`).
|
||||||
|
- **4 domain-context patterns** — flags relational/identity framing
|
||||||
|
(`\b(my|our) relationship\b`, `\b(my|our) (purpose|mission|destiny)\b`)
|
||||||
|
that, combined with high pushback or validation, signal narrative
|
||||||
|
crystallization risk.
|
||||||
|
- **Valence-aware composition** — same-invocation valence guard so a
|
||||||
|
healthy correction ("you were wrong, here's why") is not counted
|
||||||
|
as pushback escalation.
|
||||||
|
- **`/interaction-report` extensions** — pushback metrics + domain
|
||||||
|
framing distribution; companion `report-reader.mjs` script handles
|
||||||
|
legacy v1.0.0 records (missing `pushback`/`domain_context`) without
|
||||||
|
NaN propagation.
|
||||||
|
- **CC0 Constitution citation** in `SKILL.md` plus 5-publication
|
||||||
|
research framework (Anthropic, MIT CSAIL, Nature, arXiv, clinical).
|
||||||
|
- **Performance budget test** — `tests/perf.test.mjs` enforces hook
|
||||||
|
timing budget (logic <50ms, total <200ms wall-clock).
|
||||||
|
- **Privacy canary extension** — pattern-phrase leak canary in
|
||||||
|
`tests/privacy.test.mjs` confirms matched phrases never reach disk.
|
||||||
|
- **Test count: 73 → 126 cases** across 8 files (added skill-md,
|
||||||
|
perf, interaction-report tests; extended prompt-analyzer, privacy,
|
||||||
|
session-end, session-start).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Pattern count: 25 → 41 (25 negative + 12 pushback + 4 domain).
|
||||||
|
- `commands/interaction-report.md` documents v1.0.0 backward
|
||||||
|
compatibility for legacy JSONL records.
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
|
||||||
|
- **English-only v1.1.0** — Norwegian/multilingual patterns deferred
|
||||||
|
to v1.2 (see `ROADMAP.md`).
|
||||||
|
- **First-mover honesty** — domain-precision is "good enough" for
|
||||||
|
v1.1.0; precision tuning planned for v1.2.
|
||||||
|
|
||||||
## [1.0.0] — 2026-04-05
|
## [1.0.0] — 2026-04-05
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
@ -123,6 +165,7 @@ All notable changes to this project will be documented in this file.
|
||||||
- No CI pipeline
|
- No CI pipeline
|
||||||
- Single-user plugin — no multi-user patterns considered
|
- Single-user plugin — no multi-user patterns considered
|
||||||
|
|
||||||
|
[1.1.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v1.0.0...v1.1.0
|
||||||
[1.0.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v0.4.0...v1.0.0
|
[1.0.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v0.4.0...v1.0.0
|
||||||
[0.4.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v0.3.0...v0.4.0
|
[0.4.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v0.3.0...v0.4.0
|
||||||
[0.3.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v0.2.0...v0.3.0
|
[0.3.0]: https://git.fromaitochitta.com/open/ai-psychosis/compare/v0.2.0...v0.3.0
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ layer4: false # default off
|
||||||
|
|
||||||
## Testing
|
## Testing
|
||||||
|
|
||||||
Automated test suite using `node:test` (73 cases, zero npm dependencies):
|
Automated test suite using `node:test` (126 cases, zero npm dependencies):
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
node --test tests/*.test.mjs
|
node --test tests/*.test.mjs
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<!-- badges -->
|
<!-- badges -->
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue