From 22036afc4d5388ac0f1f4c819012bb5c55939ff6 Mon Sep 17 00:00:00 2001 From: Robotizing <105998754+Robotizing@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:22:13 +0200 Subject: [PATCH 1/2] Added create-note-in-notes pipeline --- pipelines/create-note-in-notes/meta.json | 19 +++++++++++++++++++ pipelines/create-note-in-notes/pipeline.json | 7 +++++++ 2 files changed, 26 insertions(+) create mode 100644 pipelines/create-note-in-notes/meta.json create mode 100644 pipelines/create-note-in-notes/pipeline.json diff --git a/pipelines/create-note-in-notes/meta.json b/pipelines/create-note-in-notes/meta.json new file mode 100644 index 0000000..7a419f3 --- /dev/null +++ b/pipelines/create-note-in-notes/meta.json @@ -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" + } +} diff --git a/pipelines/create-note-in-notes/pipeline.json b/pipelines/create-note-in-notes/pipeline.json new file mode 100644 index 0000000..b8d407b --- /dev/null +++ b/pipelines/create-note-in-notes/pipeline.json @@ -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" +} \ No newline at end of file From bea29adfc5c30656fd9a11d7c67c0b43e35d95a9 Mon Sep 17 00:00:00 2001 From: Robotizing <105998754+Robotizing@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:32:41 +0200 Subject: [PATCH 2/2] Added create-note-in-notes pipeline to index --- INDEX.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/INDEX.json b/INDEX.json index 61e2f6a..0db32bd 100644 --- a/INDEX.json +++ b/INDEX.json @@ -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" } ] }