disabled-model

Disable automatic model invocation via SKILL.md frontmatter configuration.

17|5|Updated Jan 1, 2026
One-click install
npx skills add https://github.com/olaservo/skilljack-mcp --skill disabled-model
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: disabled-model
Source: https://github.com/olaservo/skilljack-mcp/tree/main/src/__fixtures__/skills/disabled-model
Command: npx skills add https://github.com/olaservo/skilljack-mcp --skill disabled-model

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

It allows developers to prevent automatic model invocation within a skill, reducing unintended calls or misuse.

Core Features & Use Cases

  • Disable model interactions for specific skills to control when models are invoked.
  • Use case: In scenarios requiring strict validation without model involvement, such as test environments or safety-critical operations.
  • Technical scope: Checks for configuration flags within the Skill's metadata to toggle model invocation, ensuring controlled execution flow.

Quick Start

Configure the skill to disable the model by setting disable-model-invocation: true in the SKILL.md frontmatter.

Frequently Asked Questions about disabled-model

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

FAQPage Schema
How do I disable model invocation in skills for safer execution?

To disable model invocation, you need to configure the skill metadata by setting `disable-model-invocation: true` in the SKILL.md frontmatter. This prevents automatic model calls, ensuring safer execution flow.

What is the purpose of preventing automatic model calls within a skill?

Preventing automatic model calls reduces unintended model usage or misuse during execution. This is crucial for maintaining strict validation and control in sensitive contexts or testing environments without model involvement.

How to configure skill metadata to restrict model usage?

You can restrict model usage by modifying the skill configuration flags. Add `disable-model-invocation: true` to the SKILL.md frontmatter to enforce this restriction and verify metadata during execution.

When do I need to disable model interactions in my configuration?

You need to disable model interactions in scenarios requiring strict validation without model involvement, such as safety-critical operations or test environments where execution flow must be explicitly managed.

Does disabling model invocation require any specific dependencies?

Disabling model invocation does not require external dependencies. It relies entirely on checking configuration flags within the skill's metadata to toggle and enforce the model invocation restriction.