一键导入
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).