From cf0ef1b4414047abb28c7521fd3a71084646bf7e Mon Sep 17 00:00:00 2001 From: Connor Rhodes Date: Fri, 22 May 2026 13:44:49 -0500 Subject: [PATCH] Add create-project-note skill --- _skill-index.md | 7 +++++++ create-project-note/SKILL.md | 38 ++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 create-project-note/SKILL.md diff --git a/_skill-index.md b/_skill-index.md index 79e0cc7..113c1f8 100644 --- a/_skill-index.md +++ b/_skill-index.md @@ -26,6 +26,7 @@ description: Master index of all skills in your robot assistant system. Your ass | "submit an expense," "navan expense," "file an expense," "upload receipt" | **navan-expense** | | "update the SE radar report," "add a column to the SE report," "edit the vNotes report," "run the SE radar report," "check SE validation stage," "update technical validation" | **update-salesforce-tech-validation** | | "create a meeting note," "make meeting notes," "add a meeting to my daily note," "set up a meeting note" | **meeting-notes** | +| "create a project note," "make a project note," "new project note" | **create-project-note** | | "summarize account notes," "summarize meeting notes," "prepare account summary," "executive summary," "write an SE note" | **se-note** | | "review voice notes," "what voice notes do I have," "show me today's voice notes," "review my dictations" | **review-voice-notes** | | "proofread this social message," "polish this DM," "clean up this slack message," "proofread this text," "proofread this message," "proofread this slack" | **proof-social-comms** | @@ -134,6 +135,12 @@ description: Master index of all skills in your robot assistant system. Your ass **File:** `skills/meeting-notes/SKILL.md` **Dependencies:** None +### Create Project Note +**Purpose:** Create a new project note in the `proj/` folder with proper frontmatter conventions. +**Triggers:** "create a project note," "make a project note," "new project note" +**File:** `skills/create-project-note/SKILL.md` +**Dependencies:** None + ### Review Voice Notes **Purpose:** Query MongoDB for voice notes matching a given date, present them as a numbered summary table, and act on whichever ones the user selects by number. **Triggers:** "review voice notes," "what voice notes do I have," "show me today's voice notes," "review my dictations" diff --git a/create-project-note/SKILL.md b/create-project-note/SKILL.md new file mode 100644 index 0000000..02155e1 --- /dev/null +++ b/create-project-note/SKILL.md @@ -0,0 +1,38 @@ +--- +name: create-project-note +description: | + Create a new project note in the proj/ folder. + + Triggers when user mentions: + - "create a project note" + - "make a project note" + - "new project note" +--- + +## Quick Usage + +### Create a project note + +1. Create a new markdown file in `proj/` with the naming convention: `proj/.md` +2. Add YAML frontmatter with any known fields (see below) +3. Add the project title as an H1 +4. Add any provided links, descriptions, or context + +## Frontmatter Reference + +Common frontmatter fields for project notes: + +```yaml +--- +tags: work # Comma-separated tags (e.g., work, personal, homelab) +type: escalation # Note type (e.g., escalation, idea, tracking, project) +status: active # Current status (e.g., active, idea, done, blocked) +--- +``` + +These are not all required. Only include what's provided or known. Add new fields here as conventions develop. + +## Notes + +- Project notes live in the `proj/` directory inside the notes workspace +- The `projects.md` file auto-lists them via a SilverBullet query