-
Notifications
You must be signed in to change notification settings - Fork 669
Description
Question
I’m developing an opencli TS plugin locally and tried to install it with a local absolute path for easier iteration.
opencli plugin install /Users/pi-dal/Developer/opencli-plugin-sysuOn my machine (opencli 1.4.1), it still fails with:
Error: Invalid plugin source: \"/Users/pi-dal/Developer/opencli-plugin-sysu\"
Supported formats:
github:user/repo
https://github.com/user/repo
Why I’m asking
I noticed PR #491 mentions support for:
opencli plugin install file:///path/to/my-pluginopencli plugin install /path/to/my-plugin
So I’m not sure whether the current behavior is:
- an intentional design decision in released versions,
- a feature that exists on
mainbut has not been released yet, - or whether there is another required workflow for local plugin development.
Use case
For plugin development, local path install is very helpful because it allows a much tighter edit/test loop than publishing to GitHub or pushing every change first.
A local development workflow like this would be ideal:
opencli plugin install /path/to/pluginor
opencli plugin install file:///path/to/pluginQuestion for maintainers
Is the lack of local plugin install support in the current release a deliberate requirement, or would you be open to officially supporting local path install specifically to make plugin development easier?
If this is already supported on main but not yet released, knowing the expected version / timeline would also help.
Thanks.