├── .build-and-release.sh ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── alfred-workflow-release.yml │ ├── markdownlint.yml │ ├── pr-title.yml │ └── stale-bot.yml ├── .gitignore ├── .markdownlint.yaml ├── .rsync-exclude ├── 3D656B72-508C-472A-89A5-17C81D76BE04.png ├── 8381EC56-AD14-4D7B-91BF-C21F7828F3EB.png ├── D73C316D-320A-4D1C-8966-F446AE9B64F5.png ├── Justfile ├── LICENSE ├── README.md ├── icon.png ├── info.plist └── scripts ├── fix-word-under-cursor.js ├── select-word.applescript ├── synonym.js └── trigger-apple-intelligence.applescript /.build-and-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.build-and-release.sh -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/alfred-workflow-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/workflows/alfred-workflow-release.yml -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/stale-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.github/workflows/stale-bot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.rsync-exclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/.rsync-exclude -------------------------------------------------------------------------------- /3D656B72-508C-472A-89A5-17C81D76BE04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/3D656B72-508C-472A-89A5-17C81D76BE04.png -------------------------------------------------------------------------------- /8381EC56-AD14-4D7B-91BF-C21F7828F3EB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/8381EC56-AD14-4D7B-91BF-C21F7828F3EB.png -------------------------------------------------------------------------------- /D73C316D-320A-4D1C-8966-F446AE9B64F5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/D73C316D-320A-4D1C-8966-F446AE9B64F5.png -------------------------------------------------------------------------------- /Justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/Justfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/icon.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/info.plist -------------------------------------------------------------------------------- /scripts/fix-word-under-cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/scripts/fix-word-under-cursor.js -------------------------------------------------------------------------------- /scripts/select-word.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/scripts/select-word.applescript -------------------------------------------------------------------------------- /scripts/synonym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/scripts/synonym.js -------------------------------------------------------------------------------- /scripts/trigger-apple-intelligence.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisgrieser/alfred-writing-assistant/HEAD/scripts/trigger-apple-intelligence.applescript --------------------------------------------------------------------------------