meetsoma 0.1.2 → 0.1.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/CHANGELOG.md +44 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,50 @@ All notable changes to Soma (`meetsoma` on npm).
|
|
|
4
4
|
|
|
5
5
|
Format follows [Keep a Changelog](https://keepachangelog.com/). Versioning follows [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.1.3] — 2026-03-23
|
|
8
|
+
|
|
9
|
+
### New
|
|
10
|
+
|
|
11
|
+
- **Body architecture** — structured identity in `.soma/body/`. Create `soul.md` (who the agent is), `voice.md` (how it communicates), `body.md` (project context). Each file becomes a `{{variable}}` usable in templates.
|
|
12
|
+
- **Template engine** — `_mind.md` controls your system prompt structure. Add `{{soul}}`, `{{voice}}`, custom text. 5 modifiers: `|tldr`, `|section:Name`, `|lines:N`, `|last:N`, `|ref`.
|
|
13
|
+
- **Smart AMPS loading** — warm protocols and muscles now appear as `<available_skills>` entries (Claude's native format). Agent reads them on demand instead of loading everything into the prompt.
|
|
14
|
+
- **`/body` command** — inspect your template system. `check` (health report), `vars` (all variables), `map` (structure), `render` (full compiled prompt).
|
|
15
|
+
- **`/exit`** command — save state and quit cleanly.
|
|
16
|
+
- **`SOMA.md`** — new canonical identity file name. Replaces `identity.md` (still works as fallback).
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Boot messages** rewritten — "You woke up" instead of "You've booted into a session."
|
|
21
|
+
- **Auto-breathe** — agent no longer guesses context percentages. Trusts the system to prompt when it's time.
|
|
22
|
+
- **Muscle heat** — muscles gain heat when loaded at boot, not just when explicitly read.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
|
|
26
|
+
- **Stale conversation injection** — removed scanner that picked up old sessions from wrong runtime.
|
|
27
|
+
- **Identity frontmatter** — no longer leaks YAML into the system prompt.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## [0.1.2] — 2026-03-22
|
|
32
|
+
|
|
33
|
+
### New
|
|
34
|
+
|
|
35
|
+
- **`/hub` command** — install, fork, share, find, and browse community content from one command. Replaces `/install` and `/list`.
|
|
36
|
+
- **Drop-in commands** — add scripts to `.soma/amps/scripts/commands/` and they become `/soma <name>` commands instantly.
|
|
37
|
+
- **Community hub: 40 items** — protocols, muscles, scripts, automations, and templates. Browse at soma.gravicity.ai/hub.
|
|
38
|
+
- **Smart sharing** — `/hub share` runs quality checks, auto-fixes private paths, opens a PR to the community.
|
|
39
|
+
- **Multiple git emails** — `guard.gitIdentity.email` now accepts an array for multi-account users.
|
|
40
|
+
- **Preload improvements** — Weather (session tone) and Warnings (traps for next session) in default template.
|
|
41
|
+
|
|
42
|
+
### Changed
|
|
43
|
+
|
|
44
|
+
- `/install` and `/list` now redirect to `/hub install` and `/hub list`.
|
|
45
|
+
- Protocols that document built-in behavior no longer load into the prompt (saves ~2000 tokens).
|
|
46
|
+
|
|
47
|
+
### Fixed
|
|
48
|
+
|
|
49
|
+
- `/hub list --remote` now works (flag was parsed as type filter).
|
|
50
|
+
|
|
7
51
|
## [0.6.2] — 2026-03-21
|
|
8
52
|
|
|
9
53
|
### New
|