Skip to content
Open
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
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,28 @@ npx plugins add allenai/asta-plugins
npx skills add allenai/asta-plugins -g

# Claude Code marketplace (alternative to npx plugins)
# 1. Add this repo as a plugin marketplace. This step is required first —
# the plugins can't be installed until their marketplace is registered.
> /plugin marketplace add allenai/asta-plugins
> /plugin install asta-tools
> /plugin install asta-flows # optional, for multi-step workflows
> /plugin install asta-assistant # optional, for autonomous research
> /plugin install asta-dev # optional, for contributors

# 2. Install the plugins you want. The `@asta-plugins` suffix names the

@rodneykinney rodneykinney Jul 16, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gas2own Keep the original suggested commands. Just add a note that @asta-plugins can be appended if there is a naming collision (unlikely due to the asta- prefix on the plugin names)

# marketplace added above and is what Claude Code's auto-complete offers.
> /plugin install asta-tools@asta-plugins
> /plugin install asta-flows@asta-plugins # optional, for multi-step workflows
> /plugin install asta-assistant@asta-plugins # optional, for autonomous research
> /plugin install asta-dev@asta-plugins # optional, for contributors
```

To pull the latest version later, update the marketplace:

```commandline
> /plugin marketplace update asta-plugins
```

If your marketplace list is empty (for example, you previously removed
`asta-plugins`), `update` won't find it — re-add it first with
`/plugin marketplace add allenai/asta-plugins`, then re-run the installs above.

## Asta CLI

The skills install an `asta` CLI tool, which has sub-commands for the various research functions.
Expand Down
Loading