sme-skills
v1.0.0
Published
CLI to install SME skills from GitHub repositories
Readme
SME Skills
A collection of persona-driven Agent Skills for SME (Subject Matter Expert) roles, alongside a CLI tool to easily install them into your agent workflows.
The CLI
You can install these skills directly from GitHub into your local agent environment using the sme-skills CLI.
Usage
You can run the CLI via npx (once published) or by linking it locally:
Install all skills:
npx sme-skills@latest add hoangcongst/sme_skillsInstall a specific skill:
npx sme-skills@latest add hoangcongst/sme_skills --skill=business-analystBy default, the CLI will extract the skills into the ./.agents/skills/ directory in your current working folder.
Available Skills
All agent skills are located in the skills/ directory:
backend-developerbusiness-analystdata-analystmarketing-specialistproject-managerqa-qc-engineersocial-content-creatorsoftware-architectui-ux-designer
Note: For the specifically related skills (backend-developer, business-analyst, project-manager, qa-qc-engineer), the CLI will automatically clone the ai-friendly-documentation-standard repository inside the installed skill directory to provide a structural standard for the persona.
Development
If you'd like to test the CLI locally before publishing:
- Clone the repository.
- Run
npm installto install dependencies. - Run
npm linkto make thesme-skillscommand available globally. - Test the command:
sme-skills add hoangcongst/sme_skills --skill=data-analyst
