feature/IO-3725-RPS-Changes - Add AI context files, fix auto start dev tools in local

This commit is contained in:
Dave
2026-05-28 16:22:54 -04:00
parent 5f860d26e3
commit c7ad369a76
15 changed files with 1236 additions and 3 deletions

15
.github/copilot-instructions.md vendored Normal file
View File

@@ -0,0 +1,15 @@
# Copilot Instructions for ImEX RPS
Read `AGENTS.md` first. It contains the current project architecture, safety rules, workflows, and migration context.
When proposing or generating code:
- Use npm scripts and current Vite/Electron workflows, not stale Create React App/yarn instructions.
- Keep changes narrow and preserve existing style.
- Do not edit generated `build/`, `dist/`, or `dist-electron/`.
- Do not suggest publish commands unless the user explicitly asks to publish.
- Prefer AntD v5 APIs and avoid deprecated props.
- Preserve Electron security defaults: `contextIsolation: true`, `nodeIntegration: false`, preload bridge for renderer IPC.
- Avoid circular Electron main-process imports; IPC modules should not import `mainWindow` from `main-src.js`.
- Use `.ai/` files for deeper domain and architecture context.