- Replace SessionStart command hook with plugin.json's native sessionStart.skill field (like Superpowers' using-superpowers pattern) - engineering-principles skill auto-loads at every session start - Remove hooks/session-start, hooks/run-hook.cmd scripts - Remove obsolete setup-hooks.sh (references deleted scripts) - Empty hooks.json — hooks not needed, skill auto-load handles it
15 lines
493 B
JSON
15 lines
493 B
JSON
{
|
|
"name": "code-guide",
|
|
"version": "0.3.0",
|
|
"description": "Comprehensive programming best-practice guide for all situations — monorepo, standalone, all languages and frameworks",
|
|
"author": {
|
|
"name": "Asep Haryana Saputra",
|
|
"email": "asepharyana@users.noreply.github.com"
|
|
},
|
|
"keywords": ["best-practice", "clean-code", "engineering-guide", "programming-standards", "architecture"],
|
|
"skills": "./skills/",
|
|
"sessionStart": {
|
|
"skill": "engineering-principles"
|
|
}
|
|
}
|