A comprehensive collection of AI agent skills organized as a virtual development team. These skills provide structured knowledge and workflows for software development tasks across all domains: product management, quality assurance, technical development, infrastructure, and data/AI.
Install all skills with a single command:
npx skills add javalenciacai/develop-skillsOr install specific skills:
# Install the CTO orchestrator (entry point)
npx skills add javalenciacai/develop-skills --skill cto
# Install product management skills
npx skills add javalenciacai/develop-skills --skill pm --skill po --skill ux
# Install development skills
npx skills add javalenciacai/develop-skills --skill tl --skill architect --skill dev
# Install quality assurance skills
npx skills add javalenciacai/develop-skills --skill qal --skill qa --skill secops
# Install infrastructure skills
npx skills add javalenciacai/develop-skills --skill infralead --skill devops --skill dba
# Install data/AI skills
npx skills add javalenciacai/develop-skills --skill datalead --skill dataeng --skill aieng| Skill | Description |
|---|---|
| cto | Main entry point. Analyzes tasks and delegates to appropriate teams |
| pm | Product management orchestrator. Coordinates requirements and design |
| qal | Quality assurance orchestrator. Coordinates testing and security |
| tl | Technical lead orchestrator. Coordinates architecture and development |
| infralead | Infrastructure orchestrator. Coordinates DevOps and database management |
| datalead | Data/AI orchestrator. Coordinates data engineering and AI/ML models |
| Skill | Description |
|---|---|
| po | Product Owner. Defines requirements, user stories, and acceptance criteria |
| ux | UX Designer. Creates interfaces, wireframes, and defines user experience |
| Skill | Description |
|---|---|
| qa | Quality Assurance. Designs tests, validates acceptance criteria, reports bugs |
| secops | Security Operations. Performs security audits and vulnerability assessments |
| Skill | Description |
|---|---|
| architect | Software Architect. Designs architecture and makes technical decisions |
| dev | Developer. Implements features, writes tests, and fixes bugs |
| Skill | Description |
|---|---|
| devops | DevOps Engineer. Manages Docker, CI/CD, and deployments |
| dba | Database Administrator. Manages databases, optimization, and backups |
| Skill | Description |
|---|---|
| dataeng | Data Engineer. Builds data pipelines, ETL, and data warehousing |
| aieng | AI Engineer. Develops AI/ML models, MLOps, and LLM integration |
| Skill | Description |
|---|---|
| find-skills | Helps discover and install additional agent skills |
| skill-creator | Guide for creating new skills |
Once installed, the skills are automatically available to your AI agent. The cto skill acts as the main entry point and will delegate tasks to the appropriate specialized skills.
"Design a new authentication feature"
# β CTO delegates to PM (requirements) β UX (design) β TL (architecture) β Dev (implementation)
"Review this code for security issues"
# β CTO delegates to QAL β SecOps (security audit) β QA (testing)
"Set up a CI/CD pipeline"
# β CTO delegates to InfraLead β DevOps (pipeline setup)
"Build a recommendation engine"
# β CTO delegates to DataLead β AIEng (ML model) β DataEng (data pipeline)This skill collection follows an organizational hierarchy:
CTO (Entry point)
βββ PM (Product)
β βββ PO (Requirements)
β βββ UX (Design)
βββ QAL (Quality)
β βββ QA (Testing)
β βββ SecOps (Security)
βββ TL (Technical)
β βββ Architect (Architecture)
β βββ Dev (Development)
βββ InfraLead (Infrastructure)
β βββ DevOps (CI/CD)
β βββ DBA (Databases)
βββ DataLead (Data/AI)
βββ DataEng (Pipelines)
βββ AIEng (AI/ML Models)
Each skill:
- Has clear domain boundaries
- Knows when to activate
- Can coordinate with related skills
- Provides structured workflows and best practices
Each skill is organized as:
.agents/skills/
βββ {skill-name}/
βββ SKILL.md # Skill definition with YAML frontmatter
Every SKILL.md contains:
- name: Unique identifier
- description: When and how to use the skill
- Instructions and workflows specific to that role
These skills work with all agents that support the Agent Skills format, including:
- Claude Code
- GitHub Copilot
- Cursor
- Windsurf
- Cline
- And 35+ more agents
Want to add or improve a skill? Follow these guidelines:
- Each skill must have a
SKILL.mdwith proper YAML frontmatter - Use clear, descriptive names (lowercase, hyphens)
- Define specific use cases in the description
- Include structured workflows and best practices
MIT
When configuring on GitHub, add these topics for better discoverability:
Required: agent-skills, ai-agents
Recommended: development, orchestration, devops, architecture, product-management, qa-testing, security, data-engineering, machine-learning, claude-code, github-copilot, cursor
See GITHUB-SETUP.md for complete setup instructions.