← all publishers

omonuj

@omonuj source repo

36 published skills

  1. Horizon Agentic Reviewer 2 · omonuj
    DISABLED / NULLED for variation-istio-split-brain (user directive). The live red-team step is intentionally skipped — the user runs the equivalent checks themselves and finds an agent-run pass redundant. DO NOT INVOKE this skill or auto-run any step in it. The workflow is: pre-push gates -> push -> hosted Oracle -> (Oracle 1.0) -> tell the user to trigger the eval batch. The content below is retained ONLY as a manual probe reference; it is not part of any loop.
    0
    installs
  2. Horizon Agentic Reviewer 3 · omonuj
    Adversarially red-team a horizon (apex-arena) RL task by spinning up a live container, injecting faults via setup.sh, probing as the agent user (model/ubuntu), and pulling rollouts. Runs a 24-point checklist (20 live-container probes + 4 rollout-statistics) to find undisclosed requirements, leaks, dead-weight subscores, and broken evidence trails. Persists failed checks to ~/.horizon-reviews/<uuid>/findings.json.
    0
    installs
  3. Horizon Agentic Reviewer 4 · omonuj
    Adversarially red-team a horizon (apex-arena) RL task by spinning up a live container, injecting faults via setup.sh, probing as the agent user (model/ubuntu), and pulling rollouts. Runs a 24-point checklist (20 live-container probes + 4 rollout-statistics) to find undisclosed requirements, leaks, dead-weight subscores, and broken evidence trails. Persists failed checks to ~/.horizon-reviews/<uuid>/findings.json.
    0
    installs
  4. Building Backends · omonuj
    The foundational guide for how Claude should build backend systems — the rules, defaults, and judgment that apply to every service before reaching for a specific playbook. Read this FIRST for any backend work (new service, new endpoint, data model, auth, background job). Covers architecture, API design, the data layer, error handling, security, concurrency, and testing, and points to the specific skills (api-service-scaffold, db-migration-guardian, backend-observability) for the deep dives.
    0
    installs
  5. Secrets Management · omonuj
    Keep secrets out of code, logs, images, and state — and make them rotatable. Use when adding a credential/API key/token to any system, when a secret leaks, or when auditing how an app gets its secrets. Covers the injection hierarchy (short-lived > secret manager > env), git-history remediation, rotation, and the "removed but still in history" trap.
    0
    installs
  6. Building Frontends · omonuj
    The foundational guide for how Claude should build frontend systems — the rules, defaults, and judgment that apply to every UI before reaching for a specific playbook. Read this FIRST for any frontend work (new screen, component, form, data fetching, styling). Covers component architecture, state, data fetching, forms, accessibility, performance, styling, and testing, and points to the specific skills (react-component-builder, frontend-state-architecture, web-performance-audit) for the deep dives.
    0
    installs
  7. API Service Scaffold · omonuj
    Scaffold a production-grade backend HTTP service (REST or GraphQL) with the layering, error model, validation, config and health surface already wired. Use when starting a new service or adding a new bounded context to a monorepo. Produces a runnable skeleton that passes lint + a smoke test, not a toy. Language-agnostic playbook with concrete Node/TypeScript and Python/FastAPI recipes.
    0
    installs
  8. Backend Observability · omonuj
    Instrument a backend service so failures are diagnosable in production — structured logs, RED/USE metrics, and distributed tracing wired through one correlation id. Use when a service has no observability, when incidents take too long to diagnose, or as the observability step of api-service-scaffold. Vendor-neutral (OpenTelemetry), with concrete cardinality and PII guardrails.
    0
    installs
  9. DB Migration Guardian · omonuj
    Plan and apply relational schema migrations safely against a live database, with zero-downtime as the default. Use before writing or running ANY migration that alters a table other services or a running deployment still read/write. Enforces expand-contract, backwards-compatible steps, lock-aware DDL, and a tested rollback. Postgres-first, with MySQL notes.
    0
    installs
  10. Iac Terraform Guardian · omonuj
    Write and change infrastructure-as-code (Terraform/OpenTonu) safely — state integrity, plan review, modularity, and no drift or destroy-surprises. Use before authoring or modifying any IaC that manages real cloud resources. Enforces remote locked state, read-the-plan discipline, module boundaries, tagging, and the destroy/replace guardrails that prevent accidental data loss.
    0
    installs
  11. Cicd Pipeline Hardening · omonuj
    Design or harden a CI/CD pipeline so it's fast, reproducible, and can't be turned into a supply-chain attack vector. Use when setting up CI for a repo, when builds are slow/flaky, or when a security review flags the pipeline. Covers stage ordering, caching, least-privilege tokens, pinned actions, artifact provenance, and safe deploy gates. GitHub Actions-first, portable.
    0
    installs
  12. Web Performance Audit · omonuj
    Diagnose and fix real web performance problems measured against Core Web Vitals, not vibes. Use when a page feels slow, a Lighthouse/CWV score regressed, or before shipping a heavy feature. Walks load-time (LCP/bundle/images), interactivity (INP/main-thread), and layout-stability (CLS) with the specific fix for each, and forbids premature micro-optimization.
    0
    installs
  13. Container Image Hardening · omonuj
    Build a small, secure, reproducible container image — multi-stage, non-root, pinned, minimal attack surface. Use when writing or fixing a Dockerfile, when images are huge or slow to build, or when a scan flags container CVEs. Covers layer caching order, multi-stage builds, distroless/minimal bases, non-root runtime, and the .dockerignore/secret-leak traps.
    0
    installs
  14. React Component Builder · omonuj
    Build a reusable React component that is accessible, controllable, and correctly typed — not just something that renders. Use when adding a shared/design-system component or refactoring a one-off into something reusable. Enforces the controlled/uncontrolled contract, a11y semantics, forwarded refs, and states beyond the happy path (loading, empty, error, disabled).
    0
    installs
  15. Frontend State Architecture · omonuj
    Decide where each piece of state lives in a frontend app and stop the "everything in a global store" and "server data in useState" anti-patterns. Use when state is tangled, when adding a feature that shares data across the tree, or when choosing state tooling. Provides a decision tree separating server cache, URL, form, and client UI state, plus data-fetching and normalization rules.
    0
    installs
  16. Fanout Cve Score Tuner · omonuj
    Reward-shaping reviewer/tuner for the fanout-cve-rollout task (<TASK_ID>). Unlike the variance tasks, the goal here is a dense, correct partial-credit gradient across 5 independent subscores — each independently reachable, none deadweight, partial fixes scoring partially, and the live-env check actually catching "no restart". Diagnoses gradient problems and picks the smallest safe fix.
    0
    installs
  17. Fanout Cve Task Guardian · omonuj
    End-to-end maintenance skill for the fanout-cve-rollout task (<TASK_ID>). Owns pre-push safety checks, local quality/anatomy gates, push, Oracle validation, and rollout monitoring. This is a REWARD-SHAPED task (5 independent subscores, 0.2 each) — the goal is a dense, correct partial-credit gradient that guides agents through the full remediation, NOT the avg < <TARGET_MEAN> variance target of the sibling tasks. Calls fanout-cve-validation-debugger when Oracle fails and fanout-cve-score-tuner when the gradient is wrong.
    0
    installs
  18. Horizon Agentic Reviewer · omonuj
    Adversarially red-team a horizon (apex-arena) RL task by spinning up a live container, injecting faults via setup.sh, probing as the agent user (model/ubuntu), and pulling rollouts. Runs a 24-point checklist (20 live-container probes + 4 rollout-statistics) to find undisclosed requirements, leaks, dead-weight subscores, and broken evidence trails. Persists failed checks to ~/.horizon-reviews/<uuid>/findings.json.
    0
    installs
  19. Fanout Cve Iteration Loop · omonuj
    Orchestrator skill that runs the full push → Oracle → live red-team → rollout → tune cycle for the fanout-cve-rollout task (<TASK_ID>) until Oracle scores 1.0 and the 5 reward-shaped subscores form a dense, correct partial-credit gradient. Delegates to fanout-cve-task-guardian, fanout-cve-validation-debugger, fanout-cve-score-tuner, and horizon-agentic-reviewer. The agent executes every step except triggering the rollout batch.
    0
    installs
  20. Maddy Score Tuner · omonuj
    Diagnose rollout regressions and tune difficulty for the maddy-delivery-split-brain task (<TASK_ID>). Specializes in keeping avg rollout score < <TARGET_MEAN> with both subscores varying, avoiding deadweight, and not letting the shared drift-controller surface collapse delivery_consistency and observability_governance into one correlated axis. Picks the smallest safe lever for the observed symptom.
    0
    installs
  21. Istio Score Tuner · omonuj
    Diagnose rollout regressions and tune difficulty for the variation-istio-split-brain task (<TASK_ID>). Specializes in keeping avg rollout score < <TARGET_MEAN> with both subscores varying AND decorrelated, by tightening/loosening the two implemented /etc/bleater gates and the metadata gates — never by stacking new mechanics and never by adding behavioral/traffic checks (no istiod runs). Picks the smallest safe lever for the observed symptom.
    0
    installs
  22. Maddy Task Guardian · omonuj
    End-to-end maintenance skill for the maddy-delivery-split-brain task (<TASK_ID>). Owns the pre-push safety checks, local quality/anatomy gates, push, Oracle validation handoff, and rollout monitoring. Primary goal is to keep avg rollout score < <TARGET_MEAN> with healthy variance across both subscores. Calls maddy-validation-debugger when Oracle fails and maddy-score-tuner when rollouts regress.
    0
    installs
  23. Maddy Iteration Loop · omonuj
    Orchestrator skill that runs the full push → Oracle → live red-team → rollout → tune cycle for the maddy-delivery-split-brain task (<TASK_ID>) until Oracle scores 1.0 and rollout avg < <TARGET_MEAN> with both subscores varying. Delegates to maddy-task-guardian, maddy-validation-debugger, maddy-score-tuner, and horizon-agentic-reviewer at the right phases. The agent itself executes every step except triggering the rollout batch.
    0
    installs
  24. Istio Task Guardian · omonuj
    End-to-end maintenance skill for the variation-istio-split-brain task (<TASK_ID>). Owns the pre-push safety checks, local quality/anatomy gates, push, Oracle validation handoff, and rollout monitoring. Primary goal is to keep avg rollout score < <TARGET_MEAN> with healthy, decorrelated variance across both subscores. Calls istio-validation-debugger when Oracle fails and istio-score-tuner when rollouts regress.
    0
    installs
  25. Mtls Score Tuner · omonuj
    Diagnose rollout regressions and tune difficulty for the variation-fanout-pipeline-break task (<TASK_ID>). Specializes in keeping avg rollout score < <TARGET_MEAN> with both subscores varying, avoiding deadweight, and not introducing hidden coupling between mtls_handshake and trust_governance. Picks the smallest safe lever for the observed symptom.
    0
    installs
  26. Istio Iteration Loop · omonuj
    Orchestrator skill that runs the full push → Oracle → rollout → tune cycle for the variation-istio-split-brain task (<TASK_ID>) until Oracle scores 1.0 and rollout avg < <TARGET_MEAN> with both subscores varying and decorrelated. Delegates to istio-task-guardian, istio-validation-debugger, and istio-score-tuner at the right phases. The live red-team (horizon-agentic-reviewer) is DISABLED by user directive and is never invoked. The agent executes every step except triggering the rollout/eval batch.
    0
    installs
  27. Fanout Cve Validation Debugger · omonuj
    Fetches and interprets validation logs (No-Op and Oracle) for the fanout-cve-rollout task (<TASK_ID>). Maps each of the 5 reward-shaped subscores' failures to a root cause and the smallest safe fix. Use after a validation fails before editing anything.
    0
    installs
  28. Mtls Task Guardian · omonuj
    End-to-end maintenance skill for the variation-fanout-pipeline-break task (<TASK_ID>). Owns the pre-push safety checks, local quality/anatomy gates, push, Oracle validation handoff, and rollout monitoring. Primary goal is to keep avg rollout score < <TARGET_MEAN> with healthy variance across both subscores. Calls mtls-validation-debugger when Oracle fails and mtls-score-tuner when rollouts regress.
    0
    installs
  29. Mtls Iteration Loop · omonuj
    Orchestrator skill that runs the full push → Oracle → live red-team → rollout → tune cycle for the variation-fanout-pipeline-break task (<TASK_ID>) until Oracle scores 1.0 and rollout avg < <TARGET_MEAN> with both subscores varying. Delegates to mtls-task-guardian, mtls-validation-debugger, mtls-score-tuner, and horizon-agentic-reviewer at the right phases. The agent itself executes every step except triggering the rollout batch.
    0
    installs
  30. Maddy Validation Debugger · omonuj
    Fetches and interprets validation logs (No-Op and Oracle) for the maddy-delivery-split-brain task (<TASK_ID>). Maps observed log patterns to root causes and the smallest safe fix. Use after a validation fails to understand why it failed before editing anything.
    0
    installs
  31. Oncall Score Tuner · omonuj
    Diagnose rollout regressions and tune difficulty for the oncall-schedule-coverage-collapse task (<TASK_ID>). Keeps avg rollout score < <TARGET_MEAN> with both subscores varying and decorrelated (coverage_restored vs monitoring_governance share the drift surface), and never weakens the hidden <metadata-key> / gap-rule variance gates. Picks the smallest safe lever for the observed symptom.
    0
    installs
  32. Istio Validation Debugger · omonuj
    Fetches and interprets validation logs (No-Op and Oracle) for the variation-istio-split-brain task (<TASK_ID>). Maps observed log patterns to root causes and the smallest safe fix. Use after a validation fails to understand why it failed before editing anything.
    0
    installs
  33. Oncall Task Guardian · omonuj
    End-to-end maintenance skill for the oncall-schedule-coverage-collapse task (<TASK_ID>). Owns the pre-push safety checks, local quality/anatomy gates, push, Oracle validation handoff, and rollout monitoring. Primary goal is to keep avg rollout score < <TARGET_MEAN> with healthy, decorrelated variance across both subscores. Calls oncall-validation-debugger when Oracle fails and oncall-score-tuner when rollouts regress.
    0
    installs
  34. Oncall Iteration Loop · omonuj
    Orchestrator skill that runs the full push → Oracle → live red-team → rollout → tune cycle for the oncall-schedule-coverage-collapse task (<TASK_ID>) until Oracle scores 1.0 and rollout avg < <TARGET_MEAN> with both subscores varying and decorrelated. Delegates to oncall-task-guardian, oncall-validation-debugger, oncall-score-tuner, and horizon-agentic-reviewer at the right phases. The agent executes every step except triggering the rollout batch.
    0
    installs
  35. Mtls Validation Debugger · omonuj
    Fetches and interprets validation logs (No-Op and Oracle) for the variation-fanout-pipeline-break task (<TASK_ID>). Maps observed log patterns to root causes and the smallest safe fix. Use after a validation fails to understand why it failed before editing anything.
    0
    installs
  36. Oncall Validation Debugger · omonuj
    Fetches and interprets validation logs (No-Op and Oracle) for the oncall-schedule-coverage-collapse task (<TASK_ID>). Maps observed log patterns to root causes and the smallest safe fix. Use after a validation fails to understand why it failed before editing anything.
    0
    installs