SlopScore
00 crowd

atelier

Offline, headless pixel-art editor for creating, inspecting, and exporting layered animations through a CLI or MCP. Entirely AI-generated.
Open repo on GitHubgithub.com/marmikshah/atelier
Rust · ★ 7 · 0 forks · MIT · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)game
listed 1 hour ago by marmikshah · last checked 1 hour ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-14: Offline, headless pixel-art editor for creating, inspecting, and exporting layered animations through a CLI or; its own README says "Entirely AI-generated". 7 stars; MIT license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as marmikshah. There's no account to make: SlopScore only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
Offline, headless pixel-art editor for creating, inspecting, and exporting layered animations through a CLI or MCP. Entirely AI-generated.
topics
fable5game-developmentgpt-5gpt-6-astrakimi-k3pixel-art
created
2026-06-07 · pushed 1 week ago · 307 commits · 1 contributor
languages
Rust 99%Shell 1%Python 0%Dockerfile 0%Makefile 0%
paperwork
code of conductcode of conduct filecontributingpull request templatelicensereadme 100% health
dependencies
no dependency graph (no manifest, or disabled) · OSV.dev, checked 1 hour ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
game
ai_generated
mostly
human_touch
light
status
works-on-my-machine
language (detected)
dockerfilemakefilepythonrustshell
topic (detected)
fable5game-developmentgpt-5gpt-6-astrakimi-k3pixel-art
license (detected)
mit

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: Offline, headless pixel-art editor for creating, inspecting, and exporting layered animations through a CLI or; its own README says "Entirely AI-generated". It carries the MIT license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README — the repo's own words, folded up so the grading fits on one screen

atelier

Offline, headless pixel-art editing through a CLI and Model Context Protocol server.

CI MIT license

Example animated pixel-art scene created with Atelier

Atelier stores layered, animated documents locally and gives shell automation and MCP clients the same 25-tool editing surface. Drawing and region operations, palette constraints, visual analysis, checkpoints, replayable journals, and spritesheet, GIF, and APNG export. No account, API key, outbound service, or graphical environment.

It is also an experiment — see below.


Build it

There are no releases yet — no published binaries, archives, or container images. Clone the repository and build it:

git clone https://github.com/marmikshah/atelier.git
cd atelier
cargo install --locked --path crates/atelier

That puts atelier on your PATH. make release builds target/release/atelier in place instead.

Linux x86_64 and aarch64 are the supported targets, and the daemon needs systemd --user. macOS builds and passes the test suite, but has no daemon. Windows does not build: the document store's atomicity and the daemon both depend on Linux. The container is the route on Windows, and a convenient one on macOS.

Releases will come back when the editor has earned them. Until then, pull and build — the gate is make check.

The first thirty seconds

atelier call doc_new '{"name":"cat","width":32,"height":32}'
# {"doc_id":"550e8400-e29b-41d4-a716-446655440000", ...} — use the returned id
atelier call doc_draw '{"doc_id":"550e8400-…","layer":0,"frame":0,"op":"fill_cel","color":[224,160,80]}'
atelier call doc_look '{"doc_id":"550e8400-…","out_path":"/tmp/cat.png"}'

That's the whole setup. No server, no daemon, no registration.

doc_newpaintdoc_lookfixdoc_export

What it does

Area Included functionality
Document model Layers, frames, animation tags, locked palettes, explicit checkpoints, persisted revisions
Editing Pixel primitives, region operations, effects, grids, palette generation and snapping
Inspection Rendered previews, region dumps, silhouettes, component analysis, frame diffs, seam reports, animation audits, critique
Output Spritesheets with JSON metadata, GIF, APNG, PNG previews
Reproducibility Versioned per-document JSONL journals, atomic deterministic replay
Recovery Bounded checkpoints, deterministic portable document archives
Deployment Ubuntu binary, static Alpine container, CLI, stdio MCP, authenticated HTTP MCP

How it works

Nothing is implicit. doc_new returns a UUID, and every later call carries it. Layer and frame targets are explicit too. There is no active document, no inferred name, no transport default.

One dispatch path. CLI, replay, stdio, and HTTP execute the same payload and log the same line. Anything you can do in a shell, an agent can do over MCP.

Art rebuilds itself. Every document journals the deterministic calls that made it, so atelier replay <id> reproduces the same pixels anywhere. Nothing to enable.

Agents can see. doc_look returns rendered pixels, and the analysis tools return structured critique — so the loop is draw, look, fix, rather than draw and hope.

Run it as an MCP server

For clients that only speak MCP, the same binary is the server:

atelier install          # shared background daemon on 127.0.0.1:8765/mcp

Or configure a stdio server whose command is simply atelier. Authentication, Docker, remote access, and troubleshooting are in docs/mcp.md.

Documentation

A personal note

Atelier began as one question: can agents, using only tool calls, make art that's genuinely good enough to ship in a game?

100% of this code was written by AI. Not assisted — written. Opus did the heavy lifting early on, with GPT 5.6 Sol and Fable 5 carrying the newer work, and the code has been through several rounds of AI review and revision. I have not written a single line. My part was direction: holding the project to the same standards I use where I do still write the code.

It's an ongoing experiment, and I'll keep running it against other model families to see how each one holds a brush.

If atelier helps you — as a tool, a reference, or a kick-start on your own game — that makes me genuinely happy. The tokens are already spent; the least they can do is be useful to you too.

Warning

No human has reviewed this code, line by line — not any of it. Tests, static analysis, and locked dependencies all pass, and none of that is the same as a person having read it. Assume bugs and security issues I haven't caught, and breaking changes at any commit. Review the code and isolate important data before using Atelier in a production workflow.

Note

There are no releases, and master is the version. No binaries, no archives, no container images, no tags — building from a clone is the only way to run Atelier, which suits a project with one user and maybe two. Releases arrive when the editor has earned them.

Contributing

Thank you for wanting to — it means something that you got this far into the project. Atelier is closed to outside pull requests, though, for the reason above: your change would land in a codebase nobody has read closely enough to review it against, me included. CONTRIBUTING.md has the longer version.

Bug reports and questions are very welcome as issues. Vulnerabilities go through SECURITY.md, privately. And it's MIT licensed — fork it and take it wherever you like, no permission needed.

License

MIT © Marmik Shah

Read the rest on GitHub

Scan report · 2026-09-14
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review

0 comments

log in to comment.

report this listinglog in to report