https://github.com/codewithdhruba01/skillber
https://github.com/codewithdhruba01/skillber
nodejs npm-package tailwindcss typescript
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codewithdhruba01/skillber
- Owner: codewithdhruba01
- Created: 2025-06-16T04:04:09.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-16T04:29:33.000Z (12 months ago)
- Last Synced: 2025-06-16T05:29:57.303Z (12 months ago)
- Topics: nodejs, npm-package, tailwindcss, typescript
- Language: TypeScript
- Homepage:
- Size: 17.3 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Skillber
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.
## 🚀 Features
- Built with **TypeScript**
- Modular skill system
- Simple command-line interface
- Easily extendable with new skills
## 📦 Installation
```bash
git clone https://github.com/codewithdhruba01/Skillber.git
cd Skillber
npm install
````
## ▶️ Usage
To run a skill from the command line:
```bash
npm run start -- [options]
```
Example:
```bash
npm run start -- greet --name Dhruba
```
## 🛠️ Development
To start development:
```bash
npm run dev
```
To build the project:
```bash
npm run build
```
To run tests (if available):
```bash
npm test
```
## ✨ Creating a New Skill
Create a new file inside the `src/skills/` directory:
```ts
export default function mySkill(args: any) {
console.log("Running my skill with args:", args);
}
```
> Made with ❤️ by [Dhrubaraj](https://github.com/codewithdhruba01)