This commit introduces a new /core:clean command to clean up generated files, caches, and build artifacts. The command provides the following options: - /core:clean: Cleans all caches and build artifacts. - /core:clean --cache: Cleans caches only. - /core:clean --deps: Performs a dry-run for dependency cleanup. - /core:clean --deps --force: Deletes dependency directories after a confirmation prompt. - /core:clean --dry-run: Shows what would be deleted without performing any actions. The implementation includes safety features such as a "dry-run by default" for dependency cleaning and a confirmation prompt for destructive operations.
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "core-agent",
|
|
"description": "Host UK Claude Code plugin collection",
|
|
"owner": {
|
|
"name": "Host UK",
|
|
"email": "hello@host.uk.com"
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "core",
|
|
"source": "./claude/core",
|
|
"description": "Core commands for project maintenance.",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "code",
|
|
"source": "./claude/code",
|
|
"description": "Core development plugin - hooks, formatting, autonomous workflows",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "collect",
|
|
"source": "./claude/collect",
|
|
"description": "Data collection via Borg CLI - /collect:github, /collect:website, /collect:excavate, /collect:papers",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "review",
|
|
"source": "./claude/review",
|
|
"description": "Code review automation - PR review, security checks",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "verify",
|
|
"source": "./claude/verify",
|
|
"description": "Work verification - ensure tests pass, no debug statements",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "qa",
|
|
"source": "./claude/qa",
|
|
"description": "Quality assurance - iterative fix loops, lint enforcement",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "ci",
|
|
"source": "./claude/ci",
|
|
"description": "CI integration - GitHub Actions, test automation",
|
|
"version": "0.1.0"
|
|
},
|
|
{
|
|
"name": "issue",
|
|
"source": "./claude/issue",
|
|
"description": "Integration with GitHub Issues",
|
|
"version": "0.1.0"
|
|
}
|
|
]
|
|
}
|