Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions plugins/asta-preview/skills/asta-documents/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,17 @@ asta documents add "file://${REPORT_PATH}" \

## Installation

If `asta` command is not available install it using `uv tool install git+https://github.com/allenai/asta-plugins.git`
This skill requires the `asta` CLI:

**Prerequisites:** Python 3.11+ and [uv package manager](https://docs.astral.sh/uv/)
```bash
# Install/reinstall at the correct version
PLUGIN_VERSION=0.11.0
if [ "$(asta --version 2>/dev/null | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" != "$PLUGIN_VERSION" ]; then
uv tool install --force git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION
fi
```

Verify installation with `asta documents --help`
**Prerequisites:** Python 3.11+ and [uv package manager](https://docs.astral.sh/uv/)

## Quick Command Reference

Expand Down
12 changes: 9 additions & 3 deletions plugins/asta/skills/asta-documents/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,17 @@ asta documents add "file://${REPORT_PATH}" \

## Installation

If `asta` command is not available install it using `uv tool install git+https://github.com/allenai/asta-plugins.git`
This skill requires the `asta` CLI:

**Prerequisites:** Python 3.11+ and [uv package manager](https://docs.astral.sh/uv/)
```bash
# Install/reinstall at the correct version
PLUGIN_VERSION=0.11.0
if [ "$(asta --version 2>/dev/null | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" != "$PLUGIN_VERSION" ]; then
uv tool install --force git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION
fi
```

Verify installation with `asta documents --help`
**Prerequisites:** Python 3.11+ and [uv package manager](https://docs.astral.sh/uv/)

## Quick Command Reference

Expand Down
Loading