원클릭으로
validate
Run validation and testing commands for the project. Use when the user asks to validate, lint, typecheck, or run tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run validation and testing commands for the project. Use when the user asks to validate, lint, typecheck, or run tests.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Reproduce a research paper / white paper / arXiv result as a Tangle pipeline. Use when the user asks to "reproduce", "replicate", or "implement" a paper, benchmark, or arXiv link as an experiment.
Drive the open-source Tangle CLI (`tangle-cli`) via Bash for local pipeline/component workflows and API-backed run submission, status, logs, and artifacts. Use whenever an agent needs to validate, hydrate, submit, inspect, or debug Tangle pipelines and runs from the command line.
Answer Tangle product, docs, and how-to questions from a local RAG over the TangleML documentation. Use for conceptual / "what is" / "how do I" lookups, not live run or execution data.
TanStack Router patterns for routing, navigation, search params, and layouts. Use when creating routes, navigating, or working with URL state.
Comprehensive Reveal.js reference for building HTML slide decks. Use whenever the user wants to create, revise, or extend a presentation, slide deck, or talk — especially from Markdown — including transitions, Auto-Animate, Mermaid diagrams, animatable SVG, video, backgrounds, fragments, code highlighting, speaker notes, math, themes, configuration, and PDF export.
Gather, vet, and cite sources for a research question. Use when answering factual questions, comparing options, or producing an evidence-backed write-up.
| name | validate |
| description | Run validation and testing commands for the project. Use when the user asks to validate, lint, typecheck, or run tests. |
| disable-model-invocation | true |
| allowed-tools | Bash(pnpm *) |
| argument-hint | ["test"] |
Run project validation and testing commands from the repo root.
pnpm validate — runs turbo run typecheck lint build across the monorepo. Use before
considering work done. It does not run tests.pnpm typecheck / pnpm lint / pnpm build — run a single step individually.pnpm format — Prettier (prettier --write .).pnpm --filter @tangent/server test — server tests (Node's built-in runner via
tsx --test, over apps/server/src/**/*.test.ts). This is the only test suite in the repo.
One file: pnpm --filter @tangent/server exec tsx --test src/path/to/x.test.ts.There is no validate:test, test:e2e, test:coverage, or knip script, and apps/web has
no test runner configured.
/validate — run pnpm validate/validate test — run pnpm validate then pnpm --filter @tangent/server testpnpm dev — runs everything via turbo.apps/web): Vite dev server (Vite's default port).apps/server): the Vite dev server proxies /api and /socket.io to the backend at
http://localhost:8787 by default (override with the API_TARGET env var).