{"id":51687880,"url":"https://github.com/flarebyte/chatty-ratatoskr","last_synced_at":"2026-07-15T22:35:40.785Z","repository":{"id":316630808,"uuid":"1064215701","full_name":"flarebyte/chatty-ratatoskr","owner":"flarebyte","description":"A websocket tree messenger CLI in Dart","archived":false,"fork":false,"pushed_at":"2026-04-02T20:38:38.000Z","size":647,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-02T21:35:42.379Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flarebyte.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-25T17:53:05.000Z","updated_at":"2026-04-01T19:33:42.000Z","dependencies_parsed_at":"2025-10-03T13:01:09.595Z","dependency_job_id":null,"html_url":"https://github.com/flarebyte/chatty-ratatoskr","commit_stats":null,"previous_names":["flarebyte/chatty_ratatoskr","flarebyte/chatty-ratatoskr"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/flarebyte/chatty-ratatoskr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fchatty-ratatoskr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fchatty-ratatoskr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fchatty-ratatoskr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fchatty-ratatoskr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flarebyte","download_url":"https://codeload.github.com/flarebyte/chatty-ratatoskr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flarebyte%2Fchatty-ratatoskr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35523587,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-15T02:00:06.706Z","response_time":131,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-07-15T22:35:39.925Z","updated_at":"2026-07-15T22:35:40.777Z","avatar_url":"https://github.com/flarebyte.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# chatty-ratatoskr\n\n`chatty-ratatoskr` provides the `chatty` CLI, a lightweight Yggdrasil mock server for local development and CI.\n\n![Ratatoskr climbing Yggdrasil's mighty trunk](./chatty-ratatoskr-hero.png)\n\n## What `chatty` Does\n\n`chatty` starts an in-memory mock server that exposes HTTP endpoints for:\n\n- snapshot bootstrap\n- targeted node reads and writes\n- create operations with server-generated ids\n- optional WebSocket events\n- optional mock-only admin commands\n\nThe server is intended for client integration work and automated tests, not production persistence.\n\n## Install\n\nInstall `chatty` with Homebrew:\n\n```bash\nbrew install flarebyte/tap/chatty-ratatoskr\n```\n\nThen check the CLI:\n\n```bash\nchatty --help\n```\n\nFor source builds and maintainer workflow commands, see [CONTRIBUTING.md](/Users/olivier/Documents/github/chatty-ratatoskr/CONTRIBUTING.md).\n\n## CLI Basics\n\nShow help:\n\n```bash\nchatty help\nchatty --help\n```\n\nShow version:\n\n```bash\nchatty version\nchatty --version\n```\n\nStart the server on the default loopback address:\n\n```bash\nchatty serve\n```\n\nStart the server on a chosen address:\n\n```bash\nchatty serve --listen 127.0.0.1:19080\n```\n\nStart the server from config:\n\n```bash\nchatty serve --config testdata/config/basic.cue\n```\n\nSee the config reference for the currently supported `--config` fields:\n\n- [doc/configuration.md](/Users/olivier/Documents/github/chatty-ratatoskr/doc/configuration.md)\n\n## Current Behavior\n\nThe current CLI supports:\n\n- `help` and `version`\n- `serve`\n- `PUT` and `GET /snapshot`\n- `PUT` and `GET /node`\n- `POST /create`\n- WebSocket `/events` when enabled by config\n- admin `PUT /admin/commands` and `GET /admin/commands` when admin is enabled\n\nAdmin and WebSocket behavior are intentionally optional and controlled by config.\n\n## Quick Reference\n\nFor a shorter command reference, see [CHEATSHEET.md](/Users/olivier/Documents/github/chatty-ratatoskr/CHEATSHEET.md).\n\n## More Information\n\n- design spec: [doc/design/yggdrasil-mock-server.md](/Users/olivier/Documents/github/chatty-ratatoskr/doc/design/yggdrasil-mock-server.md)\n- config reference: [doc/configuration.md](/Users/olivier/Documents/github/chatty-ratatoskr/doc/configuration.md)\n- quick command reference: [CHEATSHEET.md](/Users/olivier/Documents/github/chatty-ratatoskr/CHEATSHEET.md)\n- maintainer workflow and repo commands: [CONTRIBUTING.md](/Users/olivier/Documents/github/chatty-ratatoskr/CONTRIBUTING.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflarebyte%2Fchatty-ratatoskr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflarebyte%2Fchatty-ratatoskr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflarebyte%2Fchatty-ratatoskr/lists"}