Thanks for your interest. This project sits at the intersection of open-source tooling and evidence-based psychology, so contributions need to meet a slightly higher bar than typical software projects.
- Bug fixes — especially in the affirmation generator, compatibility checker, or export functions
- New export formats — e.g. iCal export, Obsidian template, HTML dashboard
- New conflict-pair patterns — if you can cite a source for why two goal types create identity tension
- Documentation improvements — clearer examples, better onboarding, translations
- Accessibility — making the protocol output more usable for people with visual/hearing impairments
- Test coverage — unit tests for the builder functions
- Pandoc templates — custom LaTeX templates for nicer PDFs
- New affirmation variant transforms — only if grounded in research (cite the paper)
- Changes to the session structure — the phase order and durations are evidence-backed; any change needs a citation
- New entrainment frequencies — must be supported by peer-reviewed studies (432 Hz won't pass)
- Unverified claims in the research intelligence file — everything tagged
[H]must trace to a peer-reviewed or declassified source. No blog posts, no YouTube videos, no "ancient wisdom." - Trauma-processing features — this tool explicitly avoids trauma work for safety reasons. Do not add affirmations that instruct users to revisit traumatic memories.
- Memory-erasure framing — affirmations must use "build new pathways alongside" language, never "erase" or "delete" old beliefs.
- Strobe/flash elements — epilepsy risk. Not negotiable.
- Copyrighted content — don't paste affirmations, scripts, or audio from commercial subliminal products.
- Fork the repository
- Create a feature branch:
git checkout -b feat/your-feature - Make your changes
- Test — at minimum, run the generator against
research-intelligence.mdand verify the output:python3 scripts/build_protocol.py \ -i research-intelligence.md \ -o /tmp/test-output.md \ --goal "Test goal" \ --identity-shift "Old -> New" \ --behaviors "Test behavior" \ --values "TestValue" \ --affirmation-variants 2 \ --voice-script --calendar --checkin --export-json
- If adding research findings to
research-intelligence.md, tag each with[H],[M], or[L]and include the full citation - Commit with a clear message
- Open a pull request
The research-intelligence.md file is the backbone of the protocol. Findings must follow this format:
## Domain Name
- [H] Finding description (Author et al. Year, Journal)
- [M] Finding description (Author et al. Year, Journal)
- [L] Finding description (Author et al. Year, Journal)Confidence levels:
- [H] = High: peer-reviewed, replicated, or meta-analytic
- [M] = Moderate: single study, mixed evidence, or promising but not yet replicated
- [L] = Low: preliminary, theoretical, or anecdotal — used for context but never included in protocol output
Only [H]-tagged findings are parsed into the protocol. If you add an [M] finding that you believe should be promoted to [H], include a brief justification in your PR.
- Python 3.10+ (use
X | Yunion syntax, notUnion[X, Y]) - Functions are pure where possible —
build_protocol()takes data, returns a string - No external dependencies in
build_protocol.py(stdlib only). Pandoc is optional. - Keep the CLI interface flat — flags, not subcommands
- Type hints on all function signatures
Before merging, verify:
- No trauma-reactivation instructions added
- No memory-erasure framing in generated output
- No session duration escalation beyond 25 min
- No unverified claims promoted to
[H]confidence - Medical disclaimer remains as first section in generated protocol
- Exclusion criteria are intact
- No new external dependencies introduced without justification
Open an issue. Be specific about what you're trying to achieve and what's blocking you.