Klytos Hooks Reference

Catalog Klytos hooks with type, arguments, and source.

12|2|Updated Mar 26, 2026
One-click install
npx skills add https://github.com/joseconti/klytos --skill klytos-hooks-reference
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Klytos Hooks Reference
Source: https://github.com/joseconti/klytos/tree/main/.claude/skills/klytos-hooks-reference
Command: npx skills add https://github.com/joseconti/klytos --skill klytos-hooks-reference

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Comprehensive documentation of all Klytos hooks (actions and filters) to help developers discover, understand, and extend CMS behavior by intercepting events and customizing lifecycles.

Core Features & Use Cases

  • Canonical catalog of hooks with type, arguments, and source to support precise integration and tooling.
  • Usage patterns and exemplars for actions and filters across pages, authentication, MCP, and build processes.
  • Use Case: Developers can implement logging, auditing, or behavior modification by attaching functions to relevant hooks.

Quick Start

Identify a hook you need, locate its entry in the references, and wire a custom function with klytos_add_action or klytos_add_filter.

Frequently Asked Questions about Klytos Hooks Reference

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I intercept and customize Klytos CMS lifecycle events?

The Klytos hook system provides a canonical catalog of actions and filters, enabling developers to discover, extend, and intercept lifecycle events across pages, MCP tools, authentication, and the build pipeline for robust integration.

How do I find available actions and filters for plugin development?

To implement custom logging or auditing, identify the target event in the hook catalog, then wire your custom function to that hook using klytos_add_action for execution or klytos_add_filter for data modification.

Does the Klytos hook system support authentication and MCP tool interception?

The Klytos hook system covers pages, authentication, MCP tools, and build processes, offering documented usage patterns and exemplars so you can attach functions to relevant hooks for logging, auditing, or behavior modification.

What is the difference between using klytos_add_action and klytos_add_filter?

Using klytos_add_action attaches a custom function to execute at a specific lifecycle event, while klytos_add_filter attaches a function to intercept and modify data before it is processed or returned.