ivuorinen

63 mods across 1 repository, 3 stars between them.

agent-loopholes

25

ivuorinen/skills

Command

Hostile audit of the project's agent enforcement surface: assume every constraint is bypassable until the enforcement path is traced end-to-end and proven to bind, then close each proven loophole and re-run the bypass to prove it blocks.

3 2d ago A 0 tokens

agent-rules

26

ivuorinen/skills

Command

Audits the project's .claude/rules/ configuration end-to-end: validates every rule file, classifies every rule in CLAUDE.md as correctly placed or misplaced, and generates concrete new-rule suggestions from audit artifacts and project conventions. Assume every rule file has defects until proven otherwise.

3 2d ago A 0 tokens

arch-profile

27

ivuorinen/skills

Command

Profiles a codebase to identify which architectural patterns are in use, documents structural evidence for each, detects canonical combinations, and infers the compound structural rules that apply. Hostile — every pattern claim must be backed by concrete structural evidence. Writes a profile, not findings: the output…

3 2d ago A 0 tokens

arch

28

ivuorinen/skills

Command

Hostile architectural audit: assumes violations exist and hunts for proof, validating the codebase against its detected (or declared) architecture.

3 2d ago A 0 tokens

audit

29

ivuorinen/skills

Command

Adversarial, exhaustive review of the entire repository across code, tests, documentation, and configuration, with optional fixing in the same run. Assumes the code is incorrect until proven otherwise. This is the default command when the invocation names no other.

3 2d ago A 0 tokens

baseline

30

ivuorinen/skills

Command

Snapshot the current open findings as an accepted baseline so release-gate fails only on findings filed after it — adopting the toolkit on a repo with pre-existing debt without deleting, falsifying, or hiding a single real finding.

3 2d ago A 0 tokens

cache

31

ivuorinen/skills

Command

Hostile audit of caching correctness: assume every cache serves stale data after a write, shares a key across entities that must not share one, grows without bound, and stampedes on expiry — then prove where. A cache is a correctness liability until its key, its invalidation, its bound, and its expiry behavior are all…

3 2d ago A 0 tokens

ci

32

ivuorinen/skills

Command

Hostile audit of a project's CI/CD pipeline definitions (GitHub Actions first-class; GitLab CI and other YAML pipelines by the same principles): assume every workflow is exploitable or silently non-gating until each file is checked against every defect class.

3 2d ago A 0 tokens

commits

33

ivuorinen/skills

Command

Hostile audit of every commit message in a range against the diff it labels: assume every label lies until the hunks prove it — release automation (release-please, semantic-release) reads only the message, so a mislabeled commit silently mis-versions the release.

3 2d ago A 0 tokens

complexity

34

ivuorinen/skills

Command

Forces the laziest solution that actually works — simplest, shortest, most minimal — on every coding task, and audits a diff, plan, or whole repo for over-engineering. Channel a lazy senior developer who has seen every over-engineered codebase and been paged at 3am for one: lazy means efficient, not careless, and the…

3 2d ago A 0 tokens

concurrency

35

ivuorinen/skills

Command

Hostile single-shot concurrency-safety audit: assume every piece of state reachable from two or more concurrent execution contexts is corrupted until a happens-before edge proves otherwise, and file each defect with the shared state, the contexts that reach it, the corrupting interleaving, and a concrete…

3 2d ago A 0 tokens

config

36

ivuorinen/skills

Command

Hostile single-shot application/runtime configuration audit: cross-reference every config value read by code against every declared source of truth and hunt undocumented config, missing validation, unsafe prod defaults, config drift, committed secrets, type-coercion traps, and hardcoded environment values.

3 2d ago A 0 tokens

contract

37

ivuorinen/skills

Command

Hostile audit of the project's public contract surface: assume the contract has drifted until every declared element is verified against the implementation, and every surface change since the last release tag is verified against the semver bump the commits declare.

3 2d ago A 0 tokens

cr

38

ivuorinen/skills

Command

Tool-driven implementation of unresolved PR/MR review comments on GitHub, GitLab or Bitbucket: fetch every comment thread plus the out-of-thread notices (review bodies, bot summaries), evaluate each for technical validity, implement valid ones one at a time with a full validation pass after each, and scan the codebase…

3 2d ago A 0 tokens

dead-code

39

ivuorinen/skills

Command

Hostile hunt for code that is unreferenced or unreachable — with the deletion-safety discipline that no symbol is called dead until every reachability channel is ruled out. Assume the codebase hides both cruft that should be deleted and live code that only looks dead; prove which is which. Grep-shows-no-callers is a…

3 2d ago A 0 tokens

deps

40

ivuorinen/skills

Command

Hostile audit of every dependency the project already declares or silently relies on: every manifest entry is dead weight until an actual usage is proven, and every import is undeclared until a manifest names it.

3 2d ago A 0 tokens

docs

41

ivuorinen/skills

Command

Hostile documentation review: assumes every claim in every doc is wrong until verified against the codebase. Two-directional — docs→code (does code match the claim?) and code→docs (is this code undocumented?).

3 2d ago A 0 tokens

errors

42

ivuorinen/skills

Command

Hostile audit of application error handling: assume failures are being swallowed and prove where — every path where a real failure becomes silence (lost data, a fabricated success, an outage no operator sees) is a finding; a path that signals is not.

3 2d ago A 0 tokens

execute-plan

43

ivuorinen/skills

Command

Execute an already-approved implementation plan task by task, verifying each task the moment it is done, stopping when blocked instead of guessing, and finishing behind a gated commit/push menu. Assumes the plan is stale until re-checked against current code and that no task is done until its verification is observed…

3 2d ago A 0 tokens

help

44

ivuorinen/skills

Command

Prints the categorized command listing. Writes nothing, audits nothing.

3 2d ago A 0 tokens

i18n

45

ivuorinen/skills

Command

Hostile single-shot internationalization/localization audit against the project's declared locale scope: assume every user-facing string, number, date, and sort is hardcoded to one locale until the code proves it routes through a localization mechanism.

3 2d ago A 0 tokens

iac

46

ivuorinen/skills

Command

Hostile audit of infrastructure-as-code — container images (Dockerfiles), orchestration (Kubernetes, Compose, Helm), and cloud provisioning (Terraform, CloudFormation, Pulumi): assume every image runs as root, every network is open to the world, every store is unencrypted, and every credential is committed, until each…

3 2d ago B 0 tokens

leaks

47

ivuorinen/skills

Command

Hostile single-shot resource-lifecycle audit: assume every acquired resource leaks on the failure path until a guaranteed-release construct proves otherwise, and file each leak with the acquisition site, the path where release is skipped, and the accumulation driver.

3 2d ago A 0 tokens

migrations

48

ivuorinen/skills

Command

Hostile single-shot audit of database schema and data migrations: assume every migration eats production until proven safe.

3 2d ago A 0 tokens