Awesome_SEO_Writing_Skill
Share the awesome skills for SEO Writing. All the skills are developed by Flaq AI Team
File Explorer
- r2.config.example.json
- linkedin-article-template.md
- linkedin-business-depth-and-humanization.md
- linkedin-review-rubric.md
- linkedin-topic-research.md
- audit-linkedin-markdown.mjs
- SKILL.md
- medium-article-template.md
- medium-review-rubric.md
- medium-topic-research.md
- audit-medium-markdown.mjs
- SKILL.md
- fact-check-and-style.md
- humanization.md
- output-packaging.md
- r2-image-upload.md
- r2-security.md
- seo-article-template.md
- seo-audit-checklist.md
- upload-r2.mjs
- style-profile.example.md
- frameworks-and-hooks.md
- mobile-writing-and-packaging.md
- wechat-brief-and-evidence.md
- wechat-review-rubric.md
- audit-wechat-markdown.mjs
- SKILL.md
- SKILL.md
- .gitignore
- LICENSE
- README.md
- README_ar.md
- README_de.md
- README_es.md
- README_fr.md
- README_hi.md
- README_id.md
- README_it.md
- README_ja.md
- README_ko.md
- README_nl.md
- README_pl.md
- README_pt.md
- README_ru.md
- README_th.md
- README_tr.md
- README_tw.md
- README_vi.md
- README_zh.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
complete
View Details ▼
complete
Get and set argument autocompletion rules of shell commands in Bash.
The specified completions will be invoked when `<Tab>` is pressed in Bash.
See also: `compgen`, `compopt`.
complete -F {{function}} {{command}}
Set arguments of a command to autocomplete through a function (completion response is sent in `$COMPREPLY` variable):
complete -C {{autocomplete_command}} {{command}}
Set arguments of a command to autocomplete through another command (`$1` is the command, `$2` is the argument the cursor is on, and `$3` is the argument preceding the cursor):
complete -b {{command}}
Set arguments of a command to autocomplete to shell builtins:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
task
View Details ▼
task
To-do list manager.
task add {{description}} due:{{tomorrow}}
Add a new task which is due tomorrow:
task {{task_id}} modify priority:{{H|M|L}}
Update a task's priority:
task {{task_id}} done
Complete a task:
