Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions INDEX.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,22 @@
"tags": ["finder"],
"description": "Create a text file with your spoken content. Say 'create text file' followed by the content you want to save. The file will be pasted into the current Finder window.",
"source_url": "https://github.com/tryfreeway/freeway-pipelines/tree/main/pipelines/create-text-file"
},
{
"id": "create-note-in-notes",
"name": "Create Note in Notes",
"version": 1,
"featured": true,
"created_at": "2026-02-25T00:00:00Z",
"updated_at": "2026-02-25T00:00:00Z",
"categories": ["Productivity", "System"],
"author": {
"name": "Robotizing Networks",
"url": "https://robotizing.net"
},
"tags": ["notes", "note", "text"],
"description": "Instantly capture fleeting thoughts into Apple Notes. Say 'Note' followed by your idea to save it before it's gone. For example: 'Note the sky looks like a Van Gogh painting'.",
"source_url": "https://github.com/Robotizing/freeway-pipelines/tree/note/pipelines/create-note-in-notes"
}
]
}
19 changes: 19 additions & 0 deletions pipelines/create-note-in-notes/meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": 1,
"created_at": "2026-02-25T00:00:00Z",
"updated_at": "2026-02-25T00:00:00Z",
"featured": true,
"name": "Create Note in Notes",
"author": {
"name": "Robotizing Networks",
"url": "https://robotizing.net"
},
"compatibility": ["macOS"],
"categories": ["Productivity", "System"],
"tags": ["notes", "note", "text"],
"description": "Instantly capture fleeting thoughts into Apple Notes. Say 'Note' followed by your idea to save it before it's gone. For example: 'Note the sky looks like a Van Gogh painting'.",
"trigger": {
"pattern": "note",
"matchType": "startsWith"
}
}
7 changes: 7 additions & 0 deletions pipelines/create-note-in-notes/pipeline.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"enabled" : true,
"heardAs" : "note",
"matchType" : "startsWith",
"name" : "Create Note in Notes",
"shellCommand" : "osascript -e 'tell application \"Notes\" to activate' -e 'tell application \"System Events\" to key code 45 using {command down}'\ntxt=$FREEWAY_TEXT\nif [[ \"$txt\" != \"Note.\" ]]; then\n\ttxt=\"${txt#Note }\"\n\tzsh -c 'str=\"${1#Note*(,)[[:space:]]*}\"; echo \"${str:0:1:u}${str:1}\"' -- \"$txt\"\nfi"
}