A test skill with multiple sections and code blocks
Scanned 9/3/2026
Install to Claude Code
npx -y skills add kalinbogatzevski/captain-memo --skill skills --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of example-skill?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/kalinbogatzevski-example-skill)More formats (shields.io, HTML) on the badges page.
---
name: example-skill
description: A test skill with multiple sections and code blocks
---
# Example Skill
This is the introductory paragraph that captures the skill's purpose.
## Architecture
The skill follows a layered architecture pattern. Layer 1 handles input,
layer 2 transforms, layer 3 emits.
```typescript
function transform(input: string): string {
// intentional code block — must not be split
return input.toUpperCase();
}
```
More architecture prose after the code block.
## Usage
Invoke via the standard skill loader. The skill expects a string input.
### Edge cases
Empty input → empty output. Null input → throws.
## Anti-patterns
Don't bypass layer 2. Don't mutate inputs.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!