Manage stickies as markdown files — create new, read, list, or delete. Use when the user mentions "sticky", "stickies", or wants to take a quick note or save a reminder.
93
92%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
$ACTION.$ACTION matches one of the actions, follow the action's instructions.$ACTION is empty or does not match an action, list the available actions.Important: stickies live in <cwd>/.ai/stickies (current working directory).
Create a new sticky from information the user provides or from your current context.
.md file in the stickies folderRead a sticky so the user can review or work with its content.
Remove a sticky the user no longer needs.
Show all stickies as a table sorted by date (newest first).
.md files in the stickies folderfix-login-redirect → Fix login redirect)| Date | Title |
| ---------- | ------------------ |
| 2026-03-22 | Fix login redirect |
| 2026-03-20 | API rate limits |Each sticky is a standalone .md file. The filename encodes the date and title with syntax YYYY-MM-DD-title-in-snake-case.md.
Example: a sticky titled "Fix login redirect" taken on 2026-03-22 becomes 2026-03-22-fix-login-redirect.md.
Prefix the sticky with this frontmatter:
---
title: <title>
description: <100-character-max-description>
---Example:
---
title: Fix Login Redirect
description: Thoughts on how to fix the login redirect
---
The redirect after login was pointing to `/home` instead of `/dashboard`...3c16e2d
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.