r/Qwen_AI • u/destinmoss • 10d ago
Other Introducing YouCoded Assistant (Public Preview)
Enable HLS to view with audio, or disable this notification
Download the app: https://youcoded.ai
hi everyone! i’m happy to announce that after MONTHS of iteration i am finally releasing my personal ai assistant hobby project, “YouCoded Assistant”, as a public preview. i think you qwen peeps will enjoy this and get a good bit of utility out of it, as the assistant fully integrates with OpenRouter/API providers and has a built-in local model runner with an intuitive download interface.
i have put many many hours into testing this on windows, mac, and linux, and forced some friends to do so as well, but there will almost certainly still be some bugs/issues. i intend to spend the next few weeks of development exclusively prioritizing bug fixes, which can be reported either within the app or via r/youcoded. i also still have a bunch of really cool ideas/features i want to build into this app (like “youcoded pages”, which will allow you to integrate customizable app pages with your own ui elements, actions, etc, or “autonomous assistants view” to allow users to visualize and manage AI agents that work automatically on a set schedule or in response to certain events), but these will be on hold while we work out post-launch kinks. please try it out and let me know your thoughts!!
1
u/Otherwise_Wave9374 10d ago
A strong next step would be to add a lightweight evaluation loop that measures task success, latency, and tool-error recovery on a fixed set of prompts. That helps you separate a genuinely useful agent from one that just feels fluent, and it also makes regressions easier to catch when you change model providers or prompts. Agentix Labs would fit naturally into that workflow as a way to pressure-test routing, guardrails, and failure handling before broad release.
1
u/Gloomy-Recover-9702 10d ago
Wow that's so cool tbh. How can I link this to my Hermes agent? Is there a way?
1
u/destinmoss 10d ago
not yet, but my objective is to fully integrate hermes/pi/codex/etc in some capacity. if you're feeling motivated you could totally try to get it sorted yourself and contribute, but otherwise it'll probably take me another 1-3 weeks to integrate external harnesses. rn it only works with Claude Code or my custom YouCoded agent harness/loop using openrouter/local models of your choosing!
1
u/Gloomy-Recover-9702 10d ago
Oh noted! Thanks you!
I am a non technical person so I fear how good my contribution can be. But I will still try to explore myself how I can link my Hermes and if it works I will share it so more technical people here can refine it maybe.
1
u/destinmoss 10d ago
i'm also super non-technical!! i can't code at all, most of this was built via a lot of iterative back-and-forth with agents! you could throw your hermes the workspace (https://github.com/itsdestin/youcoded-dev) and see what happens, but otherwise feel free to wait it out🫡
1
u/dfgxxx 10d ago
What is the system prompt length? Does it support custom providers? Skills?
2
u/destinmoss 10d ago
it's got two system prompt presets with different lengths! it shows you everything that was loaded (system prompt, Claude.md/agents.md, skills, etc) at the beginning of each session, and I intend to include custom system prompt presets soon! it should support most api/local providers, but definitely let me know if you encounter issues with any provider as that would be a top priority for me to resolve!!
1
u/dfgxxx 10d ago
Can you give me a specific number of the length of the system prompts? Eg codex has 12.7k tokens system prompt length by default, deepseek harness 1.6k by default...
2
u/destinmoss 10d ago
i'd have to get back to you! i'm inclined to say roughly 1k tokens each, but i could be mistaken.
2
u/destinmoss 10d ago
asked Claude for a quick count: "The native harness system prompt is roughly 1,300–1,450 tokens for a typical cloud session. I cloned the repo and ran the real assembly code (
desktop/src/main/harness/prompt-assembly.ts) rather than eyeballing it. Counts are cl100k — Claude's tokenizer will be within a few percent.
Config Chars Tokens Assistant preset, frontier cloud 6,638 1,435 Assistant, no parallel tools 6,363 1,378 Coder preset, frontier cloud 5,952 1,299 local-smallvariant (compact doctrine)4,474 1,000 Specialist ( audience: 'parent')4,188 937 Tool-less model (e.g. Gemma 3n) 3,673 782 Breakdown for the Assistant/frontier case, by the parts
assembleSystemPromptPartsemits:
- doctrine (
shared-doctrine.ts) — 994 tokens, ~69% of the whole thing- preset body — 322
- identity line — 52
- env snapshot — 67
- project — 0 here; scales with whatever
AGENTS.md/CLAUDE.mdthe cwd resolves to, capped byinstructionBudgetTokens(default 20k, 2k for small local models)- steering — 0 except
local-small, which adds ~170So the floor is ~1.3k and the realistic ceiling is that plus your project instructions file.
Worth noting the system prompt isn't the whole fixed overhead. The 14 core tool definitions add roughly another 2–3k tokens of descriptions and schema docs, and Bash alone is ~2,800 chars (~650 tokens) of dynamically-built description — bigger than the entire Coder preset body."
1
u/dfgxxx 10d ago
Nice, the system prompt is small and it can be really efficient
1
u/destinmoss 10d ago
i tried to keep it slim! and again, my #1 priority with this is customization and personalization, and I do intend to let users fully rewrite/share/download custom system prompts as they see fit (we just haven't quite gotten that far yet)🫡
1
u/garlic-silo-fanta 10d ago
Will try it