RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/Aledon8/OpenLeukemia/diff

Two files, one repository

Aledon8/OpenLeukemia ships 4 formats across 40 indexed files. The question worth asking is whether the second one says anything the first does not.

CompareAGENTS.md ↔ CLAUDE.mdAGENTS.md ↔ Copilot instructionsAGENTS.md ↔ Cursor rulesCLAUDE.md ↔ Copilot instructionsCLAUDE.md ↔ Cursor rulesCopilot instructions ↔ Cursor rules
A · AGENTS.md · 783 wordsB · CLAUDE.md · 444 words
What each file covers, counted
DimensionSharedOnly in AOnly in BOverlap
Sections01360%
Commands125071%
Section tags61175%

What each file covers

Sections

0 shared · 13 only in A · 6 only in B
  • − Project AI Instructions
  • − Project Overview
  • − Tech Stack
  • − Repository Layout
  • − Setup
  • − Development
  • − Tests And Checks
  • − Code Style
  • − Architecture Rules
  • − Product And Safety Rules
  • − Frontend Rules
  • − AI-Service Rules
  • − AI Agent Behavior
  • + OpenLeukemia Claude Memory
  • + Stack
  • + Core Rules
  • + Commands
  • + Working Style
  • + Claude Workflow Patterns

Commands

12 shared · 5 only in A · 0 only in B
  • − make frontend-lint
  • − make frontend-typecheck
  • − make ai-service-lint
  • − make ai-service-test
  • − mypy
  •   npm install
  •   python -m venv .venv
  •   python -m pip install -e ".[dev]"
  •   npm --workspace frontend run dev
  •   python -m uvicorn app.main:app --reload
  •   npm run lint:frontend
  •   npm run typecheck:frontend
  •   npm test --workspace frontend
  •   npm --workspace frontend run build
  •   python -m ruff check .
  •   python -m pytest
  •   python -m mypy app

Section tags

6 shared · 1 only in A · 1 only in B
  • − architecture
  • + performance
  •   setup
  •   test
  •   lint-format
  •   code-style
  •   do-not
  •   agent-behaviour

Line diff

+35 added−137 removed31 unchanged18.4% identical
Aledon8/OpenLeukemia · AGENTS.md
@@ −1 @@
1# Project AI Instructions
2 
3## Project Overview
4 
5OpenLeukemia is a patient-centered platform for organizing leukemia-related medical data, tracking changes over time, extracting structured information from documents, and explaining validated model outputs in plain language.
6 
7The product must help patients understand their information without replacing a physician. Treat privacy, explicit consent, and non-diagnostic language as core requirements, not optional polish.
8 
9## Tech Stack
10 
11- Frontend: React 19, TypeScript, Vite, Vitest, ESLint
12- Platform layer: Supabase Auth, Postgres, Storage, Row Level Security, Edge Functions
13- AI service: Python 3.12, FastAPI, Pydantic, Uvicorn
14- AI/ML: PyTorch, XGBoost, scikit-learn, Gemma or another LLM for extraction and explanation tasks
15- Package manager: npm workspaces for the frontend; Python virtual environment for `ai-service`
16 
17## Repository Layout
18 
19- `frontend/`: React + TypeScript application
20- `ai-service/`: Python FastAPI service for ML, extraction, parsing, and model-facing workloads
21- `supabase/`: migrations, policies, storage-related platform logic, and Edge Functions
22- `ml/`: machine learning workspace
23- `docs/`: project documentation
24- `PROJECT_CHARTER.md`: product principles and guardrails
25- `ARCHITECTURE.md`: system design and data-flow guidance
26 
27## Setup
28 
29Install frontend dependencies from the repository root:
30 
31```sh
32npm install
33```
34 
35Create the AI-service virtual environment:
36 
37```sh
38cd ai-service
39python -m venv .venv
40python -m pip install -e ".[dev]"
41```
42 
43On Windows PowerShell, activate the environment with:
44 
45```powershell
46.\.venv\Scripts\Activate.ps1
47```
48 
49## Development
50 
51Run the frontend from the repository root:
52 
53```sh
54npm --workspace frontend run dev
55```
56 
57Default frontend URL:
58 
59```text
60http://127.0.0.1:5173
61```
62 
63Run the AI service from `ai-service/`:
64 
65```sh
66python -m uvicorn app.main:app --reload
67```
68 
69Default AI-service URL:
70 
71```text
72http://127.0.0.1:8000
73```
74 
75Health check:
76 
77```text
78http://127.0.0.1:8000/health
79```
80 
81## Tests And Checks
82 
83Frontend checks:
84 
85```sh
86npm run lint:frontend
87npm run typecheck:frontend
88npm test --workspace frontend
89npm --workspace frontend run build
90```
91 
92AI-service checks:
93 
94```sh
95cd ai-service
 
 
96python -m ruff check .
97python -m pytest
98python -m mypy app
99```
100 
101Makefile shortcuts:
102 
103```sh
104make frontend-lint
105make frontend-typecheck
106make ai-service-lint
107make ai-service-test
108```
 
109 
110Run the checks most relevant to the files you changed. If a check cannot be run, say why and name the command that should be run next.
111 
112## Code Style
113 
114- Follow the existing style in neighboring files before adding a new pattern.
115- Prefer clear names over clever names.
116- Keep functions small and responsibility-focused.
117- Add comments only when they genuinely reduce reading effort.
118- Use typed models and structured parsing instead of ad hoc string manipulation.
119- Do not add dependencies unless the local implementation would be materially worse without them.
120- Do not change public APIs, data contracts, routes, schemas, or consent behavior without an explicit reason.
121- Keep patient-facing copy calm, careful, and non-diagnostic.
122 
123## Architecture Rules
124 
125- Use Supabase for routine product workflows: auth, CRUD, storage, consent records, and access-control paths.
126- Keep Row Level Security and explicit consent central to data access.
127- Use the Python AI service only when the task genuinely needs Python, ML, parsing, OCR, extraction, or heavier compute.
128- Keep FastAPI route handlers thin. Put reusable Python logic in services and domain modules.
129- Keep frontend code feature-oriented and reuse existing UI, layout, and testing patterns.
130- Treat LLM output as explanation or candidate extraction, not as a medical decision.
131- High-risk extracted medical values should be reviewable before becoming canonical records.
132- Keep identity data and medical data conceptually separate.
133 
134## Product And Safety Rules
135 
136- Registration does not mean blanket consent.
137- Patient data belongs to the patient.
138- Every consent should be separate, explicit, auditable, and revocable.
139- AI may summarize and explain, but must not diagnose, recommend treatment, or make urgent clinical judgments.
140- Structured ML may support prediction and trend detection; LLMs may support extraction and explanation.
141- Prefer minimal collection for privacy-sensitive workflows.
142 
143## Frontend Rules
144 
145- Build mobile-first responsive layouts.
146- Maintain light and dark theme support.
147- Preserve accessible interaction patterns for menus, forms, dialogs, and controls.
148- Keep the public site lightweight; avoid unnecessary heavy animation, video, or large assets.
149- Keep brand color usage centered on red without making every surface the same hue.
150 
151## AI-Service Rules
152 
153- Use explicit Pydantic schemas for request and response bodies.
154- Keep domain behavior in `app/domains/`.
155- Keep route modules focused on HTTP concerns.
156- Maintain strict typing and pass `mypy` for `app`.
157- Keep model outputs explainable and non-diagnostic.
158 
159## AI Agent Behavior
160 
161- Read nearby code, tests, and documentation before editing.
162- Make minimal, focused changes that preserve existing architecture.
163- Do not rewrite unrelated files or clean up unrelated churn.
164- Respect uncommitted user changes.
165- Add or update tests when behavior changes.
166- After edits, run the most relevant checks when practical.
167- When touching medical, consent, auth, or privacy-sensitive behavior, be extra conservative and call out any residual risk.
168 
Aledon8/OpenLeukemia · CLAUDE.md
@@ +1 @@
1# OpenLeukemia Claude Memory
2 
 
 
3OpenLeukemia is a patient-centered platform for organizing leukemia-related medical data, tracking changes over time, extracting structured information from documents, and explaining validated model outputs in plain language.
4 
5## Stack
6 
 
 
7- Frontend: React 19, TypeScript, Vite, Vitest, ESLint
8- Platform: Supabase Auth, Postgres, Storage, RLS, Edge Functions
9- AI service: Python 3.12, FastAPI, Pydantic, Uvicorn
10- Package manager: npm workspaces for `frontend`; Python virtualenv for `ai-service`
 
11 
12## Core Rules
13 
14- Patient data belongs to the patient.
15- Registration is not blanket consent.
16- Consent must be separate, explicit, auditable, and revocable.
17- AI may summarize, extract, and explain; it must not diagnose, recommend treatment, or make urgent clinical judgments.
18- Treat LLM extraction as candidate data until validated or confirmed.
19- Prefer Supabase for routine product workflows; use `ai-service/` for Python, ML, OCR, extraction, parsing, and heavier compute.
 
20 
21## Commands
22 
23Frontend, from repo root:
24 
25```sh
26npm install
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27npm --workspace frontend run dev
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28npm run lint:frontend
29npm run typecheck:frontend
30npm test --workspace frontend
31npm --workspace frontend run build
32```
33 
34AI service, from `ai-service/`:
35 
36```sh
37python -m venv .venv
38python -m pip install -e ".[dev]"
39python -m uvicorn app.main:app --reload
40python -m ruff check .
41python -m pytest
42python -m mypy app
43```
44 
45## Working Style
46 
47- Read nearby code and docs before editing.
48- Make minimal, focused changes and preserve existing architecture.
49- Do not rewrite unrelated files or add dependencies without clear need.
50- Use typed models and structured parsing instead of ad hoc string handling.
51- Keep patient-facing text calm, plain, and non-diagnostic.
52- Run the most relevant checks after edits when practical; otherwise name the skipped check.
53- Directory-specific `CLAUDE.md` files add local rules when working in those subtrees.
54 
55## Claude Workflow Patterns
56 
57- Optimize for the user's intended outcome, not a literal step list; find the relevant files yourself when the request is behavioral.
58- For unfamiliar code, first explain architecture, data flow, and dependencies before editing.
59- Before deleting or broadly refactoring, identify callers, downstream effects, and the files likely to change.
60- For multi-file or risky changes, plan the touched files and verification path before editing.
61- Match existing patterns by reading a nearby implementation the project already accepts.
62- When the user provides an error, log, screenshot, plan output, issue, or file, treat that artifact as primary evidence.
63- Build self-check loops into implementation work: write/run tests, build, lint, typecheck, render, compare, or otherwise verify.
64- Use measurable targets when available: coverage threshold, latency goal, bundle size, visual delta, or exact API behavior.
65- If the user corrects the same mistake or asks to preserve a convention, turn that correction into a durable `CLAUDE.md` rule.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66 
@@ −1 +1 @@
1−# Project AI Instructions
1+# OpenLeukemia Claude Memory
22  
3−## Project Overview
4− 
53 OpenLeukemia is a patient-centered platform for organizing leukemia-related medical data, tracking changes over time, extracting structured information from documents, and explaining validated model outputs in plain language.
64  
7−The product must help patients understand their information without replacing a physician. Treat privacy, explicit consent, and non-diagnostic language as core requirements, not optional polish.
5+## Stack
86  
9−## Tech Stack
10− 
117 - Frontend: React 19, TypeScript, Vite, Vitest, ESLint
12−- Platform layer: Supabase Auth, Postgres, Storage, Row Level Security, Edge Functions
8+- Platform: Supabase Auth, Postgres, Storage, RLS, Edge Functions
139 - AI service: Python 3.12, FastAPI, Pydantic, Uvicorn
14−- AI/ML: PyTorch, XGBoost, scikit-learn, Gemma or another LLM for extraction and explanation tasks
15−- Package manager: npm workspaces for the frontend; Python virtual environment for `ai-service`
10+- Package manager: npm workspaces for `frontend`; Python virtualenv for `ai-service`
1611  
17−## Repository Layout
12+## Core Rules
1813  
19−- `frontend/`: React + TypeScript application
20−- `ai-service/`: Python FastAPI service for ML, extraction, parsing, and model-facing workloads
21−- `supabase/`: migrations, policies, storage-related platform logic, and Edge Functions
22−- `ml/`: machine learning workspace
23−- `docs/`: project documentation
24−- `PROJECT_CHARTER.md`: product principles and guardrails
25−- `ARCHITECTURE.md`: system design and data-flow guidance
14+- Patient data belongs to the patient.
15+- Registration is not blanket consent.
16+- Consent must be separate, explicit, auditable, and revocable.
17+- AI may summarize, extract, and explain; it must not diagnose, recommend treatment, or make urgent clinical judgments.
18+- Treat LLM extraction as candidate data until validated or confirmed.
19+- Prefer Supabase for routine product workflows; use `ai-service/` for Python, ML, OCR, extraction, parsing, and heavier compute.
2620  
27−## Setup
21+## Commands
2822  
29−Install frontend dependencies from the repository root:
23+Frontend, from repo root:
3024  
3125 ```sh
3226 npm install
33−```
34− 
35−Create the AI-service virtual environment:
36− 
37−```sh
38−cd ai-service
39−python -m venv .venv
40−python -m pip install -e ".[dev]"
41−```
42− 
43−On Windows PowerShell, activate the environment with:
44− 
45−```powershell
46−.\.venv\Scripts\Activate.ps1
47−```
48− 
49−## Development
50− 
51−Run the frontend from the repository root:
52− 
53−```sh
5427 npm --workspace frontend run dev
55−```
56− 
57−Default frontend URL:
58− 
59−```text
60−http://127.0.0.1:5173
61−```
62− 
63−Run the AI service from `ai-service/`:
64− 
65−```sh
66−python -m uvicorn app.main:app --reload
67−```
68− 
69−Default AI-service URL:
70− 
71−```text
72−http://127.0.0.1:8000
73−```
74− 
75−Health check:
76− 
77−```text
78−http://127.0.0.1:8000/health
79−```
80− 
81−## Tests And Checks
82− 
83−Frontend checks:
84− 
85−```sh
8628 npm run lint:frontend
8729 npm run typecheck:frontend
8830 npm test --workspace frontend
8931 npm --workspace frontend run build
9032 ```
9133  
92−AI-service checks:
34+AI service, from `ai-service/`:
9335  
9436 ```sh
95−cd ai-service
37+python -m venv .venv
38+python -m pip install -e ".[dev]"
39+python -m uvicorn app.main:app --reload
9640 python -m ruff check .
9741 python -m pytest
9842 python -m mypy app
9943 ```
10044  
101−Makefile shortcuts:
45+## Working Style
10246  
103−```sh
104−make frontend-lint
105−make frontend-typecheck
106−make ai-service-lint
107−make ai-service-test
108−```
47+- Read nearby code and docs before editing.
48+- Make minimal, focused changes and preserve existing architecture.
49+- Do not rewrite unrelated files or add dependencies without clear need.
50+- Use typed models and structured parsing instead of ad hoc string handling.
51+- Keep patient-facing text calm, plain, and non-diagnostic.
52+- Run the most relevant checks after edits when practical; otherwise name the skipped check.
53+- Directory-specific `CLAUDE.md` files add local rules when working in those subtrees.
10954  
110−Run the checks most relevant to the files you changed. If a check cannot be run, say why and name the command that should be run next.
55+## Claude Workflow Patterns
11156  
112−## Code Style
113− 
114−- Follow the existing style in neighboring files before adding a new pattern.
115−- Prefer clear names over clever names.
116−- Keep functions small and responsibility-focused.
117−- Add comments only when they genuinely reduce reading effort.
118−- Use typed models and structured parsing instead of ad hoc string manipulation.
119−- Do not add dependencies unless the local implementation would be materially worse without them.
120−- Do not change public APIs, data contracts, routes, schemas, or consent behavior without an explicit reason.
121−- Keep patient-facing copy calm, careful, and non-diagnostic.
122− 
123−## Architecture Rules
124− 
125−- Use Supabase for routine product workflows: auth, CRUD, storage, consent records, and access-control paths.
126−- Keep Row Level Security and explicit consent central to data access.
127−- Use the Python AI service only when the task genuinely needs Python, ML, parsing, OCR, extraction, or heavier compute.
128−- Keep FastAPI route handlers thin. Put reusable Python logic in services and domain modules.
129−- Keep frontend code feature-oriented and reuse existing UI, layout, and testing patterns.
130−- Treat LLM output as explanation or candidate extraction, not as a medical decision.
131−- High-risk extracted medical values should be reviewable before becoming canonical records.
132−- Keep identity data and medical data conceptually separate.
133− 
134−## Product And Safety Rules
135− 
136−- Registration does not mean blanket consent.
137−- Patient data belongs to the patient.
138−- Every consent should be separate, explicit, auditable, and revocable.
139−- AI may summarize and explain, but must not diagnose, recommend treatment, or make urgent clinical judgments.
140−- Structured ML may support prediction and trend detection; LLMs may support extraction and explanation.
141−- Prefer minimal collection for privacy-sensitive workflows.
142− 
143−## Frontend Rules
144− 
145−- Build mobile-first responsive layouts.
146−- Maintain light and dark theme support.
147−- Preserve accessible interaction patterns for menus, forms, dialogs, and controls.
148−- Keep the public site lightweight; avoid unnecessary heavy animation, video, or large assets.
149−- Keep brand color usage centered on red without making every surface the same hue.
150− 
151−## AI-Service Rules
152− 
153−- Use explicit Pydantic schemas for request and response bodies.
154−- Keep domain behavior in `app/domains/`.
155−- Keep route modules focused on HTTP concerns.
156−- Maintain strict typing and pass `mypy` for `app`.
157−- Keep model outputs explainable and non-diagnostic.
158− 
159−## AI Agent Behavior
160− 
161−- Read nearby code, tests, and documentation before editing.
162−- Make minimal, focused changes that preserve existing architecture.
163−- Do not rewrite unrelated files or clean up unrelated churn.
164−- Respect uncommitted user changes.
165−- Add or update tests when behavior changes.
166−- After edits, run the most relevant checks when practical.
167−- When touching medical, consent, auth, or privacy-sensitive behavior, be extra conservative and call out any residual risk.
57+- Optimize for the user's intended outcome, not a literal step list; find the relevant files yourself when the request is behavioral.
58+- For unfamiliar code, first explain architecture, data flow, and dependencies before editing.
59+- Before deleting or broadly refactoring, identify callers, downstream effects, and the files likely to change.
60+- For multi-file or risky changes, plan the touched files and verification path before editing.
61+- Match existing patterns by reading a nearby implementation the project already accepts.
62+- When the user provides an error, log, screenshot, plan output, issue, or file, treat that artifact as primary evidence.
63+- Build self-check loops into implementation work: write/run tests, build, lint, typecheck, render, compare, or otherwise verify.
64+- Use measurable targets when available: coverage threshold, latency goal, bundle size, visual delta, or exact API behavior.
65+- If the user corrects the same mistake or asks to preserve a convention, turn that correction into a durable `CLAUDE.md` rule.
16866  

Also from Kynth Studios

Built for the same person as RuleStack

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

StillShipping

Which agent tools have stopped shipping

stillshipping.kynth.studio

BlockDex

Search inside every shadcn registry

blockdex.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

RuleStack

Built by

Kynth Studios

the studio behind ToolDrift, StillShipping and BlockDex

part of Toolproof, the measurement layer for AI agent tooling

Directory

Configs
Stacks
Compare formats
AGENTS.md vs CLAUDE.md
Cursor rules alternatives
Diff two configs
Best AGENTS.md examples
Best Cursor rules examples
What goes in a CLAUDE.md

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

© 2026 RuleStack. A Kynth Studios product. Changelog

RuleStack

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

RuleStack

Built by

Kynth Studios

the studio behind ToolDrift, StillShipping and BlockDex

part of Toolproof, the measurement layer for AI agent tooling

Directory

Configs
Stacks
Compare formats
AGENTS.md vs CLAUDE.md
Cursor rules alternatives
Diff two configs
Best AGENTS.md examples
Best Cursor rules examples
What goes in a CLAUDE.md

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

© 2026 RuleStack. A Kynth Studios product. Changelog

RuleStack

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

RuleStack

Built by

Kynth Studios

the studio behind ToolDrift, StillShipping and BlockDex

part of Toolproof, the measurement layer for AI agent tooling

Directory

Configs
Stacks
Compare formats
AGENTS.md vs CLAUDE.md
Cursor rules alternatives
Diff two configs
Best AGENTS.md examples
Best Cursor rules examples
What goes in a CLAUDE.md

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

© 2026 RuleStack. A Kynth Studios product. Changelog

RuleStack