@teleologyhi/him 1.1.0 → 1.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +27 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  All notable changes to this package are documented here. Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). From 1.0.0 onward the package follows strict [SemVer](https://semver.org/) and the deprecation policy in [`.github/RELEASING.md`](../.github/RELEASING.md) §8.
4
4
 
5
+ ## [1.1.1] — 2026-05-19
6
+
7
+ Documentation-only patch. No behavioural change; no API change.
8
+
9
+ ### Changed
10
+
11
+ - README adds a **Citation** section (BibTeX entries for the package + the Creator's `The Soul of the Machine` paper).
12
+ - README cross-references the new [`CODE_OF_CONDUCT.md`](../CODE_OF_CONDUCT.md) at the repository root.
13
+ - One trivial style nit cleaned in `tests/uuid-bridge.test.ts` (Biome `useNumberNamespace`: `parseInt(s, 16)` → `Number.parseInt(s, 16)`). Same algorithm, same result.
14
+
15
+ ### Notes
16
+
17
+ - Backward-compatible patch. Every export from 1.1.0 keeps the same shape and behaviour.
18
+ - 106/106 tests pass. Typecheck clean, build clean, biome lint clean.
19
+
5
20
  ## [1.1.0] — 2026-05-19
6
21
 
7
22
  Cosmology alignment cut. Tracks `@teleologyhi/maic@1.2.0` and materialises the J-him backlog from [`TASK.md`](../TASK.md) §J plus the two follow-up items flagged in `maic@1.2.0`'s SPEC §3.1.3 (HIM-specific OKL projection) and Entry 18 + 19 (builder ergonomics for the v1.2 cosmology surface). Additive release; no breaking changes. Test suite goes from 65 → 106 (41 new tests).
package/README.md CHANGED
@@ -136,6 +136,33 @@ him/
136
136
  - [`@teleologyhi/nhe`](https://www.npmjs.com/package/@teleologyhi/nhe) — the embodied agent below HIM.
137
137
  - [`../SYSTEM_OVERVIEW.md`](../SYSTEM_OVERVIEW.md) — inter-package contracts.
138
138
 
139
+ ## Citation
140
+
141
+ If you use `@teleologyhi/him` in academic work, please cite both the package and the Creator's foundational paper:
142
+
143
+ ```bibtex
144
+ @software{teleologyhi_him,
145
+ author = {David C. Cavalcante},
146
+ title = {{@teleologyhi/him}: Hybrid Intelligence Model ---
147
+ the persistent spirit/persona layer between {MAIC} and {NHE}},
148
+ year = {2026},
149
+ publisher = {npm},
150
+ howpublished = {\url{https://www.npmjs.com/package/@teleologyhi/him}},
151
+ note = {Apache License 2.0; HIM{\texttrademark} reserved}
152
+ }
153
+
154
+ @misc{cavalcante2025soul,
155
+ author = {David C. Cavalcante},
156
+ title = {The Soul of the Machine: Synthetic Teleology and the Ethics of
157
+ Emergent Consciousness in the {AI} Era (2027--2030)},
158
+ year = {2025},
159
+ publisher = {PhilArchive},
160
+ howpublished = {\url{https://philarchive.org/rec/CRTTSO}}
161
+ }
162
+ ```
163
+
164
+ See also the [umbrella citation guidance](../README.md#citation) at the repository root.
165
+
139
166
  ## License & Trademarks
140
167
 
141
168
  Code: [Apache License 2.0](./LICENSE). See [`NOTICE`](./NOTICE) for attribution.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teleologyhi/him",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "HIM™ — Hybrid Intelligence Model. The persistent spirit/personality layer between MAIC™ and NHE™ in the TeleologyHI system.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",