원클릭으로
solidjs-patterns
Idiomatic Solid.js development (Signals, no VDOM, native primitives).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Idiomatic Solid.js development (Signals, no VDOM, native primitives).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | solidjs-patterns |
| description | Idiomatic Solid.js development (Signals, no VDOM, native primitives). |
This skill ensures that frontend code is written according to Solid.js's fine-grained reactivity principles, preventing framework hallucinations.
createSignal for local state. Access values by calling them as functions: mySignal().<For each={list()}>{(item) => ...}</For> (Not list().map()).<Show when={condition()}>...</Show> (Not condition() && ...).<Index> for primitive lists.useState, useEffect, or useCallback.React.useMemo. Use createMemo instead.function MyComp({ name })). This breaks reactivity. Access props as props.name.createMemo for expensive computations.const fullName = () => ${firstName()} ${lastName()};.The official Kanbrio development and review lifecycle using AI agents.
Naming conventions, function design, and readability standards.
YAGNI, simplicity, and continuous improvement mindset.
Procedures for database schema design for hierarchical tasks and event auditing.
Procedures for auditing third-party dependencies for license compatibility and ensuring open-source compliance.
Rules for cross-package dependencies and monorepo structure.