Agent Skills for pragmatic, human-centered software development. Compatible with Claude Code, Cursor, Cline, OpenAI Codex, and other agents supporting the Agent Skills specification.
Subscribe to Web Reactiva Newsletter — Weekly insights on web development, AI tools, and the Malandriner philosophy.
The Malandriner Manifesto was born in the Web Reactiva community. It's a pragmatic, human-centered approach to software development in the AI era:
- Hands on the keyboard — Learning happens through practice, not theory
- Level up like it's a game — Make learning fun, celebrate small wins
- Your stumbles, my challenges — Every mistake becomes learning for all
- Break the bad rules — Build your own path, question dogma
- Speak Malandriner — Belong to a tribe that gets it
These skills bring this philosophy to your AI coding assistants.
| Skill | Description | Install |
|---|---|---|
| malandriner-developer | Mentorship and guidance following the Malandriner Manifesto philosophy. Human-centered code reviews, AI-assisted development, and team culture practices. | npx skills add https://github.com/webreactiva-devs/malandriner-agents --skill malandriner-developer |
| junior-ai-mentor | Practical guide for junior developers leveraging AI as a professional tool. Covers vibe coding, prompt patterns, and career growth. | npx skills add https://github.com/webreactiva-devs/malandriner-agents --skill junior-ai-mentor |
| build-your-path | Transforms learning content into actionable Build-Do-Reflect iteration plans. Turns passive advice into concrete, buildable cycles over 4-8 weeks. | npx skills add https://github.com/webreactiva-devs/malandriner-agents --skill build-your-path |
| create-challenges | Transforms learning content into bite-sized, progressive challenges. Each challenge has 3-5 steps max and is completable in 1-3 hours. | npx skills add https://github.com/webreactiva-devs/malandriner-agents --skill create-challenges |
npx skills add https://github.com/webreactiva-devs/malandriner-agents --skill malandriner-developerClone the repository and copy the desired skill folder to your agent's skills directory:
git clone https://github.com/webreactiva-devs/malandriner-agents.git
cp -r malandriner-agents/skills/malandriner-developer ~/.claude/skills/malandriner-agents/
├── README.md # This file (repository index)
├── LICENSE # MIT License
├── .gitignore
└── skills/ # All skills live here
├── README.md # Skills index and comparison
├── malandriner-developer/ # Malandriner philosophy skill
│ ├── SKILL.md # Main skill instructions
│ └── AGENTS.md # Compiled guidelines
├── junior-ai-mentor/ # Junior AI mentorship skill
│ ├── SKILL.md # Main skill instructions
│ ├── AGENTS.md # Compiled guidelines
│ └── references/ # Detailed reference docs
│ ├── tools-comparison.md
│ └── prompt-patterns.md
├── build-your-path/ # Learning-to-action planner
│ └── SKILL.md # Main skill instructions
└── create-challenges/ # Bite-sized challenge creator
└── SKILL.md # Main skill instructions
- Create a new directory under
skills/:
mkdir -p skills/my-new-skill- Create the required
SKILL.mdwith frontmatter:
---
name: my-new-skill
description: Description of what this skill does and when to use it.
license: MIT
metadata:
author: your-name
version: "1.0.0"
---
# My New Skill
Instructions for the agent...-
(Optional) Add supporting files:
AGENTS.md- Compiled guidelines for agentsreferences/- Detailed reference documentation
-
Update this README to include your new skill in the table.
Each skill follows the Agent Skills Specification:
SKILL.md- Main skill file with YAML frontmatter and instructions
---
name: skill-name # Must match directory name
description: "..." # What it does and when to use it
------
license: MIT
metadata:
author: your-name
version: "1.0.0"
category: mentorship
tags: malandriner, web-reactiva, ai-development
---| Directory | Purpose |
|---|---|
references/ |
Detailed documentation loaded on-demand |
rules/ |
Context-specific rules with glob patterns |
scripts/ |
Executable scripts the agent can run |
assets/ |
Templates, images, data files |
These skills are compatible with:
| Agent | Status |
|---|---|
| Claude Code | Fully supported |
| Cursor | Fully supported |
| Cline | Fully supported |
| OpenAI Codex | Compatible |
| GitHub Copilot | Compatible |
| Windsurf | Compatible |
Contributions are welcome! Please:
- Fork the repository
- Create a new skill in
skills/your-skill-name/ - Follow the Agent Skills Specification
- Add your skill to the table in this README
- Submit a pull request
- Keep
SKILL.mdunder 500 lines (usereferences/for detailed docs) - Use progressive disclosure (metadata -> instructions -> references)
- Include clear examples in your instructions
- Embrace the Malandriner philosophy: practical, human-centered, no gatekeeping
MIT License - see LICENSE for details.
- Web Reactiva - Home of the Malandriner Community
- Web Reactiva Newsletter - Weekly insights
- Agent Skills Specification
- Skills.sh Directory
Built with love for the open web and the Malandriner Community of Web Reactiva
Made by Dani Primo — @webreactiva-devs