# Fake Skill

> A deliberately stale skill used to exercise the auditor.

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

---


# Data fetching and state

Fetch data on the server with `getServerSideProps`, then navigate:

```tsx
import { useRouter } from 'next/router'
import { createStore } from 'redux'

export async function getServerSideProps() {
  return { props: {} }
}

export function Page() {
  const router = useRouter()
  const store = createStore(() => ({}))
  return null
}
```

Use `next` for routing and `redux` for state.

