Skip to content

Commit 9ca2d85

Browse files
Copilotmaiertech
andcommitted
Fix title of published note: agentic skills → agent skills, add redirect
Co-authored-by: maiertech <1482402+maiertech@users.noreply.github.com> Agent-Logs-Url: https://github.com/maiertech/website/sessions/dee3370b-f3cc-474a-a282-4520d1a8a160
1 parent 8d86d54 commit 9ca2d85

2 files changed

Lines changed: 16 additions & 5 deletions

File tree

src/hooks.server.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
import type { Handle } from '@sveltejs/kit';
22

3+
// Permanent redirects for renamed routes.
4+
const redirects: Record<string, string> = {
5+
'/notes/a-lockfile-for-agentic-skills': '/notes/a-lockfile-for-agent-skills'
6+
};
7+
38
export const handle: Handle = async ({ event, resolve }) => {
9+
// Handle permanent redirects.
10+
const redirectTarget = redirects[event.url.pathname];
11+
if (redirectTarget) {
12+
return new Response(null, { status: 301, headers: { Location: redirectTarget } });
13+
}
14+
415
// Preload web fonts.
516
const response = await resolve(event, {
617
preload: ({ type, path }) => {

src/routes/notes/(2026)/a-lockfile-for-agentic-skills/+page.md renamed to src/routes/notes/(2026)/a-lockfile-for-agent-skills/+page.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: A lockfile for agentic skills
3-
description: Learn how skills-lock.json turns agentic skills into managed project dependencies.
2+
title: A lockfile for agent skills
3+
description: Learn how skills-lock.json turns agent skills into managed project dependencies.
44
publishedDate: 2026-03-19
55
link: https://github.com/vercel-labs/skills
66
---
77

8-
I recently started exploring [agentic skills](https://agentskills.io/home). A skill is a Markdown
8+
I recently started exploring [agent skills](https://agentskills.io/home). A skill is a Markdown
99
file with some metadata that describes a task or best practice, e.g. how to use SvelteKit's new
1010
[remote functions](https://svelte.dev/docs/kit/remote-functions). The nice thing about skills is
1111
that they can be shared and reused.
1212

13-
Vercel's [Skills.sh](https://skills.sh/) is a registry for skills. It is to agentic skills what the
13+
Vercel's [Skills.sh](https://skills.sh/) is a registry for skills. It is to agent skills what the
1414
[NPM registry](https://www.npmjs.com/) is to NPM packages. Vercel also provides a CLI called
1515
`skills` to install skills from the registry into your project's `.agents/skills` folder. If you
1616
live on the cutting edge of AI, nothing newsworthy here.
@@ -23,5 +23,5 @@ skill updates with `npx skills check`.
2323

2424
There are still some rough edges, e.g. `npx skills remove` does not update the lockfile.
2525

26-
But beyond the teething problems it's fascinating to see that agentic skills are evolving into
26+
But beyond the teething problems it's fascinating to see that agent skills are evolving into
2727
managed project dependencies.

0 commit comments

Comments
 (0)