From f7e1b9693094f7bacc7acd18cb45c38a6bf70ab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabor=20K=C3=B6rber?= Date: Tue, 19 May 2026 19:56:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Update=20README=20with=20emojis?= =?UTF-8?q?=20and=20new=20plugins?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6cc593c..819509e 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,19 @@ -# reliquary +# 🏺 reliquary A marketplace for personal agent tooling — skills, plugins, prompts, configs — for [Claude Code](https://docs.claude.com/en/docs/claude-code) and, over time, other coding agents. -The repo doubles as a **Claude Code marketplace** (`.claude-plugin/marketplace.json`) and a plain git tree you can cherry-pick from. It is intended to grow additional, themed plugins alongside the current one, and to host non-Claude formats (AGENTS.md bundles, MCP servers, Codex/Gemini/OpenCode skills) in parallel. +The repo doubles as a **Claude Code marketplace** (`.claude-plugin/marketplace.json`) and a plain git tree you can cherry-pick from. It is built to grow themed plugins and to host non-Claude formats (AGENTS.md bundles, MCP servers, Codex/Gemini/OpenCode skills) in parallel. -## Plugins +## 🧩 Plugins | Plugin | Description | |---|---| -| [`g4b_ai`](./plugins/g4b_ai) | Core personal Claude Code skills — workpad, research-tree, implementation-orchestration, markdown-embedded-svg | +| 🧠 [`g4b_ai`](./plugins/g4b_ai) | Core personal Claude Code skills — workpad, research-tree, implementation-orchestration, markdown-embedded-svg | +| 🐸 [`gitea`](./plugins/gitea) | Gitea issue tracker integration — fetch, create, close, and comment on tickets via self-contained `uv run` scripts | +| 🦀 [`dioxus`](./plugins/dioxus) | Per-version API reference skills for the Dioxus Rust UI library (currently 0.7+) | +| 📦 [`project-uv`](./plugins/project-uv) | Context-aware uv project detection — probes layout before suggesting `uv run` / `uv sync` | -More plugins will land in `plugins/` as they're carved out. - -## Install as a Claude Code marketplace +## 🚀 Install as a Claude Code marketplace ``` /plugin marketplace add git@git.g4b.org:dirigence/reliquary.git @@ -46,7 +47,7 @@ From a local clone: Each plugin's own README documents its skills and any per-plugin install paths. -## Grab pieces independently +## ✂️ Grab pieces independently A skill is just a folder containing `SKILL.md`. You don't need the plugin or marketplace machinery to use one: @@ -62,17 +63,20 @@ Symlink instead of copy if you want to follow upstream: ln -s /tmp/reliquary/plugins/g4b_ai/skills/workpad ~/.claude/skills/workpad ``` -## Layout +## 🗂️ Layout ``` reliquary/ ├── .claude-plugin/ │ └── marketplace.json # the marketplace listing ├── plugins/ -│ └── ... # e.g. g4b_ai's workpad: notes, research, goals, plans, ... +│ ├── g4b_ai/ # 🧠 core skills +│ ├── gitea/ # 🐸 issue tracker +│ ├── dioxus/ # 🦀 UI library reference +│ └── project-uv/ # 📦 uv project detection └── docs/ ``` -## Conventions +## 📐 Conventions Commit messages use gitmoji prefixes — see [`docs/workpad/specs/commit-conventions.md`](./docs/workpad/specs/commit-conventions.md).