What taste-1 actually is — reading the command-code 1.58.0 npm bundle A developer's teardown of the command-code CLI npm package version 1.58.0 shows that its advertised "taste-1" meta neuro-symbolic AI model is not a trained model at all: the tool shells out to git to collect up to 200 commits' worth of before/after diff pairs, compiles them into a markdown prompt, sends that as a single user message to the same /alpha/generate endpoint used by ordinary requests, and writes the model's markdown output to .commandcode/taste/taste.md, which is then pasted back into the system prompt on later turns. The analysis found no embeddings and no weight updates, contradicting the vendor's documentation claim of a continuously learning RL-powered model. Full teardown, including every system prompt, the three sources taste feeds on, the tool catalogue, the wire protocol and the telemetry: https://gist.github.com/safzanpirani/26170636512c0b50494d6a70acfece8d https://gist.github.com/safzanpirani/26170636512c0b50494d6a70acfece8d Web version: https://cmd.safzan.dev https://cmd.safzan.dev Notes from reading the command-code npm package Command Code CLI , version 1.58.0 , 2026-09-19. Everything below is from the shipped bundle; line numbers are for dist/cli.mjs run through npx prettier --parser babel 115,067 lines . Reproduce with: npm i -g command-code@1.58.0 npx prettier --parser babel \ "$ npm root -g /command-code/dist/cli.mjs" cli.pretty.mjs No unpacking needed — it is a plain minified ESM bundle, and esbuild's --keep-names is on, so every function is wrapped in name fn, "originalName" and the original identifiers survive. From https://commandcode.ai/docs/taste https://commandcode.ai/docs/taste , and repeated verbatim in the CLI's own help text :64741 and FAQ :9371 . Archived copies, in case the page changes — the claim is present in every Wayback snapshot of this page from 2025-12-09 onward, so it is a long-standing position rather than a recent edit: - 2026-09-07 https://web.archive.org/web/20260907191124/https://commandcode.ai/docs/taste most recent capture - 2026-03-13 https://web.archive.org/web/20260313174739/https://commandcode.ai/docs/taste - 2025-12-09 https://web.archive.org/web/20251209084020/https://commandcode.ai/docs/taste earliest capture The text: "Taste is powered by our meta neuro-symbolic AI model taste-1 with continuous reinforcement learning RL . We combine reasoning with neural intuition to create an invisible architecture of your choices, structures, patterns and tooling preferences." The docs page bullets: - " Continuously learning side learns the texture of your code explicit & implicit feedback ." - " Meta Neuro-Symbolic AI model taste-1 enforces the invisible logic of your choices." - " Reflective Context Engineering of a self-aware RL feedback loop to build skills." It also embeds an architecture diagram at /docs/mns.png whose alt text is meta neuro-symbolic ai model taste-1 . runTasteLearningAgent :55352 and compileTasteContext :55686 : 1. Shell out to git. collectCommits + getSubstitutions run git show --format= -U3 --diff-algorithm=histogram -b --ignore-blank-lines -M