Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
GitHub 저장소

Temper-AI

Temper-AI에는 Ezefeola에서 수집한 skills 58개가 있으며, 저장소 수준 직업 범위와 사이트 내 skill 상세 페이지를 제공합니다.

수집된 skills
58
Stars
3
업데이트
2026-07-01
Forks
0
직업 범위
직업 카테고리 5개 · 100% 분류됨
저장소 탐색

이 저장소의 skills

clean-architecture
소프트웨어 개발자

Structure and rules for .NET projects using Clean Architecture with DDD. Use when the project has complex business domain, multiple use cases, need to test business logic in isolation, or when the system is enterprise, e-commerce, ERP, CRM, or any rich domain. Do not use for simple CRUDs without logic — prefer Vertical Slice in that case. For implementation details, load the required `backend/dotnet/orms/ef-core/*/SKILL.md` leaf skill(s) or your chosen data access skill.

2026-07-01
hexagonal-architecture
소프트웨어 개발자

Structure and rules for .NET projects using Hexagonal Architecture (Ports & Adapters). Use when the project has multiple input channels (API, CLI, message queue), need to test the domain in isolation, or when adapters change frequently. Do not use for simple CRUDs without logic — prefer Vertical Slice in that case. For implementation details, load the required `backend/dotnet/orms/ef-core/*/SKILL.md` leaf skill(s) or your chosen data access skill.

2026-07-01
onion-architecture
소프트웨어 개발자

Structure and rules for .NET projects using Onion Architecture. Use when the project has a strong domain-centric focus with DDD, aggregate roots, and the Specification pattern. All dependencies point inward toward the domain core. Do not use for simple CRUDs without logic — prefer Vertical Slice in that case. For implementation details, load the required `backend/dotnet/orms/ef-core/*/SKILL.md` leaf skill(s) or your chosen data access skill.

2026-07-01
dbcontext-setup
소프트웨어 개발자

Canonical DbContext setup and registration rules for EF Core. Load when creating or modifying DbContext classes or their DI wiring.

2026-07-01
dotnet-linq
소프트웨어 개발자

Pure LINQ standards for .NET 10 projects. Covers language operators, query composition, projection patterns, filtering, grouping, and performance best practices over IEnumerable<T> and IQueryable<T>. Load when writing or reviewing LINQ expressions in any layer. DO NOT load expecting EF Core-specific methods (ToListAsync, AsNoTracking, Include, ExecuteUpdateAsync) — those belong to `backend/dotnet/orms/ef-core/query-best-practices/SKILL.md`.

2026-07-01
dbcontext-usage
소프트웨어 개발자

Canonical rules for using AppDbContext DIRECTLY from application code (use cases / handlers) when the project's data-access pattern is Direct DbContext — no repositories, no UnitOfWork. Load when the chosen pattern is Direct DbContext and a use case reads or writes data. This is the counterpart to repository-usage; never load both for the same task.

2026-07-01
dotnet-ef-core-query-best-practices
소프트웨어 개발자

Canonical EF Core query best practices for TemperAI: how each query method behaves, how to write performant queries, and the highest-value EF Core tricks. Load whenever a task writes EF Core queries — inside a repository OR directly against AppDbContext in a use case. Pattern-agnostic: the query rules are the same regardless of whether the project uses repositories or a direct DbContext.

2026-07-01
repository-pattern
소프트웨어 개발자

Canonical repository and UnitOfWork creation rules for EF Core. Load when creating repositories or UnitOfWork from scratch.

2026-07-01
repository-usage
소프트웨어 개발자

Canonical rules for using existing repositories and UnitOfWork from application code. Load when calling repositories or CompleteAsync from use cases.

2026-07-01
backend-config-maintenance
소프트웨어 개발자

How the backend agent keeps the Dependencies section of Docs/Application/Architecture/backend-config.md in sync with the real project. Load only when a task adds, removes, or upgrades a NuGet package. Reconciles the Dependencies list from the actual .csproj PackageReference entries — never touches the architect's decision fields.

2026-07-01
use-case-patterns
소프트웨어 개발자

Canonical use case structure, naming, and DI conventions for backend tasks. Load when creating or modifying use cases or controllers that invoke them. Do not load for Vertical Slice handlers.

2026-07-01
architect-design-workflow
소프트웨어 개발자

Mode A (Architectural Design) workflow for temper-architect — the full sequence from reading the PRD through proposal, confirmation, document offer, and generation. Load this skill after the architect detects Architectural Design mode in Phase 1, and execute it start to finish.

2026-07-01
architect-document-templates
소프트웨어 개발자

Contains all document templates the temper-architect agent generates. Includes templates for architecture-decision.md, backend-config.md, frontend-config.md, and architectural-plan.md. Load this skill when the architect needs to generate any of these documents after proposal confirmation.

2026-07-01
architect-proposal-formats
소프트웨어 개발자

Contains all structured proposal and report formats the temper-architect agent emits during its workflow. Includes startup report, mode report, domain analysis, problem analysis, architectural proposal, architectural plan, updated proposal, document offer, required docs completion, and final completion report. Load this skill when the architect needs to format any of these outputs.

2026-07-01
architect-problem-solving-workflow
기타 컴퓨터 관련 직업

Mode B (Problem Solving) workflow for temper-architect — analyzing a bug, design issue, or blocking technical decision and producing a confirmed architectural plan. Load this skill after the architect detects Problem Solving mode in Phase 1, and execute it start to finish.

2026-06-27
dotnet-api
소프트웨어 개발자

ASP.NET Core API standards for .NET 10 projects. Covers controllers, middleware, routing, error handling, DI setup, logging, FluentValidation, nullable reference types, and appsettings structure. Load when creating or modifying controllers, middleware, Program.cs, or validators. DO NOT load for domain or repository tasks — load dotnet-ddd or the required `backend/dotnet/orms/ef-core/*/SKILL.md` leaf instead. For API documentation provider wiring, load exactly one provider skill based on backend config: `backend/dotnet/api-docs/scalar/SKILL.md` or `backend/dotnet/api-docs/swagger/SKILL.md`. For general C# conventions, `backend/dotnet/csharp/SKILL.md` must be loaded first.

2026-06-25
vertical-slice-architecture
소프트웨어 개발자

Structure and rules for .NET projects using Vertical Slice Architecture. Use for CRUDs, MVPs, rapid prototypes, or simple systems where Clean Architecture would be overkill. Do not use for complex business domains — prefer Clean Architecture in that case. For data access implementation, load the required `backend/dotnet/orms/ef-core/*/SKILL.md` leaf skill(s) or your chosen data access skill.

2026-06-25
dotnet-csharp
소프트웨어 개발자

Universal C# / .NET 10 standards that apply to ANY .NET project regardless of architecture or layer. Covers syntax, usings, naming, async patterns, null safety, and DTO conventions. ALWAYS load this skill for ANY agent that writes C# code. DO NOT load for tasks that only read or analyze existing code without writing.

2026-06-25
dotnet-ddd
소프트웨어 개발자

Domain-Driven Design standards for .NET 10 projects. Covers entity design, aggregates with child entities, domain events, and domain rules. Load when creating or modifying any Domain layer component — entities, enums, events, aggregates. DO NOT load for infrastructure, repository, or controller tasks. Value Objects are intentionally NOT used — primitives are used directly in entities.

2026-06-25
bulk-operations
소프트웨어 개발자

Canonical EF Core bulk and batch operation guidance. Load only for explicit high-volume insert or batch tasks.

2026-06-25
entity-configuration
소프트웨어 개발자

Canonical EF Core Fluent API entity configuration rules. Load when creating or modifying IEntityTypeConfiguration classes.

2026-06-25
dto-conventions
소프트웨어 개발자

Canonical DTO naming, structure, and mapping conventions for backend tasks. Load when creating or modifying DTOs.

2026-06-25
result-pattern
소프트웨어 개발자

Canonical Result<T> pattern for backend tasks. Load on every backend task.

2026-06-25
solid-clean-code
소프트웨어 개발자

Canonical SOLID and Clean Code rules for backend tasks. Load on every backend task.

2026-06-25
dotnet-testing
소프트웨어 품질 보증 분석가·테스터

Testing standards for .NET 10 projects using xUnit, Moq, and bUnit. Covers unit tests for domain and application layers, integration tests for APIs, and component tests for Blazor. Use when creating or modifying any test files.

2026-06-25
blazor
웹 개발자

Blazor WebAssembly standards for .NET 10 frontend work. Use ONLY for Blazor WebAssembly components, pages, routing, forms, client-side state, API clients, JavaScript interop, accessibility, and frontend services. Do not use for Blazor Server or Angular work.

2026-06-25
bunit
소프트웨어 품질 보증 분석가·테스터

bUnit testing standards for Blazor components. Covers component rendering tests, event handling tests, parameter binding tests, and state verification. Use when creating or modifying Blazor component tests.

2026-06-25
friday-implementation-delegation
기타 컴퓨터 관련 직업

Implementation-agent delegation contract for FRIDAY. Load when FRIDAY delegates to temper-backend, temper-frontend, temper-tester, temper-devops, or another implementation agent, including task-driven, direct-action, bugfix, and recovery turns.

2026-06-22
friday-state-schema
기타 컴퓨터 관련 직업

State file JSON schema, status values, and generic delegation rules for the FRIDAY orchestrator. Load this skill whenever FRIDAY needs to read, write, or validate .temper/friday-state.json.

2026-06-22
spec-generator
프로젝트 관리 전문가

User Story and specification generation skill for TemperAI. Use when converting an approved PRD into structured user stories with acceptance criteria, business rules, edge cases, and error cases. Loaded by temper-analyst during Phase 2 (Spec generation). Teaches how to write implementation-agnostic specifications — no technical details.

2026-05-25
analyst-reasoning
프로젝트 관리 전문가

Internal self-questioning framework for the TemperAI analyst agent. Activates at specific checkpoints across Phase 1 and Phase 2 to ensure no hidden stakeholder, implicit requirement, failure mode, or logical gap survives into a deliverable. This skill never produces visible output — it shapes the quality of every report, gap, PRD, and spec the analyst emits. Loaded by temper-analyst at session start alongside functional-analysis.

2026-05-25
functional-analysis
프로젝트 관리 전문가

Functional requirements analysis skill for TemperAI. Use when eliciting requirements from users and preparing to generate a PRD. Teaches the analyst how to think functionally, detect gaps, ask the right questions, and classify uncertainty correctly. Loaded by temper-analyst during Phase 1 (Functional Analysis & PRD Generation).

2026-05-25
analyst-prd-template
프로젝트 관리 전문가

PRD (Product Requirements Document) template for the temper-analyst agent. Contains the full 10-section PRD structure generated during Phase 1.7, including header metadata, all required sections, and the scope rule note. Load when generating or validating Docs/Functional-Analysis/PRD.md files.

2026-05-25
analyst-report-formats
프로젝트 관리 전문가

All structured report formats used by the temper-analyst agent across Phase 1 (PRD) and Phase 2 (Spec). Contains every report template the analyst emits during its workflow: startup, input synthesis, delta analysis, gap reports, resolution status, contradictions, completeness checklist, and phase completion reports.

2026-05-25
friday-session-mode-recommendation
소프트웨어 개발자

Session-mode recommendation policy for FRIDAY. Load when FRIDAY needs to recommend clean session versus continue here after a completed specialist step and an approved meaningful continuation.

2026-05-25
api-docs-scalar
소프트웨어 개발자

API documentation provider skill for Scalar. Load only when backend config selects Scalar and the task touches API documentation wiring.

2026-05-18
api-docs-swagger
소프트웨어 개발자

API documentation provider skill for Swagger. Load only when backend config selects Swagger and the task touches API documentation wiring.

2026-05-18
ddd-documents
소프트웨어 개발자

DDD documentation generation standards for TemperAI. Teaches how to produce DDD-Vocabulary, domain-model, and system-architecture documents. Generates three documents: one operational vocabulary file consumed by implementation agents, and two documentation files with Mermaid diagrams covering the domain model and system architecture. Load this skill when generating or modifying any DDD documentation file. Does NOT teach implementation patterns (use dotnet-ddd for that).

2026-05-18
ddd-ubiquitous-language
소프트웨어 개발자

Ubiquitous Language concepts for TemperAI. Teaches implementation agents how to understand, extract, and use domain terminology consistently when reading specs, tasks, and DDD documentation. Load this skill when implementing any backend or frontend task.

2026-05-18
angular-material
소프트웨어 개발자

Angular Material standards. Use ONLY when an Angular project already uses Angular Material or the task explicitly asks for Material components, theming, dialogs, tables, forms, overlays, navigation, or accessibility. Do not use for Blazor or Angular projects without Material.

2026-05-18
이 저장소에서 수집된 skills 58개 중 상위 40개를 표시합니다.