e562b53cc3
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
19 lines
1.1 KiB
Markdown
19 lines
1.1 KiB
Markdown
# 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
|
|
```
|