ariadne-core

Route user requests to the appropriate Ariadne Core skill implementations.

Updated Apr 10, 2026
One-click install
npx skills add https://github.com/denson/ariadne-core --skill ariadne-core
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ariadne-core
Source: https://github.com/denson/ariadne-core/tree/main
Command: npx skills add https://github.com/denson/ariadne-core --skill ariadne-core

SYSTEM DOCUMENTATION & REQUIREMENTS

Ariadne Core plugin entry point. Do NOT answer questions about Ariadne Core from this file — instead, invoke the appropriate skill:

  • General questions ("what is ariadne", "tell me about ariadne", "how does it work") → invoke the ariadne-core-walkthrough skill
  • Document actions (ingest, search, extract) → invoke the ariadne-document-intelligence skill
  • Explicit skill requests ("run the install skill") → invoke the ariadne-core-router skill

Frequently Asked Questions about ariadne-core

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

FAQPage Schema
How does skill routing work for Claude Code plugins?

Skill routing works by dispatching user requests to designated sub-skills based on intent. It preserves user intent through well-defined routing rules, directing general questions, document actions, and explicit skill invocations to the appropriate implementations.

How do I route document actions like ingest and extract in Claude Code?

To route document actions like ingest and extract, the system dispatches these requests to the ariadne-document-intelligence skill. This ensures document-specific operations are handled by the appropriate sub-skill implementation.

What is the best way to orchestrate multiple Claude Code skills?

Orchestrating multiple skills requires a central entry point that routes requests to designated sub-skills. This approach dispatches calls to specific implementations while preserving user intent throughout the workflow.

Can I use this routing plugin for general onboarding questions?

Yes, you can use this routing plugin for general onboarding questions. It directs general queries such as "what is ariadne" to the ariadne-core-walkthrough skill to provide the appropriate informational responses.

When should I invoke a dedicated skill router instead of answering directly?

You should invoke a dedicated skill router when handling explicit skill requests like "run the install skill." The router dispatches these calls to the ariadne-core-router implementation rather than answering from the entry point file.

Why does my Claude Code workflow need a skill dispatch entry point?

A workflow needs a skill dispatch entry point to prevent logic fragmentation. It routes user requests across general questions, document actions, and explicit invocations, preserving user intent through well-defined routing rules.