Klytos Hooks Reference — community Klytos Hooks Reference, klytos, community, ide skills

v1.0.0

이 스킬 정보

The AI-First CMS — Build and manage websites entirely with AI through Model Context Protocol (MCP)

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 3/11

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

Quality floor passed for review
Review Score
3/11
Quality Score
57
Canonical Locale
en
Detected Body Locale
en

The AI-First CMS — Build and manage websites entirely with AI through Model Context Protocol (MCP)

이 스킬을 사용하는 이유

The AI-First CMS — Build and manage websites entirely with AI through Model Context Protocol (MCP)

최적의 용도

Suitable for team workflows that need explicit guardrails before installation and execution.

실행 가능한 사용 사례 for Klytos Hooks Reference

! 보안 및 제한 사항

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.

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?

The AI-First CMS — Build and manage websites entirely with AI through Model Context Protocol (MCP)

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.

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.

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

Install Klytos Hooks Reference, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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.

관련 스킬

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

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자