[Q&A] #808
What kind of help do you need?Installation or setup Your questionHow can i download all 1900 md files for training purpose i am training the ai model so that you can just call it and it will do the task and i find this repo very useful for this already ran successful test on threes md files Environment and contextNo response What have you already tried?already go through-ed the documentation Before posting
|
Replies: 1 comment 1 reply
|
Hi! The easiest way to get the complete current set is to use a shallow clone: git clone --depth 1 https://github.com/sickn33/agentic-awesome-skills.git
cd agentic-awesome-skills
find . -type f -name "*.md" > markdown-files.txtIf you only want the installable skills in a clean directory, you can also run: npx agentic-awesome-skills --path ./aas-skillsThe current release contains 1,948+ skills, so the count is no longer exactly 1,900. One important note for model training: the repository itself is MIT-licensed, but it aggregates official and community material. Please retain attribution and review the provenance/license metadata in each skill ( |
Hi! The easiest way to get the complete current set is to use a shallow clone:
If you only want the installable skills in a clean directory, you can also run:
The current release contains 1,948+ skills, so the count is no longer exactly 1,900.
One important note for model training: the repository itself is MIT-licensed, but it aggregates official and community material. Please retain attribution and review the provenance/license metadata in each skill (
source,license, andlicense_source) before …