Awesome-omni-skill tech-stacks
A skill for managing and applying technology-specific architectural patterns and best practices using predefined templates.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/tech-stacks" ~/.claude/skills/diegosouzapw-awesome-omni-skill-tech-stacks-19acc3 && rm -rf "$T"
manifest:
skills/development/tech-stacks/SKILL.mdsource content
Tech Stacks Skill
This skill provides a collection of architectural blueprints and best practices for various technology stacks. It is designed to ensure that new features follow the established patterns of the project's ecosystem.
Resources
The templates are located in
.agent/skills/tech-stacks/resources/. Available tech stacks include:
- PHP:
,laravel.mdlaravel-filament.md - Frontend:
,vuejs.md
,react.md
,nextjs.md
,nuxtjs.mdflutter.md - Backend API:
,express.md
,fastapi.md
,golang.md
,rust.mdspring-boot.md - Enterprise:
,dotnet.mdodoo.md
Usage Instructions
- Identify the Stack: Determine which technology stack is relevant to the task (e.g., if working on the admin dashboard, refer to
).laravel-filament.md - Review Best Practices: Read the corresponding template in
to understand the data structures, directory patterns, and naming conventions.resources/ - Apply Patterns: Implement code, migrations, or services following the specific rules outlined in the template.
- Validation: Ensure that any new code adheres to the architectural rules of the selected stack.
Best Practices
- Consistency: Always prefer project-specific patterns over generic coding styles.
- Reference: Link to the relevant tech stack documentation when explaining architectural decisions.
- Maintenance: If the project's architecture evolves, update the templates in
to reflect the new standards.resources/