Set of coding assistant skills that help build fully deployed apps on Monad
npx skills add https://github.com/therealharpaljadeja/monskills --skill monskillInstale esta skill com a CLI e comece a usar o fluxo de trabalho SKILL.md em seu espaço de trabalho.
Knowledge skills for AI agents building on Monad. Each skill is a standalone markdown file that agents fetch and read into their context.
Live site: https://skills.devnads.com
| Skill | Description |
|---|---|
| scaffold | End-to-end guide from idea to production |
| why-monad | Why every blockchain app should be built on Monad |
| addresses | Smart contract addresses for Monad mainnet/testnet |
| wallet | Agent wallet management and Safe multisig |
| wallet-integration | RainbowKit + Wagmi integration for Next.js |
| vercel-deploy | Deploy to Vercel without CLI or auth |
| feedback | Anonymous feedback pipeline for agents using monskills |
index.html)api/)See docs/architecture.md for the full system overview and C4 diagrams.
# Install dependencies
npm install
# Set environment variables (see .env.example)
cp .env.example .env
# Edit .env with your values
| Variable | Required | Description |
|---|---|---|
DATABASE_URL |
Yes | Neon PostgreSQL connection string |
STATS_SECRET |
Yes | Secret key to access /api/stats |
Schema is provisioned via one-time setup endpoints that are removed after use. The current tables are skill_downloads (populated by /api/skill) and feedback (populated by /api/feedback). When adding a new table, temporarily re-add an api/setup.js with the CREATE TABLE IF NOT EXISTS ... statements, hit it once with ?key=$STATS_SECRET, then delete the file.
This is a static site with Vercel serverless functions. There's no local dev server needed for the skills themselves (they're just markdown).
The site deploys to Vercel. Push to main to trigger a deploy.
Ensure DATABASE_URL and STATS_SECRET are set in your Vercel project environment variables.
MIT License
Copyright 2026 Harpalsinh Jadeja
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.