Tech Stack Selection

VerifiedSafe

Guides technology selection decisions to align with the company's opinionated, approved tech stack. It catalogs approved technologies by layer, defines approval tiers (approved, conditional, exception required), and enforces a formal exception process for any technology outside the catalog. Trigger this skill whenever a runtime, framework, database, or infrastructure choice is being made for a project.

Sby Skills Guide Bot
DevelopmentIntermediate
906/2/2026
Claude Code
#tech-stack#technology-selection#architecture#governance#approval

Recommended for

Our review

This skill guides technology selection aligned to the company's opinionated tech stack, following a structured four-step process.

Strengths

  • Enforces architectural consistency with approved technologies
  • Reduces risk of non-compliant choices
  • Provides clear exception process for unapproved technologies
  • Offers a standardized documentation template

Limitations

  • Requires an up-to-date `tech-stack.md` reference file
  • Does not include deep technical evaluation of alternatives
  • May slow down decisions when exceptions are needed
When to use it

Use this skill whenever a technology choice (language, framework, database, etc.) must be made in a project.

When not to use it

Do not use it for purely operational decisions (e.g., minor CI/CD tool choices) or when the approved stack is not yet defined.

Security analysis

Safe
Quality score85/100

The skill only provides guidance for technology selection and does not instruct any execution of commands, external data exfiltration, or destructive actions. It references a static reference file. There is no risk of harm.

No concerns found

Examples

Tech stack for new microservice
We are building a new order-processing microservice. Determine the tech stack: language, framework, messaging, database, and caching. Follow the approved tech stack and flag any exceptions.
Exception request for GraphQL
Our team wants to use GraphQL instead of REST for the customer-facing API. Check if GraphQL is in the approved tech stack. If not, help draft an exception request with justification.
Version risk assessment
Our project plans to use Node.js 18. Verify if this version is supported according to the approved tech stack. Flag any end-of-life risks and suggest alternatives.

name: tech-stack-skill description: Use this skill for technology selection decisions. Trigger on tech stack, technology selection, what language, what framework, approved technologies, tech exception, or any time a technology choice is being made. The company has an opinionated tech stack — always consult this skill before recommending a technology to ensure alignment with approved choices.

Tech Stack Skill

Overview

This skill guides technology selection aligned to the company's opinionated tech stack. The stack defines approved technologies by layer — anything outside the approved list requires a formal exception before it can be used.

Read references/tech-stack.md for the full approved technology catalog, tier definitions, and exception process before making any technology recommendation.


Output

  • Markdown (.md) — Tech Stack section for Solution Intent, or standalone analysis
  • Name file: [initiative-name]-tech-stack.md

Approval Tiers

Technologies fall into one of three tiers (see references/tech-stack.md for the full list):

| Tier | Meaning | |------|---------| | Approved | Standard choice — use without additional review | | Conditionally Approved | Approved for specific use cases only — confirm fit | | Exception Required | Not on the approved list — requires architecture board review |


Process

Step 1: Identify technology decisions needed

From the requirement, list every technology choice that must be made:

  • Runtime language and version
  • Application framework
  • API style (REST, gRPC, GraphQL)
  • Messaging / eventing platform
  • Database(s)
  • Caching
  • UI framework (if applicable)
  • Infrastructure / compute
  • CI/CD tooling
  • Observability stack

Step 2: Match to approved stack

For each decision, look up the approved choice in references/tech-stack.md and document:

| Layer | Decision | Approved Choice | Tier | Notes | |-------|----------|----------------|------|-------| | Runtime | Language | [approved] | Approved | | | Framework | API | [approved] | Approved | | | Messaging | Events | [approved] | Approved | | | ... | ... | ... | ... | |

Step 3: Flag exceptions

For any technology not in the approved catalog:

  1. Document the proposed technology and the reason the approved alternative doesn't fit
  2. Identify the exception type (new technology, unsupported version, non-standard pattern)
  3. Outline the exception approval path (see references/tech-stack.md — Exception Process)
  4. Mark as ⚠️ in the tech stack table — no exceptions proceed without approval

Step 4: Version alignment

Ensure proposed versions align with company-supported versions. Flag any end-of-life or unsupported versions as risks.


Document Structure

# [Initiative Name] — Tech Stack

## Technology Decisions

| Layer | Choice | Tier | Justification |
|-------|--------|------|---------------|
| [Layer] | [Technology v.x] | Approved / Conditional / Exception | [Why] |

## Exception Requests
[Technology | Reason approved option doesn't fit | Approval path]

## Version Risk Register
[Any EOL or unsupported version flags]

## Open Questions

Reference Files

  • references/tech-stack.md — Company approved technology catalog by layer, tier classifications, conditionally approved use cases, and exception process. TODO: Populate with your organization's opinionated tech stack.
Related skills