17 lines
637 B
Markdown
17 lines
637 B
Markdown
|
|
---
|
||
|
|
description: Verify the OpenProject connection and show the authenticated user.
|
||
|
|
allowed-tools: Bash(python3 *op.py*), Bash(python *op.py*), Bash(ls *)
|
||
|
|
---
|
||
|
|
|
||
|
|
Confirm connectivity and auth to the OpenProject server.
|
||
|
|
|
||
|
|
```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)
|
||
|
|
python3 "$OP" ping
|
||
|
|
# Windows: use `python` or `py -3` if `python3` is not on PATH.
|
||
|
|
```
|
||
|
|
|
||
|
|
If this prints an auth or connection error, see the Troubleshooting section of the
|
||
|
|
openproject SKILL.md (token in `config.json`, or `OPENPROJECT_API_KEY` / `OPENPROJECT_URL`).
|