Tag: full-stack
Conteúdos públicos da tag full-stack no Brabrix Skill Hub.
Conteúdos públicos da tag full-stack no Brabrix Skill Hub.
139 itens
Categoria: Workflows/SDD
## Overview Implementation plan for refactor: Specification: SPEC.md ## Affected Components - ## Implementation Phases ### Phase 1: Preparation Agent: backend-dev or frontend-dev (based on component)
Categoria: Workflows/SDD
## Overview Implementation plan for: Specification: SPEC.md ## Affected Components - (contract) - (server) - (webapp) ## Prerequisites > Only include if prerequisites provided Complete implementation
Categoria: Workflows/SDD
## Overview Implementation plan for epic: Specification: SPEC.md ## Change Order Implement child changes in this order: | # | Change | Description | Dependencies | Status | |---|--------|-------------
Categoria: Workflows/SDD
## Overview Implementation plan for bugfix: Specification: SPEC.md ## Affected Components - ## Implementation Phases ### Phase 1: Investigation Agent: backend-dev or frontend-dev (based on component)
Categoria: Workflows/SDD
Fast, isolated tests that verify individual functions and modules. Unit tests run in the CI runner (not Kubernetes) for rapid feedback.
Categoria: Workflows/SDD
CRITICAL: Never use default exports. Always use named exports.
Categoria: Workflows/SDD
// GOOD: Readonly everything interface User { readonly id: string; readonly email: string; readonly createdAt: Date; }
Categoria: Workflows/SDD
Prefer discriminated union return types over T | null. Null is vague — it hides why something failed. A union makes every outcome explicit and forces callers to handle each case.
Categoria: Workflows/SDD
CRITICAL: These operations mutate data in place and are strictly forbidden.
Categoria: Workflows/SDD
Type guards are the functional replacement for instanceof checks on classes. Discriminated unions use a shared field to distinguish between variants.
Categoria: Workflows/SDD
Shared standards for all TypeScript code in this methodology (backend and frontend).
Categoria: Workflows/SDD
Component type definitions, settings schemas, directory patterns, and validation rules for the fullstack-typescript tech pack. This skill is loaded by core's project-settings skill to provide tech-pack-specific component knowledge.
Categoria: Workflows/SDD
Routes techpacks.routeSkills(phase, componenttype) requests to the appropriate fullstack-typescript skills. Core never loads tech pack skills directly — it invokes this router, which returns the skill paths to load.
Categoria: Workflows/SDD
Orchestrates component scaffolding for the fullstack-typescript tech pack. When a plan phase requires scaffolding new components, this skill determines the correct scaffolding order and delegates to the appropriate component-specific scaffolding skill.
Categoria: Workflows/SDD
Tech-specific plan generation guidance for the fullstack-typescript stack. Provides agent assignment rules, architecture patterns, and dependency ordering that the core planning skill uses when generating PLAN.md files for this tech pack.
Categoria: Workflows/SDD
Manage local Kubernetes development environments for SDD projects.
Categoria: Workflows/SDD
Manage project configuration for SDD projects. Each operation delegates to the system CLI.
Categoria: Workflows/SDD
Provides tech-pack-specific help content for the fullstack-typescript tech pack. This skill is loaded by the core help system to display tech-pack-aware guidance to the user.
Categoria: Workflows/SDD
Test definition YAML, suite configuration, and commands for running integration tests in Kubernetes via Testkube.
Categoria: Workflows/SDD
Strategies for managing test database state: initialization, cleanup, and seeding.
Categoria: Workflows/SDD
Login helpers and protected endpoint test patterns for integration tests.
Categoria: Workflows/SDD
HTTP client setup, test patterns, and examples for integration-level API tests.
Categoria: Workflows/SDD
Dynamic path: All paths below use components// as a placeholder. The actual directory depends on the testing component defined in sdd/sdd-settings.yaml. Delegate to the techpack-settings skill for directory path resolution — it maps component type (testing) + name to a filesystem path (e.g., type=testing, name=integration → components/testing-integration/).
Categoria: Workflows/SDD
Scaffolds an integration testing component with test infrastructure for verifying component interactions against real dependencies.