mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2026-05-14 15:01:44 +00:00
* feat: add AGENNTS.md * refactor: update based on copilot feedback * refactor: update AGENTS.md * refactor: update based on AI suggestion * refactor: based on comments * refactor: some files * refactor: boundaries.md --------- (cherry picked from commit 67bb6dfbd5d7f3632a138626ade5040188b76394) Signed-off-by: Andy Lee <andy.lee@suse.com> Co-authored-by: Andy Lee <andy.lee@suse.com>
24 lines
828 B
Markdown
24 lines
828 B
Markdown
## Boundaries
|
|
|
|
- ✅ **Always:**
|
|
- Write to `.github`, `docs/`, `pkg/harvester`, `scripts/`.
|
|
- Make commits in a new branch (for a PR).
|
|
- Run `yarn lint:fix` before commits.
|
|
- Use conventional commit format:
|
|
```
|
|
<type>:
|
|
|
|
<description>
|
|
```
|
|
- Follow existing naming conventions (PascalCase for components, camelCase for functions).
|
|
- After changing a Vue, JS, or TS file, make sure it's automatically formatted with ESLint.
|
|
- After updating files in `docs/agents.md/`, run `yarn agents:generate` to update root `AGENTS.md`.
|
|
- ⚠️ **Ask first:**
|
|
- Adding dependencies
|
|
- Upgrading dependencies
|
|
- 🚫 **Never:**
|
|
- Commit or log secrets, `.env`, `kubeconfig` or any API keys.
|
|
- Edit `node_modules/`.
|
|
- Commit directly to `main` (use PRs).
|
|
- Skip git hooks with `--no-verify` flag.
|