shared

Routes requests to shared reference documents for cross-skill protocols and standards.

6|1|Updated May 11, 2026
One-click install
npx skills add https://github.com/yakeworld/Synthos --skill shared-yakeworld
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: shared
Source: https://github.com/yakeworld/Synthos/tree/main/skills/extended/external-automation/automation-skills/shared
Command: npx skills add https://github.com/yakeworld/Synthos --skill shared-yakeworld

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? When multiple skills need the same reference material—such as data access level policies, pipeline trace formats, or quality check protocols—duplicating those documents across skills creates inconsistency and maintenance burden. This Skill acts as a parent directory index that routes requests to a shared references sub-skill, so common documentation is stored once and discovered automatically. ## Core Features & Use Cases - Sub-skill Routing: Delegates requests to the references sub-skill via skill_view(name='references'), acting only as a directory index without executing logic itself. - Shared Reference Library: Provides cross-skill documents covering data access levels, pipeline trace tracking, sequential consistency gates, dual quality check protocols, and human response analysis. - Contract Enforcement: Validates inputs (non-empty request, typed context), returns structured errors with context and recovery guidance, and rejects unverified code execution. - Use Case: A research pipeline skill needs the data access level policy (raw/redacted/verified_only) before processing external sources. Instead of embedding the policy, it loads the shared reference document through this parent skill. ## Quick Start Ask the agent to load the shared references sub-skill and read the data access levels document to check which access tier applies to your current task.

Frequently Asked Questions about shared

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

FAQPage Schema
How do I share reference documents across multiple AI skills?

Place common documents in a shared references directory under a parent skill that acts only as a directory index. Sub-skills are discovered automatically through the skill loading mechanism, so each consuming skill loads the same single source instead of duplicating files.

What is a parent skill in a skill-based agent architecture?

A parent skill is a directory-level SKILL.md that contains no execution logic of its own. It lists child sub-skills and routes requests to them, keeping orchestration separate from the actual operational instructions in each child.

What documents are included in the shared references?

The references include data access level policies (raw, redacted, verified_only), pipeline trace step tracking, sequential execution consistency gates, dual quality check protocols, human response linguistic analysis, auto-execution engine design, and an external absorption report.

What happens when a referenced document does not exist?

The skill returns a structured error with type RESOURCE_NOT_FOUND, including the missing file path, the failed step, and recovery guidance listing the available documents in the references directory, rather than a generic file-not-found message.

Does the shared skill execute code from external input?

No. Unverified arbitrary code from untrusted input is rejected or isolated under its safety constraint. The references sub-skill only handles read-only reference resources, and code execution must be validated by an upper-level orchestrator separately.