LATESTv0.15.11Jul 30, 2026
Download@-picker now includes agent-authored artifacts, and pasted chunks respect the server body cap
- · The composer's @-picker was missing an entire group of documents. The DOCS panel on the left shows three (context, ARTIFACTS 'made by Codron', REFERENCES 'from you'), but the picker only pulled from context and references, so every design-direction.md, monetization-notes.md, or model-and-architecture-notes.md the agent produced for you was silently invisible when you tried to invoke it from the next order. Artifacts live on disk under .codron/artifacts/ and are never classified into the documents table, which is why the picker never saw them. The desktop bridge now merges listArtifacts alongside listReferences, tags them kind:'artifact', and orders the picker as context, then artifacts, then references, matching the left panel so the mental scan lines up. Applies to both the pending-orders composer and the per-project session composer.
- · Pasting a long chunk (a PDF spec, a terminal capture, a Word extract) into the /projects composer sometimes threw an opaque 'Server Components render' error and dropped the engage. The textarea's maxLength attribute caps typed input at 8000 characters, but the onPaste path collects pastedChunks separately and bypassed that check, so the server-side length gate was the first thing that saw an oversize body; in production Next.js masks the actual message and only surfaces a digest, leaving no way to diagnose the failure. The composer now computes composed length client-side, disables submit when you cross the cap, and shows the exact count vs cap so you know how much to trim before sending. Complements the NUL-byte guard shipped in 0.15.10.