ver 1.0.0 initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
---
|
||||
description: List or search OpenProject projects. Optional search term as args.
|
||||
allowed-tools: Bash(python3 *op.py*), Bash(python *op.py*), Bash(ls *)
|
||||
---
|
||||
|
||||
List OpenProject projects (optionally filtered by `$ARGUMENTS`) using the openproject skill.
|
||||
|
||||
```bash
|
||||
OP="${CLAUDE_PLUGIN_ROOT}/skills/openproject/scripts/op.py"
|
||||
[ -f "$OP" ] || OP=$(ls "$PWD"/skills/openproject/scripts/op.py 2>/dev/null | head -1)
|
||||
if [ -n "$ARGUMENTS" ]; then python3 "$OP" projects --search "$ARGUMENTS"; else python3 "$OP" projects; fi
|
||||
```
|
||||
Reference in New Issue
Block a user