theaayushstha1/agentic-skills · Archived

quick-note

Fast note capture to structured markdown files. Use when the user says "note this", "quick note", "jot down", "save this thought", "remember this", "write this down", or wants to quickly save a note or idea.

First seen Feb 27, 2026

Installation

$ npx skills add theaayushstha1/agentic-skills --skill quick-note

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from theaayushstha1/agentic-skills.

npx skills add theaayushstha1/agentic-skills

Browse all from theaayushstha1/agentic-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

License MIT
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,591 B
  • docs SUMMARY.md 225 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Quick Note

Capture notes quickly to organized markdown files in ~/notes/.

Command Routing

User Says Action
"note this [content]" Save note with auto timestamp
"quick note [content] #tag" Save note with tags
"show my notes" / "today's notes" List notes from today
"notes from [date]" List notes from specific date

Workflow: Save Note

Step 1: Parse Input

Extract from user input:

  • Content: The note text
  • Tags: Any #hashtag words (e.g., #gaudon, #urgent, #learning)
  • Project: If tagged with a project name, link to project

Step 2: Write to File

Append to ~/notes/YYYY-MM-DD.md (create if doesn't exist):

## HH:MM - [Tags]

[Note content]

---

Example file ~/notes/2026-02-25.md:

# Notes - February 25, 2026

## 10:30 - #gaudon #urgent

Fix auth bug in GAUDON before client call at 2pm

---

## 14:15 - #learning

Check out LangGraph for agent orchestration - saw interesting thread on Twitter

---

## 16:00 - #job-search

Amazon recruiter responded - need to reply by Thursday

---

Step 3: Create File If New

If the daily file doesn't exist, create it with a header:

# Notes - [Month Day, Year]

Then append the note.

Step 4: Confirm

Saved note to ~/notes/2026-02-25.md at 10:30 AM
Tags: #gaudon #urgent

Workflow: Read Notes

Today's Notes

Read ~/notes/[today's date].md and display contents.

Specific Date

Read ~/notes/[requested date].md and display.

Search Notes

Use Grep to search across all note files:

Grep pattern="search term" path=~/notes/

File Structure

~/notes/
├── 2026-02-25.md
├── 2026-02-24.md
├── 2026-02-23.md
└── ...

Each file is a daily log with timestamped entries.

Tag Conventions

Common tags:

  • #urgent - Time-sensitive items
  • #gaudon - GAUDON freelance project
  • #job-search - Job application related
  • #learning - Things to learn/explore
  • #idea - Project or feature ideas
  • #bug - Bugs to fix
  • #meeting - Meeting notes

Error Handling

Error Solution
~/notes/ doesn't exist Create directory automatically
Permission error Check file permissions
No notes for date Report "No notes found for [date]"