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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ If your project isn't in a git repo, add `.mcp.json` manually to your project ro
| `create_extension` | Scaffold a full extension (COMP + DAT + wiring) |
| `get_op_errors` | Inspect errors on any operator and its children |

...and 37 more. See the [full tools reference](https://dylanroscover.github.io/Embody/envoy/tools-reference/).
...and 42 more. See the [full tools reference](https://dylanroscover.github.io/Embody/envoy/tools-reference/).

When Envoy starts, it generates a `CLAUDE.md` file in your project root with TD development patterns, the complete MCP tool reference, and project-specific guidance.

Expand Down
2 changes: 1 addition & 1 deletion dev/embody/unit_tests/test_git_status.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Pure-logic tests for EmbodyExt's git-uncommitted status helpers
(_parseGitPorcelain, _gitRelPath, _rowHasChanges). These drive the static
(_parseGitPorcelain, _mapChangedToOps, _rowHasChanges). These drive the static
methods directly with fixtures -- no git repo, no sandbox operators --
referencing the extension inline per the no-ext-caching rule.
"""
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ A second status axis in the manager -- **git-uncommitted** -- so every externali
- **Hardened via a 3-agent codex review (no regressions found).** The background scan now runs `git --no-optional-locks status --untracked-files=all` so it never contends for `.git/index.lock` with a concurrent `git add`/`commit` and so a newly externalized file inside a brand-new folder is enumerated (not collapsed to `?? dir/`). The async completion is **generation-guarded** with task-local result state, so a stale scan that fires after a re-arm can never clobber a newer one (or leak its in-flight flag). The hover/rollover state keeps the orange precedence for uncommitted saved rows, and the `tag` label is lowercase there too.
- **Tests:** new `test_git_status.py` covers the porcelain parser, the file-to-repo path mapping, and the `changed` predicate -- pure logic, no live TD.

### Also rolled up in this release (since v5.0.429)

- **AI-agent discovery surface at embody.tools.** Machine-readable entry points so AI coding assistants can adopt Embody without scraping marketing HTML: an `llms.txt` convention index plus a `llms-full.txt` full corpus, a `/for-ai` page with structured `for-ai.json` / `for-ai.txt` endpoints, and schema.org `SoftwareApplication` JSON-LD across the landing pages.
- **Em-dash mojibake fix + ASCII-punctuation rule.** Fixed a CP1252 round-trip corruption in shipped `execute.py` (two comments where a UTF-8 em-dash had been re-saved as mojibake), normalized generated/code/config files repo-wide to ASCII punctuation (BOMs preserved; hand-written docs prose exempt), and added a shipped `.claude/rules/ascii-punctuation.md` rule to keep it that way.

## v5.0.434

A new `diff_tdn` MCP tool for what's UNSAVED in a TDN network -- one COMP or the whole project -- plus a companion git diff driver that keeps committed `.tdn` diffs clean, a project-wide hard rule against caching extension references (with an enforcing test), and a fix for the recurring "TouchDesigner is not responding" error during saves.
Expand Down
2 changes: 1 addition & 1 deletion docs/testing.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Testing

Embody includes a comprehensive automated test suite with **60 test suites** and **1,449 test methods** covering core externalization, MCP tools, TDN format, the Envoy server/bridge, and palette catalogs. Tests run inside TouchDesigner using a custom test runner with sandbox isolation.
Embody includes a comprehensive automated test suite with **61 test suites** and **1,469 test methods** covering core externalization, MCP tools, TDN format, the Envoy server/bridge, and palette catalogs. Tests run inside TouchDesigner using a custom test runner with sandbox isolation.

## Running Tests

Expand Down