Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
Repositorio de GitHub

lust-station

lust-station contiene 210 skills recopiladas de space-sunrise, con cobertura ocupacional por repositorio y páginas de detalle dentro del sitio.

skills recopiladas
210
Stars
69
actualizado
2026-06-09
Forks
261
Cobertura ocupacional
6 categorías ocupacionales · 100% clasificado
explorador de repositorios

Skills en este repositorio

ss14-atmos-system-api
Desarrolladores de software

Gives a complete practical analysis of the AtmosSystem API in Space Station 14: what methods to use for what, which of them are fresh and safe, which ones are legacy/limited, and how to correctly combine calls in gameplay, devices and map-level logic.

2026-06-09
ss14-atmos-system-core
Desarrolladores de software

Parses the AtmosSystem architecture in Space Station 14 at the server/shared/client level: processing cycle, tile state, invalidations, connection with DeltaPressure and overlay synchronization. Use it when you need to understand how the system actually works, where it is safe to expand, and how not to break the performance/consistency of the atmosphere.

2026-06-09
ss14-audio-system-api
Desarrolladores de software

Gives a practical catalog of the AudioSystem API in Space Station 14: when to use the Play/Set/Stop/Resolve methods, how to work with predicted audio and filters, and how to use OpenAL EFX (auxiliary/effect/preset) without common mistakes.

2026-06-09
ss14-audio-system-core
Desarrolladores de software

Explains the AudioSystem architecture in Space Station 14 at the shared/server/client and OpenAL levels: audio entity lifecycle, PVS filtering, occlusion, streaming and EFX chain. Use when you need to understand the internal design of a system before expanding or debugging.

2026-06-09
ss14-databases
Arquitectos de bases de datos

SS14 Database System Guide (PostgreSQL and SQLite)

2026-06-09
ss14-documentation-writing
Desarrolladores de software

A practical documentation standard in Space Station 14 for C#, SWSL, YAML and FTL: how to write `<summary>`, when to add explanatory comments, how to document partial systems, and how to avoid noisy documentation. Use it when writing, refactoring and reviewing documentation in code, prototypes and localization.

2026-06-09
ss14-ecs-components
Desarrolladores de software

Architecture guide for Component in Space Station 14 — data containers, attributes, networking, state-as-component pattern, and marker components

2026-06-09
ss14-ecs-entities
Desarrolladores de software

Working with entities in Space Station 14 — EntityUid, Entity<T>, implicit Entity<T>-as-EntityUid usage, component operations, containers, network identity, and entity lifecycle

2026-06-09
ss14-ecs-prototypes
Desarrolladores de software

YAML prototypes in Space Station 14 — entity definitions, field inheritance, prototype classes, YAML linter, naming conventions, and localization

2026-06-09
ss14-ecs-systems
Desarrolladores de software

Architecture guide for EntitySystem in Space Station 14 — lifecycle, events, queries, networking, prediction, and partial class decomposition patterns

2026-06-09
ss14-eventbus
Desarrolladores de software

Architectural guide to EventBus in Space Station 14 - strict event taxonomy, subscription storage, dispatch logic and internal optimization mechanisms.

2026-06-09
ss14-events
Desarrolladores de software

A guide to using events in Space Station 14 - strict taxonomy, subscriptions, by-ref event prioritization, and networking patterns.

2026-06-09
ss14-graphics-animation-player
Desarrolladores de software

A deep practical guide to entity animations using the AnimationPlayerSystem in SS14: lifecycle, API, track types, keyframes/interpolation/easing, completion events, patterns and anti-patterns for production code.

2026-06-09
ss14-graphics-generic-visualizer-appearance
Desarrolladores de software

A practical and architectural guide to the combination of AppearanceComponent, AppearanceSystem, VisualizerSystem and GenericVisualizer in SS14. Use it when designing network visual states, YAML visualizations and client visualizer systems.

2026-06-09
ss14-graphics-overlays
Desarrolladores de software

An in-depth practical guide to the SS14 overlay architecture: OverlaySpace, lifecycle, communication with shaders, ScreenTexture, render targets, stencil composition, graphics primitives and render optimization.

2026-06-09
ss14-graphics-shaders
Desarrolladores de software

An in-depth practical guide to SS14 and SWSL shaders: syntax, presets, built-in variables/functions, parameters, debugging and architectural solutions. Use it for tasks about shader prototype, uniform, light_mode/blend_mode, stencil, compatibility and GPU effects.

2026-06-09
ss14-graphics-sprite-system
Desarrolladores de software

An in-depth practical guide to SpriteSystem in Space Station 14: lifecycle, full API for groups of methods, working with layers and layer-map, practical patterns and anti-patterns. Use it when developing dynamic sprites, visualizer systems and refactoring outdated SpriteComponent calls.

2026-06-09
ss14-loadout-authoring
Desarrolladores de software

Creation, copying, renaming, migration and review of SS14 loadout prototypes (`roleLoadout`, `loadoutGroup`, `loadout`) in fork folders like `_Scp`: naming, isolation from vanilla, transfer of mandatory equipment from `startingGear`, `startingGear` synchronization and processing of hidden jobs/departments. Use when changing job prototypes and any loadout system files.

2026-06-09
ss14-localization-code
Desarrolladores de software

A guide to using localization in Space Station 14 C# code. Describes the ILocalizationManager, LocId, and proper dependency injection patterns.

2026-06-09
ss14-localization-strings
Desarrolladores de software

A guide to working with localization files (.ftl) and strings in Space Station 14. Use this skill when adding or changing game text, item descriptions and interface.

2026-06-09
ss14-matrix-transform-physics-sprite
Desarrolladores de software

Highly specialized skill in matrix transformations in SS14: world/grid/local/screen conversions, Sprite render matrices, broadphase-space physics queries, Transform/Physics/Sprite client and server chains.

2026-06-09
ss14-migrations
Arquitectos de bases de datos

Guide to Creating and Managing Database Migrations in SS14 (PostgreSQL and SQLite)

2026-06-09
ss14-naming-conventions
Desarrolladores de software

Strict naming standards in Space Station 14 for C#, YAML prototypes and FTL: names of components/systems/dependencies, prototype IDs, localization keys, variables and files. Use it when creating or reviewing new code, prototypes and localization, when you need to check compliance with the naming standard.

2026-06-09
ss14-netcode
Desarrolladores de software

Architecture guide for networking in Space Station 14 — Lidgren integration, NetManager abstraction, message system, game state synchronization, PVS, network events, and component networking

2026-06-09
ss14-npc-system-core
Desarrolladores de software

Deep dive into the NPC system in SS14/Sunrise: HTN planning, utility target selection, steering/pathfinding, blackboard and execution contracts. Use it when you need to understand the general scheme and logic of NPCs, create or rework behavior prototypes (`htnCompound`, `rootTask`, `blackboard`), or write your own AI code (operators, preconditions, components, systems) and safely integrate it into runtime.

2026-06-09
ss14-physics-system-api
Desarrolladores de software

A complete reference to the SharedPhysicsSystem public API in Space Station 14: all method families, overloads, limitations, rare methods and practical examples of use on the server and client. Use it when you need to accurately select the PhysicsSystem method and not break contacts/collisions/prediction.

2026-06-09
ss14-physics-system-core
Desarrolladores de software

Deep practical guide to PhysicsSystem in Space Station 14: simulation device (broadphase, contacts, islands, solver), connection with Transform/Container/Anchoring, client prediction part and working application patterns. Use it when you need to understand how physics actually works and where it is safe to embed game logic.

2026-06-09
ss14-prediction
Desarrolladores de software

Architecture guide for client-side prediction in Space Station 14 — prediction loop, timing properties, predicted entities, state reconciliation, randomness, and common pitfalls

2026-06-09
ss14-pvs
Desarrolladores de software

Architecture guide for PVS in Space Station 14 — chunk-based spatial partitioning, visibility determination, override types, budgets, Level-of-Detail, leave mechanics, visibility masks, and ExpandPvsEvent

2026-06-09
ss14-skill-authoring
Desarrolladores de software

Creating and updating skills for sunrise-station/SS14: decomposing the topic into several narrow skills, researching fresh code and docs, forming patterns/anti-patterns, writing high-quality SKILL.md with examples and quality checks. Use it when you need to write a new skill, rework an existing skill, or systematically improve the skill pool.

2026-06-09
ss14-standard-optimizations
Desarrolladores de software

Practical skill in standard optimizations of Space Station 14: caching, reduction of allocations, abandonment of LINQ in hot-path, ActiveComponent approach, EntityQuery, order of components in EntityQueryEnumerator, ByRef events, DirtyField, early exits and cleaning of unnecessary components. Use it when designing, reviewing and optimizing ECS ​​code in server/shared/client.

2026-06-09
ss14-tests-authoring
Analistas de garantía de calidad de software y probadores

Practical workflow for writing your own unit/integration tests in the Space Station 14 architecture: from choosing a strategy to stable assertions and test maintenance.

2026-06-09
ss14-tests-poolmanager
Analistas de garantía de calidad de software y probadores

An in-depth guide to the SS14 integration test framework: PoolManager, TestPair lifecycle, server/client synchronization, action emulation and pitfalls.

2026-06-09
ss14-transform-system-api
Desarrolladores de software

A complete reference book for the SharedTransformSystem API in Space Station 14: analysis of all public families of methods, selection of overloads, restrictions and practical application patterns on the server and client. Use when you need to accurately select the TransformSystem method and avoid coordinate space errors.

2026-06-09
ss14-transform-system-core
Desarrolladores de software

An in-depth practical guide to TransformSystem in Space Station 14: coordinate model (EntityCoordinates/MapCoordinates), parent-grid-map hierarchy, safe movement, anchor/unbind and client/server patterns. Use for teleports, entity transfers, containers, anchoring and spatial optimizations.

2026-06-09
ss14-ui-bui
Desarrolladores de software

A practical guide to Bound User Interface (BUI) in SS14: architecture, network messages, input validation, prediction through component state, lifecycle windows and server-client working patterns. Use it when developing and refactoring entity-bound interfaces.

2026-06-09
ss14-ui-eui-and-ui-manager
Desarrolladores de software

An in-depth practical guide to the combination of EUI, UserInterfaceSystem and UserInterfaceManager in SS14: choosing an approach, lifecycle, state/message exchange, window management via UIController and secure network patterns.

2026-06-09
ss14-ui-styles-palettes-sheetlets
Diseñadores de interfaces web y digitales

A practical guide to the SS14 style system: StyleClass, palettes, StyleProperties, sheetlets, pseudo-classes and rules composition. Use it when developing and refactoring a visual UI language without hardcode.

2026-06-09
ss14-ui-xaml
Desarrolladores web

A practical guide to SS14 XAML interfaces: window structure, GenerateTypedNameReferences, loading via RobustXamlLoader, layout containers, localization and style classes. Use it when creating, refactoring and visually polishing UI windows.

2026-06-09
ss14-upstream-maintenance
Desarrolladores de software

Guide to working with Space Station 14 forks with project-folder pattern (`_Sunrise`, `_Scp`, `_Fish`, `_Lust`) to minimize merge conflicts with the upstream. Use when modifying vanilla code or prototypes.

2026-06-09
Mostrando las 40 principales de 210 skills recopiladas en este repositorio.