← all publishers

hao-ai-lab

@hao-ai-lab source repo

31 published skills

  1. Kernel Bottleneck Tuning · hao-ai-lab
    Workflow for finding and fixing instruction-throughput bottlenecks in warp-specialized CuTeDSL kernels (FA4-style). Use when a kernel underperforms its roofline and you need to decide between reordering, eliminating, or re-pipelining work.
    0
    installs
  2. Plan Mode Planning Assistant · hao-ai-lab
    Generates a structured experiment plan with compute-aware recommendations and saves it via the plan API endpoint.
    0
    installs
  3. Wild V2 Idea · hao-ai-lab
    Ideation prompt for Wild Loop V2 - generate high-quality, falsifiable research ideas with proposal and plan artifacts
    0
    installs
  4. Alert Handler · hao-ai-lab
    System prompt for handling experiment alerts. Provides diagnosis guidance, GPU wrapper context, action suggestions, and structured response from allowed choices.
    0
    installs
  5. Agent Mode Research Assistant · hao-ai-lab
    Default system prompt for agent chat mode. Provides identity, environment context, compute awareness, API-driven job submission, and workflow reflection.
    0
    installs
  6. Wild V2 Steer · hao-ai-lab
    Wraps user steering input with context signals for the model during a wild loop session
    0
    installs
  7. Wild V2 System · hao-ai-lab
    System prompt for Wild Loop V2 — ralph-style autonomous iteration
    0
    installs
  8. Wild V2 Planning · hao-ai-lab
    Planning prompt for Wild Loop V2 - iteration 0 phased planning with reflection, experiment ops, and analytics
    0
    installs
  9. Wild V2 Iteration · hao-ai-lab
    Iteration prompt for Wild Loop V2 - execution iterations 1+ with phase-aware task tracking and reflection
    0
    installs
  10. Wild V2 Reflection · hao-ai-lab
    Reflection prompt for Wild Loop V2 - runs after DONE to evaluate whether to continue or finalize
    0
    installs
  11. Wild V2 Execution Ops Protocol · hao-ai-lab
    Single source of truth protocol for Wild V2 preflight, sweep/run auditability, GPU discovery, and parallel scheduling
    0
    installs
  12. Wild V2 Sweep Run Audit Protocol · hao-ai-lab
    Mandatory protocol for creating auditable experiments via sweep/run endpoints in Wild V2
    0
    installs
  13. Fastvideo Model Porting Alignment · hao-ai-lab
    Ports new models into FastVideo with strict numerical alignment to official implementations. Use when adding a FastVideo model/pipeline, porting an official or Diffusers checkpoint, or debugging parity/alignment.
    0
    installs
  14. Wild V2 Gpu Discovery Parallel Scheduling · hao-ai-lab
    Protocol for GPU discovery and parallel run scheduling across local GPU and Slurm clusters
    0
    installs
  15. Add Model · hao-ai-lab bundle
    Manual /add-model workflow for implementing a FastVideo model or first-class component port after add-model-01-prep has staged reference code and weights. Organizes the port into numbered phases with conversion rules, component policies, parity gates, and handoff checks.
    0
    installs
  16. CI Runner · hao-ai-lab
    Work on FastVideo's Slurm-only, change-aware GPU CI lanes, static Buildkite graph, trusted ci-runner policy, lane scripts, and GB200 validation.
    0
    installs
  17. Add Model 01 Prep · hao-ai-lab bundle
    Use at the start of a FastVideo model port to gather required inputs, inspect/download HF weights, clone and install the official reference repo in the current environment, create a local_tests README skeleton, and produce a handoff before conversion or implementation.
    0
    installs
  18. Dreamverse Deploy · hao-ai-lab bundle
    Use when redeploying the migrated Dreamverse app backend and frontend on a chosen local GPU; tears down existing ports, launches services, and waits for readiness checks.
    0
    installs
  19. Add Model 08 Trace · hao-ai-lab bundle
    Use during /add-model Phase 6 when component parity has failed and root cause requires layer-by-layer divergence analysis. Uses FastVideo activation trace first, falling back to custom hooks only for boundaries or stats the utility cannot observe.
    0
    installs
  20. Add Model 02 Parity · hao-ai-lab bundle
    Use during /add-model after reference/architecture study to scaffold and later activate local FastVideo component parity tests. Emphasizes early test creation, official-reference loading, standardized FastVideo loading, and non-skip handoff gates.
    0
    installs
  21. Seed Ssim References · hao-ai-lab
    Seed HF reference artefacts for a single newly-added SSIM test (pixel `.mp4` for `run_text_to_video_similarity_test`-style tests, or latent `.pt` for `run_text_to_latent_similarity_test`-style tests). Runs the test on Modal L40S, downloads the generated artefacts via `modal volume get`, pauses for the user to verify (visual eyeball for mp4, numerics dump for pt), then uploads only that test's files to `FastVideo/ssim-reference-videos`. Use when a new `fastvideo/tests/ssim/test_*_similarity.py` has just been added and has no references on HF yet.
    0
    installs
  22. Add Model 03 Port Dit · hao-ai-lab
    Use during /add-model Phase 4 or Phase 6 to prototype or parity-debug one FastVideo-native DiT/transformer component.
    0
    installs
  23. Add Model 04 Port Vae · hao-ai-lab
    Use during /add-model Phase 4 or Phase 6 to prototype or parity-debug one FastVideo-native VAE component.
    0
    installs
  24. Add Model 09 Pipeline · hao-ai-lab bundle
    Use during /add-model Phase 7 after all required component parity tests pass to define FastVideo pipeline wiring, configs, presets, registry entries, examples, smoke tests, and pipeline parity tests.
    0
    installs
  25. Decompose Pipeline Pr · hao-ai-lab
    Decompose an oversized FastVideo pipeline PR into a stack of independently-reviewable PRs. Tiers the diff by blast radius (invisible / dead code / cross-cutting infra / activation), produces a branch graph and worktree bootstrap, drafts the AGENTS.md manifest, flags missing tests on cross-cutting infra changes, and extracts lessons from the PR body.
    0
    installs
  26. Add Model 10 Pr Review · hao-ai-lab
    Review rubric for FastVideo PRs that add or modify model families, variants, first-class components, checkpoint conversion, pipelines, parity coverage, or generated-media quality baselines. Use when reviewing a PR whose diff touches fastvideo/models/, fastvideo/pipelines/basic/, fastvideo/registry.py, scripts/checkpoint_conversion/, fastvideo/tests/ssim/, or related model-port surfaces. Pairs with review-pr-link as a project-scoped review pass; produces findings, not fixes.
    0
    installs
  27. Reseed Ssim References · hao-ai-lab
    Re-seed HF reference videos for a single existing SSIM test on Modal L40S. Always backs up current refs locally first, regenerates on Modal, pauses for the user to eyeball before-vs-after quality, then overwrites the targeted model subtree on `FastVideo/ssim-reference-videos` with `--force`. Use when an intentional code change (model port fix, attention backend swap, kernel upgrade, hyperparameter change) has invalidated existing refs and they need to be regenerated. Pairs with `seed-ssim-references`, which is for first-time seeding only.
    0
    installs
  28. Add Model 07 Conversion · hao-ai-lab bundle
    Use during /add-model Phase 5 to write and verify a FastVideo checkpoint conversion script after native component prototypes expose FastVideo state-dict keys/shapes.
    0
    installs
  29. Add Model 05 Port Encoder · hao-ai-lab
    Use during /add-model Phase 4 or Phase 6 to prototype or parity-debug one FastVideo-native text, image, audio, or compound encoder component.
    0
    installs
  30. Add Model 06 Port Generic · hao-ai-lab
    Use during /add-model Phase 4 or Phase 6 to prototype or parity-debug one non-DiT, non-VAE, non-encoder FastVideo component.
    0
    installs
  31. Reseed Performance Baseline · hao-ai-lab
    Re-seed the HF performance-tracking baseline for an intentional runtime, dependency, environment-caused benchmark shift, or reviewed v2 calibration using one or more reviewed normalized performance JSONs. Use when performance CI fails because metrics such as latency, throughput, component time, or peak memory changed for an accepted reason and the rolling median baseline in FastVideo/performance-tracking must be advanced, or when a new v2 exact comparable identity needs its first approved baseline. The workflow backs up existing history under /tmp, validates all source JSONs for the same legacy (model_id, gpu_type) target or the same v2 exact identity, rejects internally inconsistent source batches, uploads one success=true baseline record per accepted source JSON, and offers to clean local temp state after a successful upload.
    0
    installs