# Example Skill

> Example Skill

- Skill: `privatenumber/example-skill` (Agent Skill)
- Install (CLI): `npx skillmds@latest add privatenumber/example-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/privatenumber/example-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Docs & Writing
- Author: privatenumber (https://skillmd.com/u/privatenumber)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/privatenumber/example-skill

---

# Example Skill

Instructional markdown with code examples that shouldn't be linted.

## Usage

```js
// Semicolons and wrong indentation would normally fail
const result = doSomething();
if (result) {
  console.log(result);
}
```

```ts
// TypeScript example with style violations
interface Config {
  name: string;
  value: number;
}

const config: Config = {
  name: "test",
  value: 1,
};
```

