The problem is that defi env is in RTL context anchors of titlebox are shifted you need to place defi in LTR context with
\AddToHook{env/defi/begin}{\textdir TLT \bodydir TLT}
Then frame title and frame text must be preceded with \textdir TRT \bodydir TRT \pardir TRT using before title and before upper (before lower) keys
\documentclass{book}
\usepackage[paper width=5cm,paper height=5cm,centering]{geometry}
\usepackage[most]{tcolorbox}
\usepackage[bidi=basic,layout=graphics]{babel}
\babelprovide[import,main]{arabic}
\babelfont{rm}{Amiri}
\AddToHook{env/defi/begin}{\textdir TLT \bodydir TLT}%
\pagestyle{empty}
\newtcbtheorem{defi}{تعريف}%
{ % frame stuff
before title=\textdir TRT \bodydir TRT \pardir TRT,
before upper=\textdir TRT \bodydir TRT \pardir TRT,
before lower=\textdir TRT \bodydir TRT \pardir TRT,
enhanced,frame empty,interior empty,
colframe=white,
colback=white,
borderline east={3pt}{0pt}{green!25!blue},
left=0.2cm,
right skip={-0.029\linewidth},
% title stuff
attach boxed title to top right={yshift=-2mm,xshift=5mm},breakable,
coltitle=black,
fonttitle=\bfseries,
colbacktitle=white,
boxed title style={boxrule=1pt,rounded corners,colframe=green!25!blue}}{defi}
\begin{document}
\begin{defi}{}{}
السلام عليكم لاباس
\end{defi}
\begin{defi}{}{}
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
السلام عليكم لاباس
\end{defi}
السلام عليكم
\end{document}

Patching \tikzpicture@tcb@hooked from skin library also like this give a correct result
\documentclass{book}
\usepackage[paper width=5cm,paper height=5cm,centering]{geometry}
\usepackage[most]{tcolorbox}
\usepackage[bidi=basic,layout=graphics]{babel}
\babelprovide[import,main]{arabic}
\babelfont{rm}{Amiri}
\makeatletter
\bbl@sreplace\tikzpicture@tcb@hooked{\noexpand\tikzpicture}%
{\textdir TLT\noexpand\tikzpicture}%
\makeatother
\pagestyle{empty}
\newtcbtheorem{defi}{تعريف}%
{ % frame stuff
enhanced,frame empty,interior empty,
colframe=white,
colback=white,
borderline east={3pt}{0pt}{green!25!blue},
left=0.2cm,
right skip={-0.029\linewidth},
% title stuff
attach boxed title to top right={yshift=-2mm,xshift=5mm},breakable,
coltitle=black,
fonttitle=\bfseries,
colbacktitle=white,
boxed title style={boxrule=1pt,rounded corners,colframe=green!25!blue}}{defi}
\begin{document}
\begin{defi}{}{}
السلام عليكم لاباس
\end{defi}
السلام عليكم
\end{document}