# Minimal

> A bare-minimum Logion course example. Use as a starting template when authoring a new skill that needs no tools, no network, no filesystem writes, and no env vars. Demonstrates the smallest valid SKILL.md plus capabilities.yaml pairing.

- Skill: `nicolasmelo1/minimal` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add nicolasmelo1/minimal`
- Raw SKILL.md: https://api.skillmd.com/api/skills/nicolasmelo1/minimal/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: MIT
- Author: nicolasmelo1 (https://skillmd.com/u/nicolasmelo1)
- Updated: 2026-09-21
- Page: https://skillmd.com/skills/nicolasmelo1/minimal

---


# Minimal Logion Course

This is the smallest valid Logion course. It exists as a copy-paste starting point.

## What this course does

Nothing meaningful — it returns the literal string `"hello from minimal logion course"` when an agent reads it.

## Structure

```
minimal/
├── SKILL.md                  # this file
└── course/
    └── capabilities.yaml     # near-empty Logion manifest
```

No `scripts/`, no `references/`, no `assets/`. Add those when your real course needs them.

## When to use this

When you're starting a new course and want a known-good skeleton that already validates against both:

- the agentskills.io SKILL.md frontmatter spec
- the Logion `course/capabilities.yaml` schema

Copy this whole directory, rename it, edit `SKILL.md` and `course/capabilities.yaml`, then run `logion course validate ./your-course/` before uploading.

## What an agent should do here

Nothing — this skill has no behavior. Real skills go in their body where this paragraph is.

