📝 Update README with emojis and new plugins

This commit is contained in:
2026-05-19 19:56:19 +02:00
parent 9cf5f60a94
commit f7e1b96930
+15 -11
View File
@@ -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).