No description
- Python 100%
git-workflow: batch inspector git calls, in-process sibling inspectors, --validate-only fast path, single-command commit-flow working-tree read. review: reuse one shared scanner run across all four audit domains. |
||
|---|---|---|
| .claude-plugin | ||
| plugins | ||
| .gitignore | ||
| CLAUDE.md | ||
| README.md | ||
neureka
Neureka's Claude Code skills, packaged as plugins and distributed from a self-hosted Forgejo marketplace.
Plugins
| Plugin | Version | Requires | Description |
|---|---|---|---|
docker |
1.0.0 | — | Best-practice Dockerfiles with matching Compose and env files. |
forgejo-workflows |
1.0.0 | — | Create Forgejo Actions workflows from reusable templates. |
git-workflow |
1.0.1 | python |
Conventional commits, changelogs, versioned releases, and quality checks. |
godot |
1.0.0 | — | Godot 4.6 game and app development, plus full engine and API reference. |
review |
1.0.1 | python |
Multi-pass code review for quality, reuse, performance, and security. |
unit-tests |
1.0.0 | — | Prevents unit tests from being created or changed. |
Each plugin is versioned independently. See CLAUDE.md for the
versioning, changelog, and release process used to maintain this repository.
Install
Everything runs from a terminal — no need to open Claude Code. Add the marketplace once:
claude plugin marketplace add https://code.neureka.dev/claude/marketplace.git
Over SSH instead (the host must be in known_hosts and your key loaded in
ssh-agent):
claude plugin marketplace add ssh://git@code.neureka.dev/claude/marketplace.git
Then install the plugins you want:
claude plugin install docker@neureka
claude plugin install forgejo-workflows@neureka
claude plugin install git-workflow@neureka
claude plugin install godot@neureka
claude plugin install review@neureka
claude plugin install unit-tests@neureka
Update and remove
claude plugin marketplace update neureka # pull the latest catalog + plugin versions
claude plugin update <name> # update one installed plugin
claude plugin uninstall <name>@neureka # remove one plugin
Skill usage
Skills are namespaced by their plugin and invoked as /<plugin>:<skill>:
/docker:compose
/git-workflow:conventional-commits
/godot:godot-4.6-2d
/review:audit
Most skills are invoked automatically based on their description; use the explicit form above when you want to run one directly.