├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_CN.md ├── deploying-to-production ├── CHECKLIST.md ├── SKILL.md ├── TROUBLESHOOTING.md └── scripts │ ├── create-github-repo.sh │ └── deploy-to-vercel.sh ├── doc-sync-tool ├── .gitignore ├── EXAMPLES.md ├── INDEX.md ├── QUICKSTART.md ├── README.md ├── SKILL.md ├── package.json ├── rename-quick.js ├── rename-to-uppercase.sh ├── run-sync.sh ├── run-watch.sh ├── sync.js ├── test.sh └── watch.js ├── google-official-seo-guide ├── SKILL.md └── references │ ├── apis.md │ ├── appearance.md │ ├── crawling.md │ ├── fundamentals.md │ ├── guides.md │ ├── index.md │ ├── indexing.md │ ├── other.md │ └── specialty.md ├── internationalizing-websites ├── SKILL.md ├── WORKFLOW.md ├── reference │ ├── hreflang-guide.md │ ├── locale-codes.md │ └── seo-checklist.md └── scripts │ ├── i18n-add-languages.mjs │ └── i18n-add-schema.js ├── official-skills └── README.md ├── shipany ├── SKILL.md └── references │ ├── api.md │ ├── authentication.md │ ├── components.md │ ├── configuration.md │ ├── database.md │ ├── deployment.md │ ├── features.md │ ├── getting_started.md │ ├── index.md │ ├── internationalization.md │ ├── other.md │ └── payment.md └── web-performance-seo └── README.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/README_CN.md -------------------------------------------------------------------------------- /deploying-to-production/CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/deploying-to-production/CHECKLIST.md -------------------------------------------------------------------------------- /deploying-to-production/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/deploying-to-production/SKILL.md -------------------------------------------------------------------------------- /deploying-to-production/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/deploying-to-production/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /deploying-to-production/scripts/create-github-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/deploying-to-production/scripts/create-github-repo.sh -------------------------------------------------------------------------------- /deploying-to-production/scripts/deploy-to-vercel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/deploying-to-production/scripts/deploy-to-vercel.sh -------------------------------------------------------------------------------- /doc-sync-tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/.gitignore -------------------------------------------------------------------------------- /doc-sync-tool/EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/EXAMPLES.md -------------------------------------------------------------------------------- /doc-sync-tool/INDEX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/INDEX.md -------------------------------------------------------------------------------- /doc-sync-tool/QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/QUICKSTART.md -------------------------------------------------------------------------------- /doc-sync-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/README.md -------------------------------------------------------------------------------- /doc-sync-tool/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/SKILL.md -------------------------------------------------------------------------------- /doc-sync-tool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/package.json -------------------------------------------------------------------------------- /doc-sync-tool/rename-quick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/rename-quick.js -------------------------------------------------------------------------------- /doc-sync-tool/rename-to-uppercase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/rename-to-uppercase.sh -------------------------------------------------------------------------------- /doc-sync-tool/run-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/run-sync.sh -------------------------------------------------------------------------------- /doc-sync-tool/run-watch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/run-watch.sh -------------------------------------------------------------------------------- /doc-sync-tool/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/sync.js -------------------------------------------------------------------------------- /doc-sync-tool/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/test.sh -------------------------------------------------------------------------------- /doc-sync-tool/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/doc-sync-tool/watch.js -------------------------------------------------------------------------------- /google-official-seo-guide/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/SKILL.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/apis.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/appearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/appearance.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/crawling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/crawling.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/fundamentals.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/guides.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/index.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/indexing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/indexing.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/other.md -------------------------------------------------------------------------------- /google-official-seo-guide/references/specialty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/google-official-seo-guide/references/specialty.md -------------------------------------------------------------------------------- /internationalizing-websites/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/SKILL.md -------------------------------------------------------------------------------- /internationalizing-websites/WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/WORKFLOW.md -------------------------------------------------------------------------------- /internationalizing-websites/reference/hreflang-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/reference/hreflang-guide.md -------------------------------------------------------------------------------- /internationalizing-websites/reference/locale-codes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/reference/locale-codes.md -------------------------------------------------------------------------------- /internationalizing-websites/reference/seo-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/reference/seo-checklist.md -------------------------------------------------------------------------------- /internationalizing-websites/scripts/i18n-add-languages.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/scripts/i18n-add-languages.mjs -------------------------------------------------------------------------------- /internationalizing-websites/scripts/i18n-add-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/internationalizing-websites/scripts/i18n-add-schema.js -------------------------------------------------------------------------------- /official-skills/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/official-skills/README.md -------------------------------------------------------------------------------- /shipany/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/SKILL.md -------------------------------------------------------------------------------- /shipany/references/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/api.md -------------------------------------------------------------------------------- /shipany/references/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/authentication.md -------------------------------------------------------------------------------- /shipany/references/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/components.md -------------------------------------------------------------------------------- /shipany/references/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/configuration.md -------------------------------------------------------------------------------- /shipany/references/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/database.md -------------------------------------------------------------------------------- /shipany/references/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/deployment.md -------------------------------------------------------------------------------- /shipany/references/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/features.md -------------------------------------------------------------------------------- /shipany/references/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/getting_started.md -------------------------------------------------------------------------------- /shipany/references/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/index.md -------------------------------------------------------------------------------- /shipany/references/internationalization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/internationalization.md -------------------------------------------------------------------------------- /shipany/references/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/other.md -------------------------------------------------------------------------------- /shipany/references/payment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/shipany/references/payment.md -------------------------------------------------------------------------------- /web-performance-seo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/littleben/awesomeAgentskills/HEAD/web-performance-seo/README.md --------------------------------------------------------------------------------