Klytos Hooks Reference — for Claude Code Klytos Hooks Reference, klytos, community, for Claude Code, ide skills, klytos_add_action(), klytos_add_filter(), klytos_do_action(), klytos_apply_filters(), ### Bulk Removal

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need klytos hooks reference. Resumen localizado: NEVER use Hooks:: class methods directly. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

Klytos Hooks Reference
Actions vs Filters
Purpose Execute code at specific points Modify and return data
Return None (void) Modified value
Register klytos add action() klytos add filter()

# Core Topics

joseconti joseconti
[8]
[0]
Updated: 4/5/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
67
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need klytos hooks reference. Resumen localizado: NEVER use Hooks:: class methods directly. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: Klytos Hooks Reference helps agents klytos hooks reference. NEVER use Hooks:: class methods directly. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Mejor para

Escenario recomendado: Ideal for AI agents that need klytos hooks reference.

Casos de uso accionables for Klytos Hooks Reference

Caso de uso: Applying Klytos Hooks Reference
Caso de uso: Applying Actions vs Filters
Caso de uso: Applying Purpose Execute code at specific points Modify and return data

! Seguridad y limitaciones

  • Limitacion: The Hooks class is an internal engine — plugins and core code must use the klytos wrappers.
  • Limitacion: The Hooks class is an internal engine — plugins and core code must use the klytos wrappers
  • Limitacion: Requires repository-specific context from the skill documentation

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is Klytos Hooks Reference?

Escenario recomendado: Ideal for AI agents that need klytos hooks reference. Resumen localizado: NEVER use Hooks:: class methods directly. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install Klytos Hooks Reference?

Run the command: npx killer-skills add joseconti/klytos/Klytos Hooks Reference. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for Klytos Hooks Reference?

Key use cases include: Caso de uso: Applying Klytos Hooks Reference, Caso de uso: Applying Actions vs Filters, Caso de uso: Applying Purpose Execute code at specific points Modify and return data.

Which IDEs are compatible with Klytos Hooks Reference?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for Klytos Hooks Reference?

Limitacion: The Hooks class is an internal engine — plugins and core code must use the klytos wrappers.. Limitacion: The Hooks class is an internal engine — plugins and core code must use the klytos wrappers. Limitacion: Requires repository-specific context from the skill documentation.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add joseconti/klytos/Klytos Hooks Reference. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use Klytos Hooks Reference immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

Klytos Hooks Reference

NEVER use Hooks:: class methods directly. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. Klytos Hooks Reference

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Klytos Hooks Reference

Actions vs Filters

ActionsFilters
PurposeExecute code at specific pointsModify and return data
ReturnNone (void)Modified value
Registerklytos_add_action()klytos_add_filter()
Fireklytos_do_action()klytos_apply_filters()

Hook API

php
1klytos_add_action(string $hook, callable $callback, int $priority = 10): void 2klytos_do_action(string $hook, mixed ...$args): void 3klytos_add_filter(string $hook, callable $callback, int $priority = 10): void 4klytos_apply_filters(string $hook, mixed $value, mixed ...$args): mixed 5klytos_remove_action(string $hook, callable $callback): bool 6klytos_remove_filter(string $hook, callable $callback): bool 7klytos_has_action(string $hook): bool 8klytos_has_filter(string $hook): bool

Bulk Removal

php
1klytos_remove_all_actions(string $hook): void 2klytos_remove_all_filters(string $hook): void

Debugging

php
1klytos_did_action(string $hook): int // Times action was fired 2klytos_get_fired_actions(): array // ['hook' => fire_count, ...] 3klytos_get_registered_hooks(): array // ['actions' => ['hook' => count], 'filters' => [...]]

IMPORTANT: ALWAYS use the global klytos_* functions. NEVER use Hooks:: class methods directly. The Hooks class is an internal engine — plugins and core code must use the klytos_* wrappers.


Priority System

  • 1-9: Runs BEFORE most plugins
  • 10: Default
  • 11-99: Runs AFTER most plugins

Page Detection Helpers

php
1klytos_current_admin_page(): string // 'settings', 'users', 'dashboard', etc. 2klytos_is_admin_page(string $page): bool // Exact ('settings') or prefix ('settings.*')

Quick Hook Reference

Page Lifecycle

  • page.before_save, page.after_save, page.before_delete, page.after_delete (actions)
  • page.content (filter)

Build Process

  • build.before, build.after, build.page.before, build.page.after (actions)
  • build.page.output, build.head_html, build.body_end_html, build.sitemap_urls (filters)

LLM Discoverability (Build)

  • build.llms_generated (action) — after llms.txt + llms-full.txt + .html.md are generated, receives $stats array
  • build.llms_txt (filter) — modify llms.txt content before writing
  • build.llms_full_txt (filter) — modify llms-full.txt content before writing
  • build.page_markdown (filter) — modify per-page Markdown before writing .html.md, receives ($md, $page)
  • build.llms_pages (filter) — modify/reorder/add pages array for LLM file generation

MCP Tools

  • mcp.tools_list (filter) — register new tools
  • mcp.handle_tool (filter) — handle tool calls
  • mcp.tool_response (filter) — modify responses
  • mcp.tool_called (action) — tool was called

Authentication

  • auth.before_login, auth.after_login (actions)
  • auth.capabilities (filter)

Admin Panel

  • admin.sidebar_items (filter) — customize sidebar
  • admin.head, admin.footer (actions)
  • admin.{page}.before, admin.{page}.after (actions)

Blocks & Templates

  • block.before_save, block.after_save (actions)
  • block.rendered_html (filter)
  • page_template.before_save, page_template.after_save, page_template.approved (actions)

Plugins

  • plugin.activated, plugin.deactivated (actions)
  • plugin.loaded, plugin.installed (actions)

Source Files

  • Hook engine: installer/core/hooks.php
  • Global wrappers: installer/core/helpers-global.php

For the complete hook catalog with all arguments and sources, see the references/complete-hooks.md file.

Habilidades relacionadas

Looking for an alternative to Klytos Hooks Reference or another community skill for your workflow? Explore these related open-source skills.

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Inteligencia Artificial

nextjs-turbopack

[ Destacado ]
Logo of affaan-m
affaan-m

Resumen localizado: Next.js 16+ and Turbopack — incremental bundling, FS caching, dev speed, and when to use Turbopack vs webpack. It covers ai-agents, anthropic, claude workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

169.5k
0
Productividad

widget-generator

Logo of f
f

Resumen localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador