
Myh Hooks
- Updated May 6, 2026
- MrMYHuang/agent-marketplace
myh-hooks is a collection of agent hooks that let a builder inject custom logic at agent lifecycle points without rewriting core agent behavior.
About
myh-hooks is a collection of agent hooks for customizing agent behavior. A developer uses it to inject custom logic at agent lifecycle points rather than modifying core agent behavior directly. Details are sparse, so scope is inferred from the name and category.
- Agent hooks
- Lifecycle customization
Myh Hooks by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add MrMYHuang/agent-marketplace/plugin install myh-hooks@agent-marketplaceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | May 6, 2026 |
|---|---|
| Repository | MrMYHuang/agent-marketplace ↗ |
How do I customize agent behavior at lifecycle events without forking or patching the core agent?
A set of agent hooks for customizing agent behavior at lifecycle events.
Who is it for?
A developer extending Claude or similar agents who wants hook points for lifecycle customization.
Skip if: Users who only need one-off prompts with no persistent lifecycle integration.
When should I use this skill?
When you need to run custom logic at agent lifecycle events via installable hooks.
What you get
Custom behavior wired through agent hooks at the relevant lifecycle points.
README.md
Agent Marketplace
A curated collection of skills and plugins for AI agents. Extend your agent capabilities with specialized workflows and integrations.
Quick Start
Installation
Method 1
vscode://chat-plugin/add-marketplace?ref=MrMYHuang/agent-marketplace
Method 2
- Clone or download this repository into your agent plugins directory.
- Navigate to the
myh-pluginfolder — skills are organized here. - Each skill is self-contained with a
SKILL.mdfile describing how to use it.
Using a Skill
Skills integrate directly into your agent. Reference a skill by name in your workflow:
- Load the skill file (e.g.,
myh-plugin/skills/github-fix-this/SKILL.md) - Follow the Prerequisites and Workflow sections
- The skill will guide you through each step
Example: The github-fix-this skill automates GitHub workflow — from issue to pull request in one go.
Available Skills
| Skill | Purpose | Prerequisites |
|---|---|---|
| github-fix-this | Automate GitHub issue-to-PR workflow | gh CLI authenticated, Git repo with remote |
| sqlcl | Query/modify Oracle databases via SQLcl | SQLcl installed, saved named connection |
Folder Structure
agent-marketplace/
├── myh-plugin/
│ └── skills/
│ ├── github-fix-this/ # GitHub workflow automation
│ │ └── SKILL.md
│ └── sqlcl/ # Oracle database tool
│ ├── SKILL.md
│ ├── agents/ # Agent configs (e.g., openai.yaml)
│ └── references/ # Usage examples & docs
├── myh-hooks/
│ └── hooks.json # Agent lifecycle hooks
└── README.md # This file
Resources
- Skill Documentation — Each skill has a
SKILL.mdwith detailed workflow and examples - Agent Configuration — See
myh-plugin/skills/*/agents/for agent-specific setup - References — Additional guides and examples in
myh-plugin/skills/*/references/
Contributing
To add a new skill:
- Create a folder under
myh-plugin/skills/<skill-name>/ - Write a
SKILL.mdwith Prerequisites, Workflow, and Checklist - Include supporting files (agents, references) as needed
- Update this README with the new skill entry
Questions? Refer to individual skill documentation for detailed usage patterns and troubleshooting.
Related skills
FAQ
What are myh-hooks?
Agent hooks for customizing behavior at lifecycle events.
When use hooks vs direct prompts?
Use hooks when you need repeatable lifecycle integration rather than ad-hoc prompting.