getting-started
Installation
SKILL.md
Overview
This skill bootstraps the session, identifying the user's domain, routing to the correct skill family, and establishing the workflow context. It prevents "unstructured thinking" by ensuring every task is approached with the appropriate skill framework.
Iron Law
NO RESPONSE TO A TASK WITHOUT CHECKING FOR APPLICABLE SKILLS FIRST
Jumping directly into a task without identifying the relevant skill framework results in generic, unverified, and low-value output.
State Machine
digraph getting_started_flow {
"Start" [shape=doublecircle];
"Step 1: Identify Domain" [shape=box];
"Step 2: Check Skill Taxonomy" [shape=box];
"Step 3: Establish Workflow Chain" [shape=box];
"Gate: Skill Applicable?" [shape=diamond];
"Step 4: Invoke Skill(s)" [shape=box];
"Ready" [shape=doublecircle];