feat: LLM-free CLI dispatcher + runtime custom-art loader - #128
Open
kitrakrev wants to merge 1 commit into
Open
Conversation
Move every typed /buddy command off the LLM. cli/buddy.ts mirrors each config/state MCP tool (show, pet, stats, list, rename, personality, achievements, xp, upgrades, mood, memory, summon, save, dismiss, skin, frequency, style/position/rarity/width/margin/rainbow, statusline, theme, mute/unmute) with identical state writes, output, and achievements. The slash command now shells out to it; only proactive react/suggest stay on the model. buddy_save's advertised overwrite is honored (MCP tool throws). Add server/custom-art.ts: an override layer that loads validated species JSON from <state-dir>/custom-art/ at runtime. It is keyed by name and never joins the RNG SPECIES pool, so existing buddies' deterministic rolls are untouched (adding to SPECIES re-rolls everyone — golden tests guard it). Ship fox as custom-art/fox.json for exactly this reason. Verified: tsc clean, 246 tests pass, all commands exercised live. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: karthikrajaanandan <karthikraja2k1@gmail.com>
kitrakrev
force-pushed
the
feat/llm-free-cli-dispatcher
branch
from
July 16, 2026 15:33
ae0d1a4 to
9005d72
Compare
Owner
|
Hey @kitrakrev — nice feature set (the LLM-free dispatcher + runtime custom-art loader are both wanted). The PR currently conflicts with 🤖 Created with the help of AI (Claude Fable 5). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Move every typed /buddy command off the LLM. cli/buddy.ts mirrors each config/state MCP tool (show, pet, stats, list, rename, personality, achievements, xp, upgrades, mood, memory, summon, save, dismiss, skin, frequency, style/position/rarity/width/margin/rainbow, statusline, theme, mute/unmute) with identical state writes, output, and achievements. The slash command now shells out to it; only proactive react/suggest stay on the model. buddy_save's advertised overwrite is honored (MCP tool throws).
Add server/custom-art.ts: an override layer that loads validated species JSON from /custom-art/ at runtime. It is keyed by name and never joins the RNG SPECIES pool, so existing buddies' deterministic rolls are untouched (adding to SPECIES re-rolls everyone — golden tests guard it). Ship fox as custom-art/fox.json for exactly this reason.
Verified: tsc clean, 246 tests pass, all commands exercised live.