monskill

Set of coding assistant skills that help build fully deployed apps on Monad

Instalación
CLI
npx skills add https://github.com/therealharpaljadeja/monskills --skill monskill

Instala esta habilidad con la CLI y comienza a usar el flujo de trabajo SKILL.md en tu espacio de trabajo.

Última actualización 4/24/2026

MONSKILLS

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

Skills

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

Architecture

  • Frontend: Static HTML landing page (index.html)
  • API: Vercel serverless functions (api/)
  • Database: Neon serverless PostgreSQL (anonymous download tracking)
  • Skills: Markdown files served via Vercel routes through a tracking function

See docs/architecture.md for the full system overview and C4 diagrams.

Prerequisites

  • Node.js >= 18
  • A Neon PostgreSQL database
  • A Vercel account for deployment

Setup

# Install dependencies
npm install

# Set environment variables (see .env.example)
cp .env.example .env
# Edit .env with your values

Environment Variables

Variable Required Description
DATABASE_URL Yes Neon PostgreSQL connection string
STATS_SECRET Yes Secret key to access /api/stats

Database Setup

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.

Development

This is a static site with Vercel serverless functions. There's no local dev server needed for the skills themselves (they're just markdown).

Deployment

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.

Documentation

License

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.