holix-extensions

holix-extensions is a skill for Claude Code from javded-itres/Holix. It costs 66 tokens per session (1,550 once invoked), scanned A, original, MIT.

A Holix extension-management skill for creating and managing drop-in additions to the Holix agent. These extensions can add custom tools or slash commands without changing Holix's core code.

In plain words
What is it for?
Use it to create an extension, add a tool or slash command, inspect loaded extensions, or disable a faulty extension in a local Holix session.
Why use it?
It provides a defined place and process for changing an agent's capabilities while keeping the core application untouched. It also covers listing extensions and disabling broken ones.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter.

Good fit Use it to create an extension, add a tool or slash command, inspect loaded extensions, or disable a faulty extension in a local Holix session.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/javded-itres/holix/holix-extensions
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add javded-itres/Holix --skill holix-extensions
Clone the repo
git clone --depth 1 https://github.com/javded-itres/Holix

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for holix-extensions

README.md
[![agentmods](https://agentmods.dev/badge/skills/javded-itres/holix/holix-extensions/github.svg)](https://agentmods.dev/skills/javded-itres/holix/holix-extensions)
Your own site
<a href="https://agentmods.dev/skills/javded-itres/holix/holix-extensions"><img src="https://agentmods.dev/badge/skills/javded-itres/holix/holix-extensions/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for holix-extensions

Your own site · 80×15
<a href="https://agentmods.dev/skills/javded-itres/holix/holix-extensions"><img src="https://agentmods.dev/badge/skills/javded-itres/holix/holix-extensions.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,550 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 6
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
  • medium Rogue Agent · line 43
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium Rogue Agent · line 74
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00066 $0.01550
Opus 5 $0.00033 $0.00775
Sonnet 5 $0.00013 $0.00310
Haiku 4.5 $0.00007 $0.00155

Measured 9d ago against content hash 7e74ef02bad4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

holix-extensions scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

core/skills/bundled/holix-extensions/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

When to use

The user wants the agent to grow new capabilities safely:

  • add a custom tool or slash command
  • “напиши расширение”, “допиши себя”, “добавь skill/tool”
  • list what extensions are loaded
  • disable something that breaks the agent

Never edit Holix core (core/, cli/, integrations/, package source).
Only create profile-local drop-in extensions.

Mode restriction (important)

Self-authored extensions (create / enable / hot-reload) work only in local single-operator mode:

Mode Create / hot-reload
CLI, TUI, holix run (local operator) Allowed
Telegram / MAX multi-user bots Denied

Messenger hosts set HOLIX_MESSENGER_HOST and self_extensions_enabled=False.
Override (not recommended on shared bots): HOLIX_SELF_EXTENSIONS=1.

If manage_agent_extensions returns self_extensions_denied, tell the user to use a local profile session — do not try to force-create on the group bot.

Architecture (safe zone)

~/.holix/profiles/<profile>/extensions/<name>/
  agent.py              # get_agent_extension()
  holix.plugin.json
  settings.default.yaml
  README.md
  • Discovered on agent start and via hot-reload after create / reload (local mode).
  • Does not require pip install.
  • Same profile only (unless user copies to ~/.holix/extensions/).

Primary tool

Use manage_agent_extensions:

action Purpose Local only?
list Folders + blocked status No
registered Settings + slash commands No
create Scaffold + hot-reload into this session Yes
disable Kill-switch; hot-unload when local Prefer anytime
enable Re-enable + hot-reload Yes
quarantine_clear Clear auto-quarantine + reload Yes
reload Re-scan extensions / reimport modules Yes
show_control Show agent_extensions_control.yaml No

Create (local)

Read the full file on GitHub · 204 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 204 lines · 66 tokens per session scan A 7e74ef02bad4

Subscribe to this mod's changes

holix-extensions is a skill published in the GitHub repository javded-itres/Holix (14 stars, last pushed yesterday), licensed MIT. It adds 66 tokens to every session and 1,550 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

a0-development

Development guide for extending Agent Zero from current source and DOX. Use for framework architecture, tools, extensions, API/WebUI handlers, agent profiles, prompts, skills, projects, runtime boundaries, and contribution workflow. Load the focused reference files before giving implementation guidance.

agent0ai/agent-zero · 57 tokens

a0-development

Development guide for extending and building features for the Agent Zero AI framework. Covers architecture, tools, extensions, API endpoints, agent profiles, projects, prompts, and skills — with correct paths, imports, and patterns matching the current codebase.

Gen-Verse/PAST-Bench · 52 tokens

agent-creation

Create a new Stencila agent. Use when asked to create, write, scaffold, or set up an agent directory or AGENT.md file. Covers workspace and user-level agents with model, provider, tool, trust, and MCP configuration.

stencila/stencila · 53 tokens

yida-canvas-custom-page

A development guide for creating custom pages in Yida, a business application platform, using React 18. It covers pages such as websites, dashboards, workspaces, lists, details, and portals inside YidaCodeCanvas.

openyida/openyida · 93 tokens

yida-custom-page

A set of rules for building custom React-style pages on the Yida platform, a business application platform. It covers page structure, event handling, state, and Yida's JavaScript interface.

openyida/openyida · 67 tokens

yida-create-form-page

A procedure for creating or updating standard Yida forms, including their fields, layout, rules, and data connections. A form is a page where people enter or submit structured information.

openyida/openyida · 55 tokens