- Introduced coding standards for TypeScript and React in SKILL.md. - Added continuous learning skill with configuration and evaluation scripts. - Created detail layout guidelines for read-only pages. - Established form layout rules for data-entry forms. - Documented project guidelines for the frontend monorepo. - Implemented security review checklist for frontend/Electron applications. - Developed a verification loop skill for comprehensive session checks. This commit enhances the skill set available for developers, ensuring adherence to best practices and improving code quality.
35 lines
740 B
JSON
35 lines
740 B
JSON
{
|
|
"version": 1,
|
|
"hooks": {
|
|
"sessionStart": [
|
|
{
|
|
"command": "node .cursor/scripts/hooks/session-start.js"
|
|
}
|
|
],
|
|
"sessionEnd": [
|
|
{
|
|
"command": "node .cursor/scripts/hooks/session-end.js"
|
|
},
|
|
{
|
|
"command": "node .cursor/scripts/hooks/evaluate-session.js"
|
|
}
|
|
],
|
|
"preCompact": [
|
|
{
|
|
"command": "node .cursor/scripts/hooks/pre-compact.js"
|
|
}
|
|
],
|
|
"afterFileEdit": [
|
|
{
|
|
"command": "node .cursor/scripts/hooks/suggest-compact.js"
|
|
}
|
|
],
|
|
"beforeShellExecution": [
|
|
{
|
|
"command": ".cursor/hooks/before-shell.sh",
|
|
"matcher": "npm run dev|pnpm( run)? dev|yarn dev|bun run dev|git push"
|
|
}
|
|
]
|
|
}
|
|
}
|