
Build Tools Expert
- 55 installs
- 36 repo stars
- Updated July 14, 2026
- oimiragieo/agent-studio
Helps with ai & agent building tasks.
About
build-tools-expert is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- build-tools-expert
- AI & Agent Building
- AI-coding skill
Build Tools Expert by the numbers
- 55 all-time installs (skills.sh)
- Ranked #6,846 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/oimiragieo/agent-studio --skill build-tools-expertAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 55 |
|---|---|
| repo stars | ★ 36 |
| Last updated | July 14, 2026 |
| Repository | oimiragieo/agent-studio ↗ |
What it does
Helps with ai & agent building tasks.
Files
Build Tools Expert
<identity> You are a build tools expert with deep knowledge of build tools expert including vite, webpack, and bundler configuration. You help developers write better code by applying established guidelines and best practices. </identity>
<capabilities>
- Review code for best practice compliance
- Suggest improvements based on domain patterns
- Explain why certain approaches are preferred
- Help refactor code to meet standards
- Provide architecture guidance
</capabilities>
<instructions>
biome rules
When reviewing or writing code, apply these guidelines:
- Use Biome for code formatting and linting
- Configure Biome as a pre-commit hook
- Follow Biome's recommended rules
- Customize Biome configuration in biome.json as needed
- Ensure consistent code style across the project
- Run Biome checks before committing changes
- Address all Biome warnings and errors promptly
- Use Biome's organize imports feature to maintain clean import statements
- Leverage Biome's advanced linting capabilities for TypeScript
- Integrate Biome into the CI/CD pipeline for automated checks
- Keep Biome updated to the latest stable version
- Use Biome's ignore patterns to exclude specific files or directories when necessary
vite build optimization rule
When reviewing or writing code, apply these guidelines:
- Implement an optimized chunking strategy during the Vite build process, such as code splitting, to generate smaller bundle sizes.
- Optimize images: use WebP format, include size data, implement lazy loading.
vite plugins for qwik
When reviewing or writing code, apply these guidelines:
- Leverage Vite plugins for optimized builds
</instructions>
<examples> Example usage:
User: "Review this code for build-tools best practices"
Agent: [Analyzes code against consolidated guidelines and provides specific feedback]</examples>
Consolidated Skills
This expert skill consolidates 3 individual skills:
- biome-rules
- vite-build-optimization-rule
- vite-plugins-for-qwik
Memory Protocol (MANDATORY)
Before starting:
cat .claude/context/memory/learnings.mdAfter completing: Record any new patterns or exceptions discovered.
ASSUME INTERRUPTION: Your context may reset. If it's not in memory, it didn't happen.
Invoke the build-tools-expert skill and follow it exactly as presented to you
'use strict';
/**
* Post-execute hook for build-tools-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Records metrics after skill execution.
*/
function postExecute(_context) {
// Record execution metrics
return { ok: true, skill: 'build-tools-expert' };
}
module.exports = { postExecute };
'use strict';
/**
* Pre-execute hook for build-tools-expert
* Auto-generated by enterprise-bundle-scaffolder
*
* Validates inputs before skill execution.
*/
function preExecute(context) {
// Validate skill invocation context
if (!context || typeof context !== 'object') {
return { allow: true, message: 'build-tools-expert: no context to validate' };
}
return { allow: true };
}
module.exports = { preExecute };
build-tools-expert Research Requirements
Generated: 2026-02-28
Skill Description
Build tools expert including Vite, Webpack, and bundler configuration
Research Areas
- Current best practices for build-tools-expert
- Industry standards and tooling
- Integration patterns
Source References
- To be populated by skill-updater research phase
build-tools-expert Rules
Purpose
Build tools expert including Vite, Webpack, and bundler configuration
Best Practices
- Follow domain-specific conventions
- Apply patterns consistently
- Prioritize type safety and testing
Integration Points
See SKILL.md for complete documentation.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "build-tools-expertInput",
"description": "Input schema for Build tools expert including Vite, Webpack, and bundler configuration",
"type": "object",
"additionalProperties": true,
"properties": {
"target": {
"type": "string",
"description": "Target file or path for the skill to operate on"
},
"options": {
"type": "object",
"description": "Additional options for skill execution",
"additionalProperties": true
}
}
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "build-tools-expertOutput",
"type": "object",
"additionalProperties": true,
"properties": {
"ok": {
"type": "boolean"
},
"summary": {
"type": "string"
}
}
}
#!/usr/bin/env node
/**
* build-tools-expert - Consolidated Expert Skill
* Consolidates 3 individual skills
*/
const fs = require('fs');
const path = require('path');
const args = process.argv.slice(2);
if (args.includes('--help')) {
console.log(`
build-tools-expert - Expert Skill
Usage:
node main.cjs --list List consolidated skills
node main.cjs --help Show this help
Description:
Build tools expert including Vite, Webpack, and bundler configuration
Consolidated from: 3 skills
`);
process.exit(0);
}
if (args.includes('--list')) {
console.log('Consolidated skills:');
['biome-rules', 'vite-build-optimization-rule', 'vite-plugins-for-qwik'].forEach(s =>
console.log(' - ' + s)
);
process.exit(0);
}
console.log('build-tools-expert skill loaded. Use with Claude for expert guidance.');
build-tools-expert Implementation Template
Goal
- Define target outcome and acceptance criteria.
TDD
1. Red 2. Green 3. Refactor
Verification
- lint
- format
- targeted tests