Add create-project-note skill
This commit is contained in:
parent
fdcc687364
commit
cf0ef1b441
2 changed files with 45 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
38
create-project-note/SKILL.md
Normal file
38
create-project-note/SKILL.md
Normal file
|
|
@ -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/<short-description>.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
|
||||
Loading…
Add table
Add a link
Reference in a new issue