Personal Claude Code skills, workflows, hooks, and developer tools
npx claudepluginhub enitrat/skill-issuePersonal Claude Code configuration with productivity skills and hooks. Includes GitHub workflows (PR creation/review, issue management), skill development tools, env protection hook, and TTS notifications.
Personal development best practices skills for React, Effect-TS, and other frameworks. Enforces patterns, anti-patterns, and code quality guidelines.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Personal Claude Code marketplace containing productivity skills, hooks, and developer tools.
# In Claude Code CLI
/plugin marketplace add enitrat/skill-issue
# Or via command
claude plugin marketplace add enitrat/skill-issue
# Install the base-config plugin (skills + hooks)
/plugin install base-config@eni-skills
Personal Claude Code configuration with productivity skills and hooks.
Skills included:
/base-config:pr-creator - Guide PR authoring from creation through review completion/base-config:pr-review - Perform thorough, constructive pull request reviews/base-config:github-issue - Comprehensive GitHub issue lifecycle management/base-config:skill-creator - Guide for creating effective Claude Code skills/base-config:ask-questions-if-underspecified - Clarify requirements before implementingHooks included:
env-protection (PreToolUse) - Prevents reading .env files with secretstts-notify (Stop) - Converts Claude's responses to speech using Kyutai Pocket TTSskill-issue/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugins/
│ └── base-config/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── skills/ # Skill definitions
│ │ ├── pr-creator/
│ │ ├── pr-review/
│ │ ├── github-issue/
│ │ ├── skill-creator/
│ │ └── ask-questions-if-underspecified/
│ └── hooks/ # Hook definitions
│ ├── hooks.json # Hook configuration
│ ├── env-protection/
│ └── tts-notify/
├── rules/ # Claude Code behavior rules
│ └── no-plan-mode.md # Disable automatic plan mode
├── subagents/ # Subagent definitions
│ ├── claude/ # Claude Code agents
│ └── codex/ # Codex prompts
└── tools/
└── skills-sync # Auto-sync script
The tools/skills-sync script automatically syncs:
.md files from rules/ to ~/.claude/rules/~/.codex/skills/~/.claude/agents/ and ~/.codex/prompts/# Sync everything
./tools/skills-sync
# Preview changes without applying
./tools/skills-sync --dry-run
# Test the marketplace locally
/plugin marketplace add /path/to/skill-issue
# Install from local marketplace
/plugin install base-config@eni-skills
plugins/base-config/skills/SKILL.md with YAML frontmatter and instructions/plugin install base-config@eni-skillsplugins/base-config/hooks/hook.py (or script) and wrapper.shplugins/base-config/hooks/hooks.jsonRules override Claude Code's default behavior:
.md file in rules/./tools/skills-sync to sync to ~/.claude/rules//clear to load the new ruleExample rule:
# No Automatic Plan Mode
**NEVER use the EnterPlanMode tool automatically.**
## What to Do Instead
- Implement changes directly
- Only create plans if explicitly requested
Personal use. See individual skill/hook files for details.