- Add author, homepage, repository to all plugin manifests - Add license field where missing - Add commands and agents directory references - Update keywords for better discoverability Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
870 B
JSON
33 lines
870 B
JSON
{
|
|
"name": "project-hygiene",
|
|
"version": "0.1.0",
|
|
"description": "Post-task cleanup hook that removes temp files, warns about unexpected root files, and manages orphaned supporting files",
|
|
"author": {
|
|
"name": "Leo Miranda",
|
|
"email": "leobmiranda@gmail.com"
|
|
},
|
|
"homepage": "https://gitea.hotserv.cloud/personal-projects/support-claude-mktplace/src/branch/main/plugins/project-hygiene/README.md",
|
|
"repository": "https://gitea.hotserv.cloud/personal-projects/support-claude-mktplace.git",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"cleanup",
|
|
"hygiene",
|
|
"automation",
|
|
"hooks",
|
|
"maintenance"
|
|
],
|
|
"hooks": {
|
|
"PostToolUse": [
|
|
{
|
|
"matcher": "Write|Edit",
|
|
"hooks": [
|
|
{
|
|
"type": "command",
|
|
"command": "${CLAUDE_PLUGIN_ROOT}/hooks/cleanup.sh"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|