Skip to main content
Jeden Skill in Manus ausführen
mit einem Klick
GitHub-Repository

kueue

kueue enthält 59 gesammelte Skills von kubernetes-sigs, mit Repository-Berufsabdeckung und Skill-Detailseiten auf SkillsMP.

gesammelte Skills
59
Stars
2.7k
aktualisiert
2026-07-10
Forks
699
Berufsabdeckung
4 Berufskategorien · 100% klassifiziert
Repository-Explorer

Skills in diesem Repository

was-cluster
Netzwerk- und Computersystemadministratoren

Build and manage a kind cluster for Workload-Aware Scheduling (WAS) e2e tests. Use when the user wants to set up, run tests against, or tear down a WAS test cluster built from Kubernetes main.

2026-07-10
avoidable-complexity
Softwarequalitätssicherungsanalysten und -tester

Flag solutions more elaborate than the problem requires — complexity that exists only because the author reached for a pattern.

2026-06-01
duplicated-logic
Softwarequalitätssicherungsanalysten und -tester

Flag identical (or near-identical) blocks across types/adapters/call sites that should live in a shared helper — and newly extracted helpers with only one caller.

2026-06-01
illogical-structure
Softwarequalitätssicherungsanalysten und -tester

Flag code organization that a future maintainer will struggle to follow, modify, or extend.

2026-06-01
misplaced-logic
Softwarequalitätssicherungsanalysten und -tester

Flag code put somewhere a reader would not expect to find it — cleanup scattered across callers, validation deep in business logic.

2026-06-01
nonsensical-decisions
Softwarequalitätssicherungsanalysten und -tester

Flag unnecessary indirection, mismatched abstractions, or confusing data flow that obscures what the code is doing.

2026-06-01
pointless-intermediate-variables
Softwarequalitätssicherungsanalysten und -tester

Flag redundant local variables that add noise without adding clarity.

2026-06-01
scope-creep
Softwarequalitätssicherungsanalysten und -tester

Flag diffs that bundle a bugfix with an unrelated refactor, or generalize a change to all types when only one type needs it.

2026-06-01
architectural-decisions
Softwareentwickler

Review a diff for small-scale structural problems — unjustified complexity, duplicated logic, scope creep, or misplaced code.

2026-06-01
deleted-backwards-compatibility-code
Softwareentwickler

Hard blocker — flag removal or relocation of code that manages cluster state owned by previous controller versions.

2026-06-01
feature-gate-interaction-bugs
Softwareentwickler

Flag feature-gated behavior whose gate-off path is incorrect — early returns that skip cleanup, or state set only when on but read unconditionally.

2026-06-01
logic-errors
Softwareentwickler

Flag incorrect conditionals, inverted boolean checks, off-by-one errors, unhandled edge cases, race conditions, or mishandled error returns.

2026-06-01
buggy-behavior
Softwareentwickler

Review a diff for behavioral defects — logic errors, broken edge cases, feature-gate bugs, and deletions that break backwards compatibility during rolling upgrades.

2026-06-01
unnecessary-guard-conditions
Softwareentwickler

Flag extra checks that are logically unreachable at the call site — they add noise and can mask future regressions.

2026-06-01
code-eval
Softwareentwickler

Evaluate the quality of a git diff between two commits by delegating per-skill analysis (Code Style, Buggy Behavior, Comments, Architectural Decisions, Security) to subagents, then aggregating their findings and recommendations into a scored report.

2026-06-01
code-style-typos
Softwareentwickler

Flag typos in identifiers, strings, or any text introduced by the diff.

2026-06-01
convention-drift
Softwareentwickler

Flag new code that breaks naming conventions already established in the same file or package.

2026-06-01
imprecise-names
Softwareentwickler

Flag identifiers whose name does not describe exactly what they contain — drift from package patterns, contradictory contents, misnamed feature gates, asymmetric mirror fields.

2026-06-01
misaligned-test-names
Softwarequalitätssicherungsanalysten und -tester

Flag unit or integration test function names that do not reflect the function or behavior under test.

2026-06-01
reinvented-helpers
Softwareentwickler

Flag logic that duplicates an existing util/helper function instead of reusing it.

2026-06-01
code-style
Softwareentwickler

Review a diff for naming precision, convention drift, reinvented helpers, log-verbosity mistakes, misaligned test names, and typos.

2026-06-01
wrong-log-verbosity
Softwareentwickler

Flag per-reconcile-cycle log lines emitted at V(2) — recurring reconcile-loop logs must be V(4) or higher.

2026-06-01
comment-typos
Softwareentwickler

Flag typos and obvious errors in comment text.

2026-06-01
inaccurate-comments
Softwareentwickler

Flag any comment or docstring that no longer matches the code — these mislead future maintainers who trust them.

2026-06-01
missing-deferred-removal-markers
Softwareentwickler

Flag temporary or deprecated compatibility-shim code kept in the diff without a deferred-removal comment naming the removal version and a tracking issue.

2026-06-01
over-commenting
Softwareentwickler

Flag comments that explain what self-documenting code already says.

2026-06-01
comments
Softwareentwickler

Review a diff for comment hygiene — over-commenting, what-not-why narration, inaccurate comments, and missing TODOs on compatibility shims.

2026-06-01
wrong-kind-of-comment
Softwareentwickler

Flag comments that describe *what* the code does instead of *why* it does it.

2026-06-01
annotation-label-namespace-abuse
Informationssicherheitsanalysten

Flag generic loops over obj.Annotations that copy, forward, or echo values — allow tenant injection into reserved kueue.x-k8s.io/ namespace.

2026-06-01
authn-authz-relaxation
Informationssicherheitsanalysten

Flag AuthN/AuthZ relaxation — webhook token skipping, failurePolicy Ignore, missing SubjectAccessReview, wildcard RBAC, privileged pod specs (CWE-269, CWE-287, CWE-306, CWE-862, CWE-863).

2026-06-01
feature-gated-insecure-paths
Informationssicherheitsanalysten

Flag feature-gated behavior whose security assumptions do not hold in both gate-on and gate-off states; require a comment near the gate check for new alpha attack surface.

2026-06-01
information-disclosure
Informationssicherheitsanalysten

Flag information-disclosure patterns — full-object logging, request echoing, credentials in status/annotations, kubeconfig logging, secret-bearing status (CWE-200, CWE-522, CWE-532, CWE-552).

2026-06-01
injection
Informationssicherheitsanalysten

Flag injection vectors from user-supplied strings — exec, SSRF, fmt.Sprintf-built selectors/URLs, template rendering, query concatenation (CWE-78, CWE-94, CWE-918).

2026-06-01
input-validation
Informationssicherheitsanalysten

Flag missing input validation at trust boundaries — user-settable CR fields, webhook payloads, labels, annotations, or untrusted deserialization (CWE-20, CWE-502).

2026-06-01
integration-adapter-trust-boundary
Informationssicherheitsanalysten

Flag integration adapters reading credential-like fields from third-party CRDs without treating them as untrusted (RayCluster, SparkApplication, JobSet).

2026-06-01
nil-safety
Softwareentwickler

Flag unguarded dereferences of optional pointer fields reachable from a malformed CR, and goroutines without recover (CWE-476).

2026-06-01
path-traversal
Informationssicherheitsanalysten

Flag file paths built from user-supplied names without sanitization, symlink-following in tenant dirs, and unvalidated archive extraction (CWE-22).

2026-06-01
resource-bounds-dos
Informationssicherheitsanalysten

Flag missing resource bounds / DoS resistance — uncapped loops or allocations, missing timeouts, reconciler-wedging input, unbounded metric cardinality (CWE-400, CWE-770).

2026-06-01
security
Informationssicherheitsanalysten

Review a diff for security issues exploitable by a tenant, neighbouring controller, or malicious workload spec — input validation, injection, DoS, nil-safety, authz, info disclosure, supply chain, webhook safety.

2026-06-01
supply-chain-hygiene
Informationssicherheitsanalysten

Flag supply-chain hygiene gaps — unpinned image refs, TLS bypass, unjustified go.mod replace directives, curl|sh, moving-tag GitHub Actions (CWE-295, CWE-494).

2026-06-01
Zeigt die Top 40 von 59 gesammelten Skills in diesem Repository.