The largest community-curated directory of pre-built skills and personas for MoltBot. Find the logic you need to make your agent smarter, faster.
- 400+ Skills across 25+ categories
- Fast Search with keyboard shortcuts (⌘K)
- Dark/Light Mode with persistent theme preferences
- Static Generation - No server required, works anywhere
- Mobile Responsive design
- Node.js 18+
- npm or yarn
# Clone the repository
git clone https://github.com/neonone123/moltdirectory.git
cd moltdirectory
# Install dependencies
npm install
# Build the site
node build.jsThe site is static HTML/CSS/JS. After building, simply open index.html in your browser or serve with any static file server:
# Using Python
python -m http.server 8000
# Using Node.js
npx serve .moltdirectory/
├── build.js # Static site generator
├── style.css # Global styles with CSS variables
├── index.html # Generated homepage
├── package.json # Dependencies and scripts
├── [category]/ # Generated category pages
│ └── [skill]/ # Generated skill detail pages
└── start-here/ # Getting started guide
The build script (build.js) fetches the skill registry from the Awesome MoltBot Skills repository and generates:
- Homepage with category grid and search
- Category pages listing skills in each category
- Skill pages with full documentation pulled from GitHub
The site supports dark (default) and light themes. Colors are defined as CSS variables in style.css:
:root {
--bg-primary: #0a0e17;
--accent: #3b82f6;
/* ... */
}
[data-theme="light"] {
--bg-primary: #faf7f2;
--accent: #b45309;
/* ... */
}Edit the icons object in build.js to add SVG icons for new categories.
Contributions are welcome! Here's how you can help:
- Add a Skill - Submit a new skill to the directory
- Report Bugs - Open an issue describing the problem
- Suggest Features - Open an issue with your idea
- Submit PRs - Fork, make changes, and submit a pull request
- Follow existing code style
- Test changes locally before submitting
- Update documentation if needed
This project is licensed under the MIT License - see the LICENSE file for details.
- MoltBot team for the amazing platform
- Awesome MoltBot Skills community
- All skill authors who contribute to the ecosystem
Disclaimer: MoltDirectory is a community-run project and is not affiliated with the official MoltBot team or Peter Steinberger. We are just fans of the lobster. 🦞