# Feature

> Mark a note as important by adding the 'featured' tag.

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

---


# Feature Note

This skill adds the `featured` tag to a specific note to mark it as important or featured.

## Instructions

1.  **Identify Note**
    -   Locate the markdown file corresponding to the user's request (by filename or path).
    -   If the path is not provided, search for the note by title.

2.  **Edit Frontmatter**
    -   Read the file content.
    -   Parse the YAML Frontmatter.
    -   Check the `tags` list.
    -   **Action**:
        -   If `tags` exists: Append `featured` if it's not already present.
        -   If `tags` does not exist: Create the field `tags: [featured]`.

3.  **Save Changes**
    -   Update the file with the modified Frontmatter.
    -   Preserve the rest of the file content exactly as is.

