Skip to content

Commit 6fc2326

Browse files
KyleAMathewsclaude
andcommitted
fix: simplify open standard line, remove React Router callout
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 3ddb018 commit 6fc2326

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/blog/from-docs-to-agents.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Library maintainers already have the knowledge agents need — in docs, migratio
2828

2929
## Introducing `@tanstack/intent`
3030

31-
`@tanstack/intent` is a CLI for library maintainers to generate, validate, and ship [Agent Skills](https://agentskills.io) alongside their npm packages. The Agent Skills format has been adopted by VS Code, GitHub Copilot, OpenAI Codex, Cursor, Claude Code, Goose, Amp, and others — this isn't a proprietary format, it's an open standard with broad industry adoption.
31+
`@tanstack/intent` is a CLI for library maintainers to generate, validate, and ship [Agent Skills](https://agentskills.io) alongside their npm packages. Agent Skills is an open standard already adopted by VS Code, GitHub Copilot, OpenAI Codex, Cursor, Claude Code, Goose, Amp, and others.
3232

3333
**Skills ship inside your npm package.** They encode how your tool works, which patterns fit which goals, and what to avoid. Skills travel with the tool via `npm update` — not the model's training cutoff, not community-maintained rules files, not prompt snippets in READMEs. Versioned knowledge the maintainer owns, updated when the package updates. And because skills are editorial — prose, not code contracts — maintaining them is updating documentation, not debugging API compatibility.
3434

@@ -68,8 +68,8 @@ filter: z.string().optional(),
6868

6969
## Common Mistakes
7070

71-
❌ Don't use `useSearchParams()` from React Router — use TanStack
72-
Router's `useSearch()` hook which is fully type-safe.
71+
❌ Don't access search params via `window.location` — use
72+
`useSearch()` which is fully type-safe.
7373

7474
❌ Don't parse search params manually. `validateSearch` handles
7575
parsing, validation, and defaults.

0 commit comments

Comments
 (0)