Initial implementation of pluginctl CLI tool

- Add comprehensive info command with plugin manifest parsing -
Implement global --plugin-path flag and PLUGINCTL_PLUGIN_PATH env var -
Add full test suite with fixtures for various plugin configurations -
Set up build system with Makefile, goreleaser, and golangci-lint -
Include development tools with pinned versions for reproducible builds

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Felipe M 2025-07-07 13:01:26 +02:00
commit fd6e4a4513
No known key found for this signature in database
GPG key ID: 52E5D65FCF99808A
21 changed files with 4949 additions and 0 deletions

9
testdata/webapp_only_plugin.json vendored Normal file
View file

@ -0,0 +1,9 @@
{
"id": "com.example.webapponly",
"name": "Webapp Only Plugin",
"description": "A plugin with only client-side code",
"version": "0.9.0",
"webapp": {
"bundle_path": "webapp/dist/bundle.js"
}
}