agentic-disable

Append an opt-out marker to AGENTS.md to disable agentic-engineering prompts.

12|1|Updated Apr 7, 2026
One-click install
npx skills add https://github.com/Space-Dinosaurs/DinoStack --skill agentic-disable
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentic-disable
Source: https://github.com/Space-Dinosaurs/DinoStack/tree/main/.openclaw/skills/agentic-disable
Command: npx skills add https://github.com/Space-Dinosaurs/DinoStack --skill agentic-disable

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Append the agentic-engineering opt-out marker to AGENTS.md (creating it if absent) so projects can opt out of automated agentic behavior.

Core Features & Use Cases

  • Auto-detect and create AGENTS.md when missing, then append the opt-out marker in a safe, idempotent way.
  • Optional --global flag to update the user's global config with opt-out status.
  • Enforces opt-in conflict handling, preventing accidental opt-out overwrites without --force.

Quick Start

Run agentic-disable to write the opt-out marker to AGENTS.md in your project.

Frequently Asked Questions about agentic-disable

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

FAQPage Schema
How do I opt out of agentic-engineering prompts in my project?

To opt out of agentic-engineering prompts, append an opt-out marker to your AGENTS.md file. The process safely creates the file if missing and applies the marker idempotently to disable automated behavior.

What happens if I try to disable agentic automation when an opt-in marker already exists?

Disabling agentic automation when an opt-in marker exists requires the --force flag. This safety check prevents accidental overwrites and ensures intentional configuration changes.

Can I apply the agentic opt-out marker globally instead of per-project?

Yes, you can apply the agentic opt-out marker globally by using the optional --global flag. This updates the user's global config with the opt-out status while maintaining per-project scope by default.

Does the opt-out marker for AGENTS.md work if the file does not exist yet?

Yes, the opt-out marker works even if AGENTS.md does not exist. The script auto-detects the missing file, creates it, and then appends the opt-out marker safely.

Is re-running the agentic opt-out script safe if the marker is already present?

Re-running the agentic opt-out script is safe because it appends the marker in an idempotent way. It also enforces atomic writes to prevent file corruption during the process.