Files
reliquary/README.md
T
g4borg 320c645294 🏗️ reshape repo into reliquary marketplace
The single ai-skills plugin becomes plugins/g4b_ai/ inside a
reliquary-named Claude marketplace. Root README/CLAUDE.md now
describe the marketplace; the plugin's own docs move alongside it.
This makes room for additional themed plugins and non-Claude
formats in parallel.
2026-05-11 12:58:16 +02:00

2.3 KiB

reliquary

A marketplace for personal agent tooling — skills, plugins, prompts, configs — for 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.

Plugins

Plugin Description
g4b_ai Core personal Claude Code skills — workpad, research-tree, implementation-orchestration, markdown-embedded-svg

More plugins will land in plugins/ as they're carved out.

Install as a Claude Code marketplace

/plugin marketplace add git@git.g4b.org:dirigence/reliquary.git
/plugin install g4b_ai@reliquary

Or declaratively in a project's .claude/settings.json:

{
  "extraKnownMarketplaces": {
    "reliquary": {
      "source": {
        "source": "git",
        "url": "git@git.g4b.org:dirigence/reliquary.git"
      }
    }
  },
  "enabledPlugins": {
    "g4b_ai@reliquary": true
  }
}

From a local clone:

/plugin marketplace add /path/to/reliquary
/plugin install g4b_ai@reliquary

Each plugin's own README documents its skills and any per-plugin install paths.

Grab pieces independently

A skill is just a folder containing SKILL.md. You don't need the plugin or marketplace machinery to use one:

git clone git@git.g4b.org:dirigence/reliquary.git /tmp/reliquary
mkdir -p ~/.claude/skills
cp -r /tmp/reliquary/plugins/g4b_ai/skills/workpad ~/.claude/skills/

Symlink instead of copy if you want to follow upstream:

ln -s /tmp/reliquary/plugins/g4b_ai/skills/workpad ~/.claude/skills/workpad

Layout

reliquary/
├── .claude-plugin/
│   └── marketplace.json          # the marketplace listing
├── plugins/
│   └── g4b_ai/
│       ├── .claude-plugin/plugin.json
│       ├── skills/
│       └── README.md
└── docs/                         # workpad: notes, research, goals, plans

Conventions

Commit messages use gitmoji prefixes — see docs/workpad/specs/commit-conventions.md.