소스 정보
- 저장소
- bigmistqke/introspection
- 최근 소스 활동
- 2026년 5월 15일 11:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 6
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bigmistqke/introspection --skill introspect-setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | introspect-setup |
| description | Use when adding introspection to a project for the first time |
# Host adapter + standard plugins
pnpm add -D @introspection/playwright @introspection/plugin-network @introspection/plugin-js-error @introspection/plugin-console
# Optional domain-specific plugins
pnpm add -D @introspection/plugin-webgl
Available plugins:
| Plugin | Package | What it captures |
|---|---|---|
network() | @introspection/plugin-network | HTTP requests, responses, bodies |
jsError() | @introspection/plugin-js-error | JS exceptions, emits bus('js.error') |
debuggerPlugin() | @introspection/plugin-debugger | Scope locals on exceptions, breakpoints, and capture() calls |
consolePlugin() | @introspection/plugin-console | Browser console output |
webgl() | @introspection/plugin-webgl | WebGL state, uniforms, draw calls, canvas PNGs |
solidDevtools() | @introspection/plugin-solid-devtools | SolidJS component tree and reactive updates |
performance() | @introspection/plugin-performance | Core Web Vitals, resource timing, long tasks |
redux() | @introspection/plugin-redux | Store dispatches from Redux, Zustand, Valtio, and Redux DevTools–compatible libraries (action + optional state) |
cdp() | @introspection/plugin-cdp | Raw CDP commands and events (instrumentation/debugging) |
defaults() from @introspection/plugin-defaults bundles network() + jsError() + debuggerPlugin() + consolePlugin() for convenience.
import { test } from '@playwright/test'
import { attach } from '@introspection/playwright'
import { defaults } from '@introspection/plugin-defaults'
handle.page is a proxy-wrapped version of page that tracks Playwright actions as events. Use it instead of page directly if you want action tracking.
import { webgl } from '@introspection/plugin-webgl'
const plugin = webgl()
const handle = await attach(page, { plugins: [...defaults(), plugin] })
await plugin.watch({ event: 'uniform', name: 'u_time', valueChanged: true })
await plugin.watch({ event: 'draw' })
await plugin.watch({ event: 'texture-bind' })
await plugin.captureCanvas() // capture canvas PNG without full GL state
await handle.snapshot() // captures full GL state + canvas PNG per context
The debugger plugin can capture local variables at arbitrary points in your code:
import { capture } from '@introspection/plugin-debugger/client'
function calculate() {
const result = heavyComputation()
capture('after calculation') // pauses, captures locals, resumes
return result
}
Scopes are written to a scopes asset with the label as the message field.
# Run a test, then:
ls .introspect/ # should contain trace subdirectories
introspect list # lists traces with ID, duration, label
introspect summary # plain-language overview of the most recent trace
If .introspect/ is empty or missing:
attach(page) is called before page.goto()handle.detach() is called at the end of the test