Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

tanstack-start-architecturetanstack 启动架构

Agent Skill

tanstack-start-architecture 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

915

周安装

37

GitHub Stars

3

下载量

287
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tanstack-start-architecture(tanstack 启动架构)
来源仓库:https://github.com/alpoxdev/hypercore
仓库路径:skills/tanstack-start-architecture
安装命令:
npx skills add https://github.com/alpoxdev/hypercore --skill tanstack-start-architecture
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alpoxdev/hypercore --skill tanstack-start-architecture

简介

tanstack-start-architecture 用于查找、检索和筛选相关信息,适合在 Codex、Claude 等宿主中分析架构设计。

  • 适用于研究检索场景,可协助理解 TanStack Start 的架构模式和实现细节。
  • 通过 npx skills add 命令安装,需确认是否涉及代码修改或依赖变更。
  • 使用前建议核实仓库维护状态,避免引入不稳定因素。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

@architecture-rules.md @rules/routes.md @rules/services.md @rules/hooks.md @rules/import-protection.md @rules/middleware.md @rules/execution-model.md @rules/server-routes.md @rules/ssr-hydration.md @rules/platform.md @rules/validation.md @references/official/tanstack-start-2026-04-30.md @references/official/tanstack-router-2026-04-30.md @references/official/api-drift-notes.md

TanStack Start Architecture Enforcement

Apply hypercore's TanStack Start architecture rules without confusing team conventions with official TanStack requirements.
  • Validate that the project is a TanStack Start / TanStack Router project before applying this skill.
  • Enforce safety boundaries for loaders, server functions, import protection, middleware, server routes, and SSR/hydration.
  • Apply hypercore conventions for route folders, hooks, file naming, comments, and layering when they are in scope.
  • Keep official TanStack API facts in references/official/ so rapidly changing framework details can be refreshed without bloating the core skill.

<operating_mode>

This skill is self-contained. Do not depend on global skills or external orchestration before applying it.

Rules are classified as:

  • Official — documented TanStack behavior or API requirement.
  • Safety policy — local blocking rule for security/runtime correctness.
  • Hypercore convention — local/team standard that may be stricter than official TanStack defaults.

If a user explicitly asks for official TanStack defaults, relax hypercore-only conventions but keep official and safety rules.

</operating_mode>

<trigger_examples>

Positive:

  • "Audit this TanStack Start app for server-function, loader, and importProtection violations."
  • "Add a TanStack Start route with search params and keep the architecture compliant."
  • "Refactor Start route folders, hooks, and server functions to follow hypercore rules."
  • "TanStack Start 프로젝트에서 loader 경계랑 server function 구조 점검해줘."

Negative:

  • "Review this generic React/Vite app that does not use TanStack Start."
  • "Create a browser QA skill for Codex."
  • "Summarize TanStack Router docs without changing or auditing a project."

Boundary:

  • "Make a copy-only edit in a static TanStack Start privacy page." Use this skill only for a quick boundary check; publishing-only pages do not need generated -hooks/, -components/, or -functions/ folders unless logic/server integration is introduced.

</trigger_examples>

<project_validation>

Before enforcing rules, confirm at least one Start/Router indicator exists:

ls app.config.ts 2>/dev/null
grep -r "@tanstack/react-start" package.json 2>/dev/null
grep -r "@tanstack/react-router" package.json 2>/dev/null
ls src/routes/__root.tsx 2>/dev/null

If none are present, stop using this skill and route to the normal implementation/review path.

</project_validation>

<support_file_read_order>

Read only what the task needs:

  1. architecture-rules.md for the rule taxonomy and blocking gate summary.
  2. Topic rules by changed surface:

- rules/routes.md — route organization, search validation, loaders, route lifecycle. - rules/services.md — server functions, validation, query/mutation layering. - rules/hooks.md — hook extraction, internal hook order, useServerFn wrapper policy. - rules/import-protection.md — client/server import boundaries and vite.config.ts deny rules. - rules/middleware.md — function/request middleware and sendContext validation. - rules/execution-model.md — isomorphic loaders and environment-only functions. - rules/server-routes.md — justified HTTP endpoints vs internal app RPC. - rules/ssr-hydration.md — deterministic first render, ClientOnly, route SSR modes. - rules/platform.mdgetRouter(), env validation, path aliases, operational endpoints.

  1. references/official/tanstack-start-2026-04-30.md when Start API behavior matters.
  2. references/official/tanstack-router-2026-04-30.md when Router/file-route/search/loading behavior matters.
  3. references/official/api-drift-notes.md when docs conflict or current package behavior is uncertain.
  4. rules/validation.md before claiming completion.

</support_file_read_order>

PhaseTaskOutput
0Validate this is a TanStack Start/Router projectScope decision
1Identify touched surfaces and load only relevant rule/reference filesMinimal evidence set
2Classify each applicable rule as Official, Safety policy, or Hypercore conventionEnforcement plan
3Apply safe, local, reversible fixes automaticallyCode or skill changes
4Defer broad migrations unless explicitly requestedBacklog or handoff note
5Run validation checks from rules/validation.mdEvidence-backed completion

<blocking_safety_summary>

Always block or fix before proceeding when touched code would:

  • Read secrets, DB clients, filesystem, or privileged SDKs from isomorphic loader/client-reachable code.
  • Keep server-only imports alive outside compiler-recognized boundaries such as createServerFn or createServerOnlyFn.
  • Disable import protection or overwrite an existing tanstackStart() config instead of extending it.
  • Use server functions for mutations without runtime input validation.
  • Treat untrusted sendContext values as validated server data.
  • Introduce hydration-unstable first render output such as Date.now(), random IDs, or locale/time-zone divergence without a stabilization strategy.

</blocking_safety_summary>

<hypercore_conventions_summary>

Apply these to touched files unless the user asks for official defaults only:

  • Prefer route directories over flat route files for app pages.
  • Pages/components with interactive logic extract logic into -hooks/; publishing-only static pages are exempt.
  • Server-integrated pages use -functions/ and route-local hooks/components where appropriate.
  • Use export const Route = createFileRoute(...) for file routes.
  • Keep routes thin: route/page UI -> hooks/query -> server functions -> feature/database layer.
  • Use kebab-case filenames, explicit return types, no any, const arrow functions, and Korean block comments for meaningful code groups.

</hypercore_conventions_summary>

Before declaring the work done:

  • Run the task-specific checks in rules/validation.md.
  • Confirm official-vs-hypercore labels are preserved in any edited rule.
  • Confirm support files are directly linked from SKILL.md and do not require following an indirect reference chain.
  • Confirm English and Korean entrypoints still describe the same trigger, boundary, workflow, and read order.
  • Record any unresolved TanStack API ambiguity with a source link and exact date.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.7%
按下载量换算100

Claude

30.96%
按下载量换算89

Cursor

18.36%
按下载量换算53

Gemini CLI

9.93%
按下载量换算28

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills