Add dioxus and project-uv plugins

Introduce two new plugins: dioxus and project-uv with metadata
READMEs and SKILL documentation and example skill files
Update marketplace.json to advertise both plugins
This commit is contained in:
2026-05-11 23:02:01 +02:00
parent 1b5a7638d7
commit e562b53cc3
8 changed files with 563 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# project-uv
Pilot skill for **context-aware project tooling detection**: when a Python project uses [uv](https://docs.astral.sh/uv/), the agent should discover *how* uv is wired up here (sync model, lockfile presence, script declarations, project layout) before running anything, rather than guessing.
## Skills
- **project-uv** — Activates for Python work in repos containing `pyproject.toml`. Tells the agent to probe the project layout via `scripts/probe.py` before suggesting `uv run` / `uv sync` invocations.
## The bigger idea
This plugin is also a **pilot for granular activation via flag files**. The long-term plan: a skill activates not just from its description, but from the presence (or absence) of marker files in the repo — `Justfile`, `pyproject.toml`, `uv.lock`, custom flags like `.reliquary/run-uv-with-just`, etc. Combined skills like `run_uv_with_just` would light up only when both signals are present. See `docs/workpad/research/` in the reliquary repo for the open question on glob negation support.
## Install
```
/plugin marketplace add git@git.g4b.org:dirigence/reliquary.git
/plugin install project-uv@reliquary
```