SYSTEM Cited by 1 source
continue.dev¶
Definition¶
continue.dev is an open-source IDE-integrated coding-assistant platform (VS Code + JetBrains plugins) that lets developers attach source files, selections, and custom context providers to LLM prompts from inside the editor. The wiki's canonical anchor is its use at Zalando as the prompt-authoring surface for the Partner Tech component-library migration toolkit — it automated the otherwise-manual step of copy-pasting component source files into prompt scaffolds.
Wiki anchor¶
From sources/2025-02-19-zalando-llm-powered-migration-of-ui-component-libraries:
"We utilized continue.dev to streamline this process, making the workflow of attaching source codes and generating prompt context more efficient."
Zalando used it during the hackathon-phase iterations and kept it for the production toolkit authoring flow. The article names it explicitly as one of the "lessons learned" — "It is important to evaluate available LLM tools before embarking on similar migration projects. Our initial approach of manually copying and pasting source code into LLM prompts proved time-consuming and error-prone. The adoption of continue.dev improved our workflow by automating source code handling."
Role vs alternatives¶
- vs Cursor / Claude Code / GitHub Copilot chat:
continue.dev is BYO-model and open-source; the
others are proprietary model + agent harnesses. Zalando
picked it for the prompt-context-attachment workflow,
not the agent loop — they wrote their own Python
transformation tool on top of the
llmlibrary for the batch runs. continue.dev was the authoring surface for composing and testing the prompt, not the runtime. - vs raw OpenAI Playground: context-attachment from the filesystem, slash-commands, and persistent customisations make it a better prompt-development environment than the web playground for projects that need to attach many source files repeatedly.
Seen in¶
- sources/2025-02-19-zalando-llm-powered-migration-of-ui-component-libraries — canonical and only wiki source. Used by Zalando Partner Tech (September 2024) to author the prompts that drove the LLM-powered UI-library migration across 15 B2B apps.
Related¶
- systems/zalando-component-migration-toolkit — the production tool whose prompts were authored via continue.dev
- systems/gpt-4o — the backend Zalando pointed continue.dev at during prompt development
- concepts/prompt-interface-mapping-examples-composition — the prompt shape the team iteratively developed using continue.dev's context-attachment features
- companies/zalando