A Git-based marketplace for reusable agent plugins and skills.
This repo is the place to publish and maintain useful agent capabilities across domains, not only public-data workflows. Current content includes the Estonia public sources package; future packages can include things like self-coaching, productivity, research, engineering, and other reusable agent systems.
Each package can be distributed through:
- Anthropic Claude Code plugin marketplace (
.claude-plugin/marketplace.json+ per-package plugin manifests). - Codex skill install from Git paths under
skills/.curatedorskills/.experimental.
.
├── AGENTS.md
├── .claude-plugin/
│ └── marketplace.json
├── skills/
│ ├── .curated/
│ │ └── <package>/
│ └── .experimental/
├── scripts/
│ ├── generate_plugin_manifests.py
│ ├── generate_marketplace.py
│ ├── validate_codex_skills.py
│ └── validate_anthropic_plugins.py
└── .github/workflows/validate-distribution.yml
skills/.curated/estonia-public-sources
Planned/possible additions:
skill-self-coaching(from taivop/skill-self-coaching)- Additional domain packages as they are curated
claude plugin marketplace add taivop/marketplace
claude plugin install estonia-public-sources@marketplacepython3 ~/.codex/skills/.system/skill-installer/scripts/install-skill-from-github.py \
--repo taivop/marketplace \
--path skills/.curated/estonia-public-sourcesUse this sequence before committing:
python3 scripts/generate_plugin_manifests.py
python3 scripts/generate_marketplace.py
python3 scripts/validate_codex_skills.py
python3 scripts/validate_anthropic_plugins.py
python3 scripts/generate_plugin_manifests.py --check
python3 scripts/generate_marketplace.py --checkSee AGENTS.md for full operating rules.