Agent skill
stack
Load technology stack configurations with project templates, dependencies, and best practices. Supports dotnet, node, python, java, go.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/stack
SKILL.md
Technology Stack Loader
When invoked with /stack <tech>, load the corresponding technology stack configuration.
Configuration File: C:\.claude\stacks\tech-stacks.yaml
Supported Stacks
@dotnet (or /stack dotnet)
- Runtime: .NET 8
- Framework: ASP.NET Core, Minimal APIs
- ORM: Entity Framework Core 8
- Testing: xUnit, Moq, FluentAssertions
- Build: dotnet CLI, NuGet
Commands:
dotnet build --configuration Release
dotnet test --collect:"XPlat Code Coverage"
dotnet run
@node (or /stack node)
- Runtime: Node.js 20.x LTS
- Language: TypeScript 5.3+
- Frontend: React 18, Vite
- Backend: Express, Fastify
- Testing: Jest, Vitest, Playwright
Commands:
npm install
npm run dev
npm run build
npm test
@python (or /stack python)
- Runtime: Python 3.11+
- Framework: FastAPI, Django
- ORM: SQLAlchemy 2.0
- Testing: pytest, pytest-cov
- Build: Poetry, pip
Commands:
poetry install
poetry run uvicorn main:app --reload
poetry run pytest
@java (or /stack java)
- Runtime: Java 21 (Temurin)
- Framework: Spring Boot 3.2
- ORM: Spring Data JPA, Hibernate 6
- Testing: JUnit 5, Mockito
- Build: Maven 3.9, Gradle 8.5
Commands:
mvn clean package
mvn test
mvn spring-boot:run
@go (or /stack go)
- Runtime: Go 1.22+
- Framework: Gin, Echo, stdlib
- ORM: GORM, sqlx
- Testing: go test, testify
- Build: go build
Commands:
go mod init
go build -o bin/app ./cmd/app
go test ./...
Usage
- Load stack:
/stack dotnet - Get project structure, dependencies, and patterns
- Combine:
@dotnet @arch:ms @deploy:k8s
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?