mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2026-08-16 04:39:15 +00:00
* ci: disable header-max-length commit rule Signed-off-by: Andy Lee <andy.lee@suse.com> * docs(agents): clarify agent guide and share it across AI assistants - Symlink CLAUDE.md and GEMINI.md to AGENTS.md so Claude Code, Copilot and Gemini read the same guidance - Use the full conventional-commit format with scope in the guide - Clarify Vue SFC block order and the feature-flag development steps - Bump the documented Node.js requirement to v24 Signed-off-by: Andy Lee <andy.lee@suse.com> --------- Signed-off-by: Andy Lee <andy.lee@suse.com>
832 B
832 B
Boundaries
- ✅ Always:
- Write to
.github,docs/,pkg/harvester,scripts/. - Make commits in a new branch (for a PR).
- Run
yarn lint:fixbefore commits.- Use conventional commit format:
<type>(<scope>): <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/, runyarn agents:generateto update rootAGENTS.md.
- Write to
- ⚠️ Ask first:
- Adding dependencies
- Upgrading dependencies
- 🚫 Never:
- Commit or log secrets,
.env,kubeconfigor any API keys. - Edit
node_modules/. - Commit directly to
main(use PRs). - Skip git hooks with
--no-verifyflag.
- Commit or log secrets,