Skip to main content
Ejecuta cualquier Skill en Manus
con un clic
stateful-y
Perfil de creador de GitHub

stateful-y

Vista por repositorio de 19 skills recopiladas en 4 repositorios de GitHub.

skills recopiladas
19
repositorios
4
actualizado
2026-07-26
explorador de repositorios

Repositorios y skills representativas

update-from-template
Desarrolladores de software

Update a project generated by python-package-copier from the latest template version while preserving local customizations (README, docs, CI workflows, dependencies, source code). Use when working inside a generated repo and the user wants to pull in template improvements, sync with upstream template changes, or apply template updates. Handles intelligent 3-tier conflict resolution using copier update with .rej files. Triggers on requests like "update from template", "sync template", "pull template changes", "upgrade template", or "apply template updates".

2026-07-26
diataxis-reference-writer
Desarrolladores de software

Generate and structure information-oriented reference documentation for Python packages following Diátaxis principles. Use when asked to write API reference docs, CLI reference, configuration reference, error code reference, or any documentation that provides austere technical description of the machinery. Triggers on "write reference docs", "API documentation", "document the API", "CLI reference", "configuration reference", "error reference", "describe the interface".

2026-07-24
diataxis-docs-planner
Desarrolladores de software

Audit, plan, and structure Python package documentation following the Diátaxis framework (tutorials, how-to guides, reference, explanation). Use when asked to plan documentation, audit existing docs, identify documentation gaps, restructure docs, create a documentation roadmap, or organize documentation for a Python package. Triggers on "plan docs", "audit documentation", "structure docs", "documentation roadmap", "what docs do I need", "organize documentation".

2026-07-17
diataxis-explanation-writer
Desarrolladores de software

Generate understanding-oriented explanation documentation for Python packages following Diátaxis principles. Use when asked to write conceptual docs, architecture overview, design decisions, "about" pages, "why" docs, background context, or any documentation that helps the reader understand a topic through reflection and discussion. Triggers on "write an explanation", "conceptual docs", "architecture overview", "design decisions", "why did we choose", "background", "about the design", "explain the architecture".

2026-07-17
diataxis-howto-writer
Desarrolladores de software

Generate task-oriented how-to guide documentation for Python packages following Diátaxis principles. Use when asked to write a how-to guide, cookbook entry, recipe, procedure, troubleshooting guide, or any documentation that helps an already-competent user accomplish a specific real-world task. Triggers on "write a how-to", "how to configure", "how to deploy", "how to integrate", "troubleshooting guide", "cookbook", "recipe", "procedure for".

2026-07-17
diataxis-notebook-writer
Desarrolladores de software

Write or rework marimo example notebooks following Diataxis principles. Use when asked to create, edit, or rework interactive notebook examples that serve as tutorial or how-to companions to documentation pages. Triggers on "write a notebook example", "rework notebook", "example notebook", "interactive example", "marimo example", "tutorial notebook", "how-to notebook".

2026-07-17
diataxis-tutorial-writer
Desarrolladores de software

Generate learning-oriented tutorial documentation for Python packages following Diátaxis principles. Use when asked to write a tutorial, getting started guide, first steps page, quickstart, onboarding guide, or any documentation that teaches a beginner by walking them through hands-on steps. Triggers on "write a tutorial", "getting started page", "quickstart guide", "first steps", "beginner guide", "onboarding docs", "teach how to use".

2026-07-17
create-yohou-forecaster
Desarrolladores de software

Step-by-step guide for implementing new point or interval forecasters in Yohou. Covers BasePointForecaster, BaseIntervalForecaster, and BaseReductionForecaster patterns. Includes class templates with fit/predict, _parameter_constraints, panel data support, fitted attributes, and test file templates with _yield_yohou_forecaster_checks (27 systematic checks). Use when creating, extending, or testing any forecaster class.

2026-07-20
create-yohou-dataset
Científicos de datos

Guide for adding new bundled datasets to Yohou. Covers the full workflow: data preparation with polars, Parquet export (zstd compression), Git LFS tracking, loader function creation in loaders.py, schema conventions (univariate/multivariate/panel with __ separator), Marimo example notebook creation, and test templates. Includes file size guidelines, licensing metadata, and external hosting patterns (Zenodo, HuggingFace) for large datasets.

2026-07-17
create-yohou-plot
Científicos de datos

Guide for creating new Plotly-based plotting functions in Yohou. Covers the plotting module structure, validate_plotting_data/resolve_color_palette/validate_plotting_params/apply_default_layout utilities, panel data faceting/dropdown patterns, consistent parameter naming conventions, and test templates for figure validation. Use when adding any new visualization function to src/yohou/plotting/.

2026-07-17
create-yohou-scorer
Científicos de datos

Step-by-step guide for implementing new point and interval metrics (scorers) in Yohou. Covers BasePointScorer and BaseIntervalScorer with score() method pattern, aggregation methods (timewise/componentwise/groupwise/coveragewise/all), time weighting support, panel data scoring, and test templates with _yield_yohou_scorer_checks (11 check functions, variable yield count). Use when creating or testing any metric/scorer class.

2026-07-17
create-yohou-search
Científicos de datos

Guide for extending hyperparameter search in Yohou (advanced). Covers custom search strategy implementation extending BaseSearchCV, with the _run_search abstract method pattern. Includes built-in GridSearchCV/RandomizedSearchCV usage examples and test templates with _yield_yohou_search_checks (19 systematic checks). Most users should use built-in search classes — extend only for novel strategies like Bayesian optimization.

2026-07-17
create-yohou-splitter
Científicos de datos

Step-by-step guide for implementing new time series cross-validation splitters in Yohou. Covers expanding window, sliding window, and gap patterns extending BaseSplitter. Includes split/get_n_splits/_iter_test_indices templates, panel data row-index splitting, and test templates with _yield_yohou_splitter_checks (8 systematic checks). Use when creating or testing custom CV splitters.

2026-07-17
create-yohou-transformer
Científicos de datos

Step-by-step guide for implementing new time series transformers in Yohou. Covers stateful (observation_horizon, memory) and stateless patterns, validate_transformer_data usage, inverse_transform, panel data support, and feature name output. Includes class templates for BaseTransformer subclasses and test templates with _yield_yohou_transformer_checks (26 systematic checks). Use when creating, extending, or testing any transformer class.

2026-07-17
fan-out-to-packages
Desarrolladores de software

Roll a template change out to every stateful-y package generated from python-package-copier, one agent per repo in parallel. Use when a template release must reach the fleet, when auditing all generated projects for a shared defect, or when applying a docs/config convention everywhere. Covers the seven repos and what differs between them, the copier update hazards that destroy local content silently, the per-repo invariants, and the verification discipline that stops a green result from being meaningless.

2026-07-26
backport-commit
Desarrolladores de software

Backport changes from a GitHub commit in a project generated by the python-package-copier Copier template into the template source files and tests. Use when given a GitHub commit URL from a generated repo and asked to incorporate those changes into the template. Covers fetching the commit diff, mapping generated files back to template sources, converting literal values to Jinja variables, updating template files, and generating or updating tests.

2026-07-23
diataxis-notebook-writer
Desarrolladores de software

Write or rework marimo example notebooks following Diataxis principles. Use when asked to create, edit, or rework interactive notebook examples that serve as tutorial or how-to companions to documentation pages. Triggers on "write a notebook example", "rework notebook", "example notebook", "interactive example", "marimo example", "tutorial notebook", "how-to notebook".

2026-07-17
diataxis-reference-writer
Desarrolladores de software

Generate and structure information-oriented reference documentation for Python packages following Diátaxis principles. Use when asked to write API reference docs, CLI reference, configuration reference, error code reference, or any documentation that provides austere technical description of the machinery. Triggers on "write reference docs", "API documentation", "document the API", "CLI reference", "configuration reference", "error reference", "describe the interface".

2026-07-17
Mostrando 4 de 4 repositorios
Todos los repositorios cargados