How to share Agent Rule across Code Workspaces

I have a Code Workspace where I’m building React apps, and I’ve turned our company’s design standards into a Rule file that I can call from the Continue copilot. This has saved us significant time on design reviews and making sure whatever we build in the repo adheres to our design standards.

What is the best practice for sharing this design standard Rule across other Code Workspaces or repos so that my teammates can also leverage it for their development work?

Hey @100hamilton,

I believe the recommended practice for those rules and design knowledge files (for example .md docs) is to have them as an Artifact package (So a separate repo where you commit those files + maybe add a script for making those files discoverable by any tool you like, for example Continue or other open-source agents).
Later you and your teammates can install this package (containing the knowledge and rule files) and run the script and your agent should now be aware of those.

Hope it answers the question!