Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .changeset/th-mail-skill-in-repo.md

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @smooai/smooth

## 0.15.8

### Patch Changes

- c7f484d: Bring the `/th-mail` Claude skill into the repo (git-tracked) + a symlink installer.

- Adds `.claude/skills/th-mail/` (SKILL.md + watch-once.sh) — the harness-agnostic agent-mail watcher (`watch-once.sh` blocks until unread `th msg` mail arrives, prints it, and exits so a background task re-invokes the agent; no busy-poll; does NOT `--pull` by default to avoid the Dolt write-lock contention that caused store-wide `Error 1105: database is read only`).
- Adds `scripts/install-skills.sh` + `pnpm install:skills`, which symlinks the repo's skills into `~/.claude/skills` (backing up any existing copy). The skill now lives in ONE git-tracked place, so it can't be silently changed by an untracked local edit. Output follows the Smooth Flow glyph vocabulary.

## 0.15.7

### Patch Changes
Expand Down
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["crates/*"]
exclude = ["crates/smooth-bigsmooth/tests/fixtures"]

[workspace.package]
version = "0.15.7"
version = "0.15.8"
edition = "2021"
license = "MIT"
repository = "https://github.com/SmooAI/smooth"
Expand Down Expand Up @@ -196,24 +196,24 @@ microsandbox = "0.4"
smooth-operator = { version = "0.14.0", package = "smooai-smooth-operator-core" }
# smooth-owned coding-harness extensions to the generic engine (re-homed from
# the engine when it went generic at 0.14.0). See crates/smooth-cast.
smooth-cast = { version = "0.15.7", path = "crates/smooth-cast", package = "smooai-smooth-cast" }
smooth-bigsmooth = { version = "0.15.7", path = "crates/smooth-bigsmooth", package = "smooai-smooth-bigsmooth" }
smooth-policy = { path = "crates/smooth-policy", version = "0.15.7", package = "smooai-smooth-policy" }
smooth-web = { version = "0.15.7", path = "crates/smooth-web", package = "smooai-smooth-web" }
smooth-scribe = { version = "0.15.7", path = "crates/smooth-scribe", package = "smooai-smooth-scribe" }
smooth-wonk = { version = "0.15.7", path = "crates/smooth-wonk", package = "smooai-smooth-wonk" }
smooth-goalie = { version = "0.15.7", path = "crates/smooth-goalie", package = "smooai-smooth-goalie" }
smooth-narc = { version = "0.15.7", path = "crates/smooth-narc", package = "smooai-smooth-narc" }
smooth-archivist = { version = "0.15.7", path = "crates/smooth-archivist", package = "smooai-smooth-archivist" }
smooth-plugin = { version = "0.15.7", path = "crates/smooth-plugin", package = "smooai-smooth-plugin" }
smooth-code = { version = "0.15.7", path = "crates/smooth-code", package = "smooai-smooth-code" }
smooth-pearls = { path = "crates/smooth-pearls", version = "0.15.7", package = "smooai-smooth-pearls" }
smooth-diver = { version = "0.15.7", path = "crates/smooth-diver", package = "smooai-smooth-diver" }
smooth-bootstrap-bill = { version = "0.15.7", path = "crates/smooth-bootstrap-bill", default-features = false, package = "smooai-smooth-bootstrap-bill" }
smooth-tunnel = { version = "0.15.7", path = "crates/smooth-tunnel", package = "smooai-smooth-tunnel" }
smooth-host-stub = { version = "0.15.7", path = "crates/smooth-host-stub", package = "smooai-smooth-host-stub" }
smooth-bench = { version = "0.15.7", path = "crates/smooth-bench", package = "smooai-smooth-bench" }
smooth-api-client = { version = "0.15.7", path = "crates/smooth-api-client", package = "smooai-smooth-api-client" }
smooth-cast = { version = "0.15.8", path = "crates/smooth-cast", package = "smooai-smooth-cast" }
smooth-bigsmooth = { version = "0.15.8", path = "crates/smooth-bigsmooth", package = "smooai-smooth-bigsmooth" }
smooth-policy = { path = "crates/smooth-policy", version = "0.15.8", package = "smooai-smooth-policy" }
smooth-web = { version = "0.15.8", path = "crates/smooth-web", package = "smooai-smooth-web" }
smooth-scribe = { version = "0.15.8", path = "crates/smooth-scribe", package = "smooai-smooth-scribe" }
smooth-wonk = { version = "0.15.8", path = "crates/smooth-wonk", package = "smooai-smooth-wonk" }
smooth-goalie = { version = "0.15.8", path = "crates/smooth-goalie", package = "smooai-smooth-goalie" }
smooth-narc = { version = "0.15.8", path = "crates/smooth-narc", package = "smooai-smooth-narc" }
smooth-archivist = { version = "0.15.8", path = "crates/smooth-archivist", package = "smooai-smooth-archivist" }
smooth-plugin = { version = "0.15.8", path = "crates/smooth-plugin", package = "smooai-smooth-plugin" }
smooth-code = { version = "0.15.8", path = "crates/smooth-code", package = "smooai-smooth-code" }
smooth-pearls = { path = "crates/smooth-pearls", version = "0.15.8", package = "smooai-smooth-pearls" }
smooth-diver = { version = "0.15.8", path = "crates/smooth-diver", package = "smooai-smooth-diver" }
smooth-bootstrap-bill = { version = "0.15.8", path = "crates/smooth-bootstrap-bill", default-features = false, package = "smooai-smooth-bootstrap-bill" }
smooth-tunnel = { version = "0.15.8", path = "crates/smooth-tunnel", package = "smooai-smooth-tunnel" }
smooth-host-stub = { version = "0.15.8", path = "crates/smooth-host-stub", package = "smooai-smooth-host-stub" }
smooth-bench = { version = "0.15.8", path = "crates/smooth-bench", package = "smooai-smooth-bench" }
smooth-api-client = { version = "0.15.8", path = "crates/smooth-api-client", package = "smooai-smooth-api-client" }
# Cross-runtime client shared library (github.com/SmooAI/client-shared).
# SMOODEV-1464: switched from a local `path = "../client-shared/rust"` dep to
# a rev-pinned git dep. The path form only resolved on a dev laptop, so every
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smooai/smooth",
"version": "0.15.7",
"version": "0.15.8",
"description": "Security-first AI agent orchestration platform",
"homepage": "https://github.com/SmooAI/smooth#readme",
"bugs": {
Expand Down
Loading