skill-name-here

Provides a reusable template for authoring structured analytic method skills.

4|1|Updated Jul 30, 2026
One-click install
npx skills add https://github.com/radarist/structured-analytic-skills --skill skill-name-here-radarist
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill-name-here
Source: https://github.com/radarist/structured-analytic-skills/tree/main/skills/_TEMPLATE
Command: npx skills add https://github.com/radarist/structured-analytic-skills --skill skill-name-here-radarist

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Authoring a new agent skill for a published analytic method requires many mandatory sections — frontmatter, invocation rules, procedure, output template, worked example, verification checklist, and eval cases — and missing any of them breaks consistency across the library. This template gives authors a complete, annotated skeleton so every new skill meets the same structural bar. ## Core Features & Use Cases - Complete SKILL.md skeleton: Includes YAML frontmatter, when-to-invoke routing with sibling near-misses, a numbered procedure, an output template, a worked example, a verification checklist, anti-patterns, and references. - Eval scaffolding: Ships an evals/evals.json template with positive and negative (near-miss) test cases for discoverability testing. - Use Case: A contributor adding a new structured analytic technique (e.g., a decision-analysis method) copies this directory, replaces the placeholders with the method's published labels and steps, and ships a spec-compliant skill with evals. ## Quick Start Copy the skills/_TEMPLATE directory to a new skill folder and fill in every placeholder with the published method's name, steps, output template, and eval cases.

Frequently Asked Questions about skill-name-here

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

FAQPage Schema
How do I create a new structured analytic skill from this template?▼

Copy the skills/_TEMPLATE directory, rename it, and replace every placeholder in SKILL.md with the published method's own labels, scales, and step order. Then fill evals/evals.json with at least three positive prompts and one near-miss negative case.

What sections must a valid SKILL.md contain?▼

A valid SKILL.md needs YAML frontmatter with name and description, a when-to-invoke section with sibling routing, a numbered procedure, an output template, a worked example, a verification checklist, anti-patterns, and cited references.

When should a skill include a companion script?▼

Add a script under scripts/ whenever the method contains arithmetic the agent should not compute in prose, such as scoring algorithms or rating calculations. The script must be deterministic, standard-library-only, and support a selftest mode.

What are the limitations of using this template directly?▼

The template contains only placeholders and no working method, so it cannot be invoked for real analysis. It is a scaffolding artifact for authors, not an operational analytic skill.