Skillber is a simple and extensible CLI tool built with TypeScript. It helps automate and organize tasks (called "skills") using a modular and scalable structure.
- Built with TypeScript
- Modular skill system
- Simple command-line interface
- Easily extendable with new skills
git clone https://github.com/codewithdhruba01/Skillber.git
cd Skillber
npm installTo run a skill from the command line:
npm run start -- <skill-name> [options]Example:
npm run start -- greet --name DhrubaTo start development:
npm run devTo build the project:
npm run buildTo run tests (if available):
npm testCreate a new file inside the src/skills/ directory:
export default function mySkill(args: any) {
console.log("Running my skill with args:", args);
}Made with ❤️ by Dhrubaraj