A collection of AI agent skills for Adynato projects, following the Agent Skills specification.
# Install all skills
npx add-skill adynato/skills
# Install specific skills
npx add-skill adynato/skills --skill adynato-seo --skill adynato-web
# Install globally (available across all projects)
npx add-skill adynato/skills -g
# Install to specific agents
npx add-skill adynato/skills -a claude-code -a cursor| Skill | Description |
|---|---|
| adynato-coding | General coding conventions for readable, clean code with clear naming and consistent lint/format adherence |
| adynato-omp-mcp | OMP MCP setup conventions using .omp/mcp.json, .gitignore, and Atlassian Rovo examples |
| adynato-atlassian | Atlassian link handling via MCP for Jira and Confluence instead of browser automation |
| adynato-seo | SEO requirements including LD+JSON schema.org, backlinks, further reading sections, meta tags, and Open Graph |
| adynato-web | Web development conventions, image optimization with img4web, component patterns, and styling |
| adynato-mobile | Mobile app development with React Native and Expo - navigation, native APIs, performance |
| adynato-web-api | Web API patterns for Next.js - route handlers, validation, auth, error handling |
| adynato-mobile-api | API integration for mobile apps - TanStack Query, auth flows, offline support |
| adynato-github | GitHub workflow using gh CLI - thorough PR descriptions, stacked PRs for large deliverables |
| adynato-vercel | Vercel deployment and configuration - env vars, vercel.json, common errors, CI/CD setup |
| adynato-cloudflare | Cloudflare Workers/Pages deployment - wrangler CLI, reading logs, KV/D1/R2, debugging |
| adynato-aimake | AI-powered delivery pipeline - MCP integration, card AI, agentic kanban boards, tool usage |
Skills activate automatically when your AI agent detects relevant tasks. No explicit invocation needed.
Trigger phrases:
- "Refactor this messy function" → activates adynato-coding skill (clean code, naming, linting)
- "Set up Atlassian MCP for this repo" → activates adynato-omp-mcp skill (
.omp/mcp.json,.gitignore, Atlassian example) - "Read this Jira ticket from atlassian.net" → activates adynato-atlassian skill (use Atlassian MCP, not browser automation)
- "Add an image to the hero section" → activates adynato-web skill (img4web guidance)
- "Create a blog post" → activates adynato-seo skill (LD+JSON, backlinks, further reading)
- "Build a new API endpoint" → activates adynato-web-api skill
- "Fetch data from the API" → activates adynato-mobile-api skill
- "Add a new screen to the app" → activates adynato-mobile skill
- "Create a PR for this feature" → activates adynato-github skill (stacked PRs, descriptions)
- "Deploy to Vercel" → activates adynato-vercel skill (env vars, errors, CI/CD)
- "Debug this Cloudflare Worker" → activates adynato-cloudflare skill (wrangler tail, logs)
- "Connect to aimake via MCP" → activates adynato-aimake skill (MCP tools, cards, boards)
skills/
├── adynato-coding/
│ └── SKILL.md
├── adynato-omp-mcp/
│ └── SKILL.md
├── adynato-atlassian/
│ └── SKILL.md
├── adynato-seo/
│ ├── SKILL.md
│ └── references/
│ └── SCHEMAS.md # LD+JSON templates
├── adynato-web/
│ └── SKILL.md
├── adynato-mobile/
│ └── SKILL.md
├── adynato-web-api/
│ └── SKILL.md
├── adynato-mobile-api/
│ └── SKILL.md
├── adynato-github/
│ └── SKILL.md
├── adynato-vercel/
│ └── SKILL.md
├── adynato-cloudflare/
│ └── SKILL.md
└── adynato-aimake/
└── SKILL.md
We recommend also installing these skills from the community:
npx add-skill vercel-labs/agent-skills| Skill | Description |
|---|---|
| react-best-practices | 40+ performance optimization rules for React and Next.js |
| frontend-design | 100+ UI code audit rules for accessibility, performance, and UX |
npx add-skill expo/skillsSkills for building, deploying, and debugging Expo apps. Fine-tuned for Claude but works with any AI agent.
npx add-skill anthropics/skillsOfficial example skills from the creators of the Agent Skills specification.
These skills work with:
- Claude Code
- Cursor
- Codex
- OpenCode
- Windsurf
- Gemini CLI
- GitHub Copilot
- And more...
- Create a new directory in
skills/withadynato-prefix - Add a
SKILL.mdwith required frontmatter (name,description) - Optionally add
scripts/,references/, orassets/directories - Submit a pull request
See the Agent Skills Specification for full format details.
MIT