psy-exp-designer

psy-exp-designer is a skill for Codex from soupandpsy/amazing-psycoder-skills. It costs 120 tokens per session (8,679 once invoked), scanned B, original, MIT.

A planning guide for designing psychological experiments before they are programmed. It turns an idea or partial procedure into a complete experiment specification for tools such as PsychoPy, jsPsych, or Psychtoolbox; TDD-style implementation is not its role.

In plain words
What is it for?
Use it to plan studies such as Stroop, IAT, N-back, priming, dot-probe, or visual-search tasks and prepare a validated configuration for later coding.
Why use it?
It makes timing, conditions, randomization, responses, feedback, and saved data explicit before coding begins, reducing unclear or inconsistent experiment designs.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions Claude Code; mentions Codex.

Good fit Use it to plan studies such as Stroop, IAT, N-back, priming, dot-probe, or visual-search tasks and prepare a validated configuration for later coding.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add soupandpsy/amazing-psycoder-skills --skill psy-exp-designer
Clone the repo
git clone --depth 1 https://github.com/soupandpsy/amazing-psycoder-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for psy-exp-designer

README.md
[![agentmods](https://agentmods.dev/badge/skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer/github.svg)](https://agentmods.dev/skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer)
Your own site
<a href="https://agentmods.dev/skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer"><img src="https://agentmods.dev/badge/skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for psy-exp-designer

Your own site · 80×15
<a href="https://agentmods.dev/skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer"><img src="https://agentmods.dev/badge/skills/soupandpsy/amazing-psycoder-skills/psy-exp-designer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,679 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00120 $0.08679
Opus 5 $0.00060 $0.04339
Sonnet 5 $0.00024 $0.01736
Haiku 4.5 $0.00012 $0.00868

Measured 10d ago against content hash 571a7a7421ba, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade B, and why

psy-exp-designer scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks the agent to reveal its instructionsmediumSystem prompt leakage

Directions to print, repeat or translate the system prompt extract configuration the operator did not intend to expose.

- Between-sequence behavior: does the experiment pause, show instructions, or auto-advance?
amazing-psycoder/psy-exp-designer/SKILL.md · 500 lines

How it starts

The opening of the file, as written. The whole thing — 500 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Psychological Experiment Designer

Version

v1.4.0 — unified evidence-gated contract, 2026-07-23. Sub-skill of amazing-psycoder.

Purpose

Convert psychological experiment ideas into a complete experiment specification (config YAML) through progressive refinement, then route the validated config to psy-exp-coder. Do not generate implementation code in this skill.

Design Philosophy

Let the user own design decisions while the system enforces explicit semantics, progressive confirmation, traceable assumptions, and a complete config before code generation. Paradigm references suggest questions; they do not own the design.

Paradigm References Are Non-Authoritative

paradigm and paradigm_family classify a design and may select an optional knowledge reference. They never select executable logic or initialize hidden experiment fields. The user's confirmed windows, condition model, correctness rules, randomization constraints, feedback, and data schema are authoritative.

Do not collapse variants into a family implementation. Classic color-word, semantic, emotional, bilingual, and numerical Stroop may require different stimulus schemas, factors, derived variables, correctness rules, and analysis interpretations. If no exact reference exists, continue as a custom design and derive every semantic rule from the user-confirmed config.

When Not to Use

Route implementation/debugging to psy-exp-coder, readiness audits to psy-exp-reviewer, and answer quick platform API questions directly.

Core Model

Model every experiment as Experiment → Sequence → Window → Data. Require one trial-summary row per trial; add a linked event-level table when a trial has repeated responses, trajectories, adaptive steps, drag events, or other one-to-many observations. Never force repeated events into a single lossy cell.

Red Lines

Hard prohibitions. These must never be violated — no exceptions, no "just this once."

# Rule Applies to Why
1 No code generation before trial window timeline is complete All platforms Code written without a validated window sequence will have structural errors that are expensive to fix
2 No assumed response mapping All platforms Which key means what answer must be confirmed with the user. Guessing invalidates accuracy data
3 No blocking sleep in timing-critical or interactive windows PsychoPy, jsPsych Blocking waits make timing and abort handling unreliable. Use frame/timeline scheduling; never use a setup wait as an RT source
4 No event.getKeys(maxWait=...) PsychoPy Blocks the event loop. Use keyboard.Keyboard with win.callOnFlip(kb.clock.reset)
5 No data saved only at end of experiment All platforms Crash = all data lost. Save incrementally per trial or per sequence with try/finally
6 No silent filling of [MISSING] values All platforms Every [MISSING] must be resolved by asking the user or offering an explicitly-flagged default
7 Font-sensitive/CJK text needs an explicit font strategy All platforms Record a suitable family/path/fallback for the target runtime and verify glyphs and layout visually; browser fallback stacks are acceptable when tested
8 No skipping relevant design decisions All platforms Exact paradigm references may suggest questions, but only the actual experiment specification determines what must be confirmed
9 No rt_onset omitted on response windows All platforms Incorrect or missing RT onset invalidates all reaction time data. The coder will refuse to generate if absent
10 No code delivery without reviewer pass All platforms All generated code must pass through psy-exp-reviewer before data collection. Programming → Coder → Reviewer is a mandatory chain

Read the full file on GitHub · 500 lines

Files

What ships with it

52 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 500 lines · 120 tokens per session scan B 571a7a7421ba

Subscribe to this mod's changes

psy-exp-designer is a skill published in the GitHub repository soupandpsy/amazing-psycoder-skills (33 stars, last pushed 26d ago), licensed MIT. It adds 120 tokens to every session and 8,679 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it B with 1 finding (asks the agent to reveal its instructions). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

qector-math-foundations

The strict mathematical ground rules for every QECTOR claim. Encodes the F2 notation, the 16 correctness theorems, the Wilson 95% score interval for LER, the required-artifact- metadata contract, safe-wording rules, and the published limitations that must travel with every claim (reference manual v1.0.0, DOI…

GuillaumeLessard/qector-claude-plugin · 122 tokens

qector-core

Core domain knowledge and verified facts for the QECTOR quantum error correction platform (plugin v1.0.6, decoder wheel 1.0.0). Covers the app-free library MCP server (8 stable tools), the opt-in research server (29 provisional tools including the evidence layer), the privileged admin server (3 tools), 11 slash…

GuillaumeLessard/qector-claude-plugin · 160 tokens

qector-bp-osd

Belief propagation with ordered-statistics post-processing (BP-OSD) for QECTOR. Covers the box-plus kernel phi(x) = -ln(tanh(x/2)), the log-domain sum-product / min-sum / relay schedules, the OSD-0 / OSD-W solve (Theorem 11), the ambiguity-cluster partition (Theorem 12), and the worked examples from the v1.0.0…

GuillaumeLessard/qector-claude-plugin · 133 tokens

qector-codes-builder

Building and inspecting QEC codes for QECTOR. Covers the v1.0.0 library code families (repetition, ring, rotatedsurface, unrotatedsurface, toric, heavyhex, colorcode), the legacy generatechecks generators, and the custom-matrix / hypergraph-product / bicycle paths. Load when a question asks "what code should I use?"…

GuillaumeLessard/qector-claude-plugin · 103 tokens

qector-decoders-deep-dive

Per-decoder internals from the v1.0.0 reference manual. For each of the fifteen specialised backends, gives the algorithm, the theorem(s) it inherits, its claim boundary, and a one-line code snippet. Load when a question asks "how does X work", "which decoder is right for Y", or "what is the difference between A and…

GuillaumeLessard/qector-claude-plugin · 100 tokens

qector-glossary

QECTOR terminology, notation, and symbols from the v1.0.0 reference manual (Appendix A and B). Load for any question about what a term means, what symbol is used, or how the notation is written.

GuillaumeLessard/qector-claude-plugin · 53 tokens