A Claude Code plugin marketplace with AI team behavioral guidelines for Eneo developers.
/plugin marketplace add CCimen/eneoplugin
/plugin install karpathy-guidelines@eneoplugin
/plugin install frontend-design@eneoplugin
/plugin install checker@eneoplugin
/plugin install vikunja-kanban@eneoplugin
/plugin install github-findings@eneoplugin
/plugin install codex-review@eneoplugin
/plugin install gemini-review@eneoplugin
Behavioral guidelines to reduce common LLM coding mistakes. Includes:
-
CLAUDE.md - Automatically loaded guidelines emphasizing:
- Think Before Coding
- Simplicity First
- Surgical Changes
- Goal-Driven Execution
-
Skill - Invoke with
/karpathy-guidelinesfor detailed guidance when writing, reviewing, or refactoring code.
Create distinctive, production-grade frontend interfaces with high design quality. Includes:
- Skill - Invoke with
/frontend-designwhen building web components, pages, dashboards, or any web UI.
Focuses on bold aesthetic choices, avoiding generic "AI slop" aesthetics. Emphasizes typography, color themes, motion, spatial composition, and visual details.
Automated Pyright type checking for the eneo Python backend. Includes:
-
Stop Hook - Automatically runs type checking when Claude finishes editing Python files in
backend/src/intric/. Blocks and provides feedback if errors are found. -
CLAUDE.md - Guidelines for the ratcheting type checking strategy.
-
Skill - Invoke with
/checkerto manually run type checks.
Configuration:
| Environment Variable | Effect |
|---|---|
TYPECHECK_DISABLE=1 |
Completely disable type checking |
TYPECHECK_WARN_ONLY=1 |
Show errors but don't block |
Track findings, bugs, and ideas as GitHub issues on the eneo project board. Designed for discovering things mid-conversation that should be tracked but not fixed right now.
- Skill - Invoke with
/findingto create, list, or grab issues.
| Command | Description |
|---|---|
/finding |
Create a new issue from a finding in the current conversation |
/finding list |
List all open items (Todo + In Progress) on the board |
/finding grab <number> |
Pick up an issue — assigns you, sets "In Progress", creates a branch |
Issues are written with structured sections (Problem, Context, Suggested Solution, Acceptance Criteria) so that Claude or another AI can understand and work on them later without extra context.
Setup (required once per developer):
- Install the plugin:
/plugin install github-findings@eneoplugin - Add GitHub project scope to your token:
This opens a browser where you authorize the extra scope. Only needed once.
gh auth refresh -s project -h github.com
- Verify it works:
gh project view 1 --owner eneo-ai
Note: The skill targets the eneo-ai/eneo repository and project board #1. All team members with repo access and the project token scope can use it.
Create and update Vikunja Kanban cards with safe, high-level Swedish progress updates. Includes:
- Skill - Invoke with
/vikunja-kanbanto create cards, link PRs, post progress updates, move tasks, and manage labels.
Configuration:
| Environment Variable | Effect |
|---|---|
VIKUNJA_BASE_URL |
Vikunja server root (no /api/v1) |
VIKUNJA_API_TOKEN |
API token (Bearer token) |
VIKUNJA_PROJECT_NAME |
Default project name (default: Internal TODO) |
VIKUNJA_VIEW_NAME |
Default view name (default: Kanban) |
Always-on peer review via OpenAI Codex CLI. Claude automatically invokes this for plan reviews, mid-implementation code reviews, and consultations. Includes:
-
Skill - Claude auto-invokes or use
/codex-reviewmanually. Three operating modes:- Plan Review — Verifies architecture before implementation (~3 iterations,
gpt-5.3-codexwith xhigh reasoning) - Code Review — Reviews git diff mid-implementation for quality, maintainability, testability (
gpt-5.3-codex-sparkwith xhigh) - Consultation — Answers questions when Claude is unsure (
gpt-5.3-codex-sparkwith xhigh)
- Plan Review — Verifies architecture before implementation (~3 iterations,
-
Four Personas — Solution Architect (always), API Consumer (endpoints), Security Reviewer (auth/permissions), Performance Analyst (queries/hot paths)
-
Eneo Context — Includes architecture reference so Codex understands Eneo patterns
Requires: Codex CLI installed (codex --version)
Architectural cross-verification via Google Gemini CLI. Claude invokes this AFTER codex-review to get an independent third perspective. Includes:
-
Skill - Claude auto-invokes after codex-review or use
/gemini-reviewmanually. Operates as the third step in the review pipeline:Claude → Codex (primary review) → Gemini (cross-check) → Claude (synthesis) -
Same Four Personas — Solution Architect, API Consumer, Security Reviewer, Performance Analyst
-
Focus — Catches blind spots that Claude and Codex may share. Provides independent architectural verification using
gemini-3.1-pro-preview
Requires: Gemini CLI installed (gemini --version)
Once installed, CLAUDE.md guidelines are automatically applied. Invoke skills manually:
/karpathy-guidelines # Coding guidelines
/frontend-design # UI design guidance
/checker # Run type checks
/finding # Create/list/grab GitHub project issues
/vikunja-kanban # Vikunja Kanban card management
/codex-review # Peer review via Codex CLI
/gemini-review # Cross-check via Gemini CLI
MIT