asepharyana 95a91d7bf5 fix(hooks): restore with proper SessionStart matchers
- Add matcher: startup|resume|compact for SessionStart (per docs)
- PreToolUse reads from stdin per documented hook input format
- Remove  arg, use stdin-based approach
- Scripts read event JSON from stdin as documented
- Plain text output, no special characters
2026-07-26 12:03:49 +07:00

hub-guide — Comprehensive Programming Best-Practice Plugin

A Claude Code plugin serving as a complete engineering guide for all programming situations — monorepo, standalone, any language, any framework.

Features

🧠 24 Best-Practice Skills

Category Skills
Core Engineering clean-code, clean-architecture, design-patterns, testing, error-handling, security, api-design, git-workflow, documentation, logging-observability, performance
Languages typescript, python, rust, go
Frameworks react-frontend, elysiajs, hono-backend, drizzle-database, nextjs
Infrastructure docker, ci-cd, monitoring
Monorepo monorepo (patterns + submodules + workspace tooling)
Hub-specific hub-guide (Asepharyana Hub monorepo infra & workflow)

Skills activate automatically when Claude detects relevant context (language, framework, topic).

Hooks for Auto-Detection

Hook Trigger What It Does
SessionStart Session begins Detects project type from files (package.json, Cargo.toml, go.mod, etc.) and activates relevant skills
PreToolUse Before Write/Edit Detects file extension and injects language-specific best-practice rules

Installation

Quick Install

# Clone
git clone https://github.com/asepharyana/asepharyana-hub-hub-guide.git
cd asepharyana-hub-hub-guide

# Install as one unit (recommended)
./install.sh

# Or symlink (edits in this repo are live)
./install.sh --link

Usage

Skills are auto-triggered — Claude loads them when you mention relevant topics or work with matching file types.

Example triggers:

  • "Refactor this function"clean-code activates
  • "Write a test for this"testing activates
  • "Design an API endpoint"api-design activates
  • Working with .ts files → typescript activates
  • Project with Cargo.tomlrust activates (SessionStart hook)

Auto-Detection (Hooks)

When you start a session in a project, the SessionStart hook scans for:

File Skills Activated
tsconfig.json typescript, react-frontend, elysiajs, hono-backend, drizzle-database
Cargo.toml rust
go.mod go
pyproject.toml python
pnpm-workspace.yaml monorepo
Dockerfile docker
.github/workflows/ ci-cd

Structure

hub-guide/
├── .claude-plugin/
│   └── plugin.json          # Plugin manifest
├── hooks/
│   ├── hooks.json           # Hook configuration
│   └── scripts/
│       ├── detect-project.sh    # SessionStart auto-detection
│       └── detect-file-type.sh  # PreToolWrite language detection
├── skills/
│   ├── clean-code/          # +23 more skill directories
│   ├── ...
│   └── hub-guide/           # Existing hub monorepo guide
└── README.md

Development

Skills are in skills/<name>/SKILL.md format (modern Claude Code plugin convention). Each skill includes:

  • Frontmattername and description with specific trigger phrases
  • Lean body — key rules, examples, and anti-patterns (~1500-2000 words)

Hooks use bash scripts. Edits to hooks/scripts/ take effect immediately when installed as a symlink.

Based on patterns from kana-best-practice-engineering.

S
Description
No description provided
Readme
180 KiB
Languages
Shell 56.1%
PowerShell 23.4%
Batchfile 20.5%