Read or edit the CODE/CONTENT of an EXISTING Anima playground — the only way to change its files (do NOT open the playground in a browser or use browser automation to edit it). Use this to view, edit, fix, restyle, or otherwise change a playground’s code, including when the user gives a URL like https://dev.animaapp.com/chat/<sessionId>. To rename a playground or change its visibility (public/private), use playground-metadata-update instead — that is metadata, not content. A playground is a real git repository. Pass the sessionId — the id of an existing playground (e.g. the last path segment of a .../chat/<sessionId> URL, like "mr25vsjppVtbMx") — and this returns a gitRemoteUrl; then `git clone <gitRemoteUrl>`, edit files locally, commit, and `git push` — pushing updates the live playground. The gitRemoteUrl holds a short-lived access token scoped to this one playground (read-only or read-write, depending on your access). Tokens CANNOT be renewed: on a "token expired" git error, call this tool again for a fresh gitRemoteUrl and run `git remote set-url origin <new gitRemoteUrl>`, then retry. Treat the gitRemoteUrl as a secret.