using-sixth-sense

Establishes skill discovery, platform adaptation, and routing rules at session start.

1|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/dariovr1/sixth-sense --skill using-sixth-sense-dariovr1
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: using-sixth-sense
Source: https://github.com/dariovr1/sixth-sense/tree/main/skills/using-sixth-sense
Command: npx skills add https://github.com/dariovr1/sixth-sense --skill using-sixth-sense-dariovr1

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI agents often fail to use available skills correctly: they read skill files directly instead of invoking them, subagents redundantly re-dispatch tasks, and model-invocation restrictions cause confusing errors. This Skill sets the ground rules at the start of every conversation so skills are found and invoked properly. ## Core Features & Use Cases - Platform-Aware Skill Access: Instructs agents how to invoke skills on Claude Code (Skill tool), Antigravity/Gemini CLI (activate_skill), or other environments. - Subagent Guardrails: Detects subagent contexts and prevents wasteful nested dispatching of further agents. - Routing Transparency: Requires stating the rationale when choosing between ambiguous skill candidates before invoking one. - Use Case: When starting a new session in the Sixth Sense plugin, this Skill ensures the agent knows how to discover other skills, respects disable-model-invocation flags, and avoids redundant subagent fan-out. ## Quick Start Start a new conversation and let the session hook load this skill so the agent knows how to find and invoke other skills correctly.

Frequently Asked Questions about using-sixth-sense

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

FAQPage Schema
How do I invoke skills in Claude Code?

Use the Skill tool to invoke skills by name in Claude Code. Never use the Read tool on skill files, since that bypasses the proper activation mechanism and loads content without the intended invocation semantics.

How do skills activate in Antigravity or Gemini CLI?

Skills activate via the activate_skill tool in Antigravity and Gemini CLI. Skill metadata loads at session start, and full skill content is loaded on demand when invoked.

What does disable-model-invocation true mean for a skill?

It makes the skill unreachable by the model entirely, not just non-auto-triggering. The Skill tool refuses the call even when invoked explicitly by name; only the user typing the slash command directly can reach it.

Why should a subagent not dispatch more subagents?

A dispatched worker splitting its task into further dispatches wastes the budget the orchestrator already allocated and is almost never correct. Subagents should execute their assigned bounded task directly and report results back.

When should an agent explain its skill routing choice?

Explain routing only when the choice is genuinely ambiguous and multiple skills could plausibly apply. Name the driving fact, the chosen skill, and the rejected candidate; skip the explanation when the choice is obvious or the user named the skill.