refactor: update import paths for react/compiler-runtime to react-compiler-runtime

feat: add OpenClaude local agent playbook for setup and usage instructions

chore: implement provider bootstrap script for profile initialization

chore: create provider launch script to manage provider execution

chore: add system check script for runtime diagnostics and validation

feat: implement useEffectEventCompat hook for React 18 compatibility
This commit is contained in:
Reservieren
2026-03-31 22:09:56 -03:00
parent 747be9c2f3
commit 009c29d318
408 changed files with 1416 additions and 431 deletions

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React, { Children, isValidElement } from 'react';
import { Text } from '../../ink.js';
type Props = {

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React from 'react';
import { type ExitState, useExitOnCtrlCDWithKeybindings } from '../../hooks/useExitOnCtrlCDWithKeybindings.js';
import { Box, Text } from '../../ink.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React from 'react';
import { useTerminalSize } from '../../hooks/useTerminalSize.js';
import { stringWidth } from '../../ink/stringWidth.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import * as React from 'react';
import { useEffect, useState } from 'react';
import { useSearchInput } from '../../hooks/useSearchInput.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React from 'react';
import Text from '../../ink/components/Text.js';
type Props = {

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import figures from 'figures';
import type { ReactNode } from 'react';
import React from 'react';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React from 'react';
import { Box, Text } from '../../ink.js';
import { Spinner } from '../Spinner.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React from 'react';
import { useIsInsideModal } from '../../context/modalContext.js';
import { Box } from '../../ink.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React from 'react';
import { Text } from '../../ink.js';
import type { Theme } from '../../utils/theme.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React, { useCallback, useLayoutEffect, useRef, useState } from 'react';
import { useTerminalSize } from '../../hooks/useTerminalSize.js';
import { useTerminalViewport } from '../../ink/hooks/use-terminal-viewport.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import figures from 'figures';
import React from 'react';
import { Text } from '../../ink.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React, { createContext, useCallback, useContext, useEffect, useState } from 'react';
import { useIsInsideModal, useModalScrollRef } from '../../context/modalContext.js';
import { useTerminalSize } from '../../hooks/useTerminalSize.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import { feature } from 'bun:bundle';
import React, { createContext, useContext, useEffect, useMemo, useState } from 'react';
import useStdin from '../../ink/hooks/use-stdin.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import React, { type PropsWithChildren, type Ref } from 'react';
import Box from '../../ink/components/Box.js';
import type { DOMElement } from '../../ink/dom.js';

View File

@@ -1,4 +1,4 @@
import { c as _c } from "react/compiler-runtime";
import { c as _c } from "react-compiler-runtime";
import type { ReactNode } from 'react';
import React, { useContext } from 'react';
import Text from '../../ink/components/Text.js';