ワンクリックで
scaffold-prng
Implement or extend the in-house seeded PRNG stored in GameState — zero external dependencies, fully deterministic
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implement or extend the in-house seeded PRNG stored in GameState — zero external dependencies, fully deterministic
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Write cutting-edge and modern native CSS. Apply this skill whenever writing, reviewing, or refactoring CSS for components, layouts, design systems, or theming, even if the user doesn't say "modern CSS" explicitly. Covers a self-contained design-token scale (color, size, shadow, ease, type), cascade layers (@layer), @scope for component isolation (donut scopes, :scope specificity, scoping proximity), container queries, :has(), OKLCH/color-mix, native nesting, subgrid, fluid typography via clamp(), scroll-driven animations, logical properties, and concrete native replacements for SCSS mixins, maps, and variables.
Apply this skill whenever the task involves web security: writing or auditing HTTP security headers, configuring CSP, CORS, HSTS, or Permissions-Policy, sanitising untrusted HTML (Sanitizer API / DOMPurify), implementing Trusted Types to prevent DOM-XSS, setting up the Reporting API to capture CSP/COEP/deprecation violations, hardening cookies (SameSite, HttpOnly, Secure, Partitioned), implementing WebAuthn / Credential Management, using Web Crypto for client-side cryptography, or auditing code for XSS, CSRF, clickjacking, MIME-sniffing, mixed content, or cross-origin data leakage. Triggers on keywords: XSS, CSRF, CSP, CORS, HSTS, SameSite, innerHTML, eval, Trusted Types, Sanitizer, ReportingObserver, WebAuthn, cross-origin, clickjacking, Content-Security-Policy, Referrer-Policy, Permissions-Policy, subresource integrity, cookie security, secure context, same-origin, mixed content.
Patterns for invoking the GitHub CLI (gh) from agents. Covers structured output, pagination, repo targeting, search vs list, gh api fallback.
Audit and update durable architecture guidance after a cross-layer implementation, file move, package boundary change, coverage config change, or SDTE feature. Use when agent needs to reconcile AGENTS.md, package AGENTS.md files, local .agents/skills, older specs, dynamic imports, and test or coverage configuration with the architecture that was actually implemented.
Run the Spec → Design → Tasks → Execution workflow for non-trivial work — produces /specs/<feature>/{spec,design,tasks}.md, drives atomic per-task execution, and ends with a Review phase. Invoke when starting a new package, new game system, GameState shape change, or any change touching > 3 files or crossing a layer boundary.
Best practices for building scalable plain Web Components without turning custom elements into “god objects”. Provides patterns that keep Web Components modular, reusable, maintainable, and focused on UI concerns.
| name | scaffold-prng |
| description | Implement or extend the in-house seeded PRNG stored in GameState — zero external dependencies, fully deterministic |
Use when adding randomness to the game, or when setting up the PRNG for the first time.
Rule: All randomness flows through the seeded PRNG stored in GameState. Math.random() and crypto.randomUUID() are forbidden everywhere.
The in-house PRNG lives in packages/utils/module/fp/prng.ts and is exported from @bruff/utils.
export const createPrng = (seed: number): PrngState => ({
accumulator: seed,
type: "prng-state",
});
export const nextId = (prng: PrngState): { prng: PrngState; value: string };
In packages/game/lib/core/types.ts:
import type { PrngState } from "@bruff/utils"; // or local import
export type GameState = Readonly<{
stateVersion: number;
seed: number;
prng: PrngState;
frameIndex: number;
/* … other fields … */
}>;
In createInitialState, accept or derive a deterministic seed:
import { createPrng } from "@bruff/utils";
import { CURRENT_STATE_VERSION } from "../core/constants.js";
const createInitialState = (canvas: CanvasSize, seed = 1): GameState => ({
stateVersion: CURRENT_STATE_VERSION,
seed,
prng: createPrng(seed),
frameIndex: 0,
/* … */
});
Build entity IDs on top of nextId:
const drawId = <Tag extends string>(
prng: PrngState,
): { id: Brand<string, Tag>; prng: PrngState } => {
const step = nextId(prng);
return { id: brand<Tag>(step.value), prng: step.prng };
};
Usage in an entity factory:
const step = drawId<"EnemyId">(state.prng);
return { ...state, prng: step.prng /* use step.id */ };
import { test, fc } from "@fast-check/vitest";
import { expect } from "vitest";
import { createPrng, nextNumber } from "@bruff/utils";
test.prop([fc.integer()])(
"produces identical sequences for the same seed",
(seed) => {
const run = (s: number) => {
const first = nextNumber(createPrng(s));
const second = nextNumber(first.prng);
return [first.value, second.value];
};
expect(run(seed)).toStrictEqual(run(seed));
},
);
test.prop([fc.integer()])("produces values in [0, 1)", (seed) => {
const { value } = nextNumber(createPrng(seed));
expect(value).toBeGreaterThanOrEqual(0);
expect(value).toBeLessThan(1);
});
Math.random() anywhere in the codebasecrypto.randomUUID() or crypto.getRandomValues()