Load coding context from DevVault
devvault_contextRetrieve your saved coding conventions and related reference material before writing code. Pass a short task description to get relevant rules, or name a collection to override inference.
Instructions
Call this BEFORE writing any code. Returns the user's own rules and conventions for the area you are working in, plus a list of deeper reference material you can pull in on demand. Pass task: one short sentence describing what you are building (e.g. 'build a Node.js REST API for user auth'). Do NOT paste the user's full prompt — a long query retrieves badly. If the user named a collection with @, pass it as collection instead; an explicit name always wins over inference. Call this again whenever the work shifts to a different area (frontend → backend, say). If it returns nothing, the user has no context saved for this area: say so rather than inventing conventions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | No | One sentence: what you are building. | |
| collection | No | A collection name the user named explicitly, with or without '@'. |