Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

docyrus-app-dev-reactdocyrus 应用 DEV React

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

582

周安装

24

GitHub Stars

13

下载量

190
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/docyrus/agent-skills --skill docyrus-app-dev-react

简介

docyrus-app-dev-react 提供端到端的 Docyrus React 应用开发指导,整合架构、认证与 UI 实践。

  • 它建议使用 shadcn、diceui 等组件库,并强调生产级表单、查询与路由的实现方式。
  • 使用时需结合现有设计系统与 API 规范,避免生成孤立片段,确保整体一致性。
  • 安装前应确认项目是否已初始化 Vite + TypeScript,并评估对 Tailwind v4 的支持情况。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Docyrus App Dev React

Build Docyrus React TypeScript applications end-to-end. This skill combines app architecture, authentication, data access, query patterns, and production-grade UI guidance in one place.

Tech Stack

  • React 19 + TypeScript + Vite
  • TanStack Router (code-based), TanStack Query (server state), TanStack Form
  • Tailwind CSS v4, shadcn/ui components
  • @docyrus/api-client + @docyrus/signin + @docyrus/app-utils
  • Auto-generated collections from OpenAPI spec
  • Preferred UI libraries: shadcn, diceui, animate-ui, docyrus-ui, reui

When to Use This Skill

Use this skill when you are:

  • Building or modifying a Docyrus-backed React app
  • Setting up authentication with @docyrus/signin
  • Bootstrapping tenant-aware runtime utilities with @docyrus/app-utils
  • Fetching or mutating data with generated collections or @docyrus/api-client
  • Persisting app-level config or user-level config or saved grid views with AppConfig, UserAppConfig, and DataViews
  • Building record sharing, role management, or ACL-driven UI flows
  • Designing feature UIs such as dashboards, forms, tables, layouts, dialogs, analytics, or detail pages
  • Selecting between shadcn, diceui, animate-ui, docyrus-ui, and reui components
  • Implementing complete feature flows that combine data access and polished UI

End-to-End Feature Workflow

  1. Set up app auth, routing, and query providers.
  2. Bootstrap TenantPreferences, date/number utilities, and shared app runtime helpers from @docyrus/app-utils.
  3. Use generated Docyrus collection hooks or the REST client for data access.
  4. Define columns, filters, formulas, child queries, and mutations correctly.
  5. Use AppConfig for per-app persisted settings, UserAppConfig for per-user per-app settings, and DataViews for saved grid views.
  6. Check preferred UI components before building anything custom.
  7. Use Docyrus form and detail patterns for create, edit, item detail, and editable grid flows.
  8. Connect UI actions to TanStack Query mutations and invalidate relevant queries.

Quick Start: App Bootstrap

Root provider setup

import { DocyrusAuthProvider } from '@docyrus/signin'

<DocyrusAuthProvider
  apiUrl={import.meta.env.VITE_API_BASE_URL}
  clientId={import.meta.env.VITE_OAUTH2_CLIENT_ID}
  redirectUri={import.meta.env.VITE_OAUTH2_REDIRECT_URI}
  scopes={['offline_access', 'Read.All', 'DS.ReadWrite.All', 'Users.Read']}
  callbackPath="/auth/callback"
>
  <QueryClientProvider client={queryClient}>
    <RouterProvider router={router} />
  </QueryClientProvider>
</DocyrusAuthProvider>

Auth gate and current-user access

const { status, user, hasRole, hasPermission } = useDocyrusAuth()

if (status === 'loading') return <Spinner />
if (status === 'unauthenticated') return <SignInButton />

// user is auto-fetched from /v1/users/me after authentication
// hasRole('super_admin') — check role by slug or uid
// hasPermission('edit', dataSourceId) — check ACL permission on a data source

Tenant-aware app utilities

Use @docyrus/app-utils as the default runtime layer for tenant-level formatting and persisted app/grid preferences.

import {
  createAppConfigClient,
  createUserAppConfigClient,
  createDataViewClient,
  createDateUtils,
  createNumberUtils,
  getTenantPreferences,
} from '@docyrus/app-utils'

function useAppRuntime(appId: string) {
  const client = useDocyrusClient()
  const { getMyInfo } = useUsersCollection()

  return useQuery({
    queryKey: ['app-runtime', appId],
    enabled: !!client && !!appId,
    queryFn: async () => {
      const [preferences, me] = await Promise.all([
        getTenantPreferences(client!),
        getMyInfo(),
      ])

      return {
        preferences,
        me,
        dateUtils: createDateUtils({
          preferences,
          userTimezone: me.timeZone?.id,
        }),
        numberUtils: createNumberUtils({ preferences }),
        appConfig: createAppConfigClient(client!, appId),
        userConfig: createUserAppConfigClient(client!, appId),
        dataViews: createDataViewClient(client!, appId),
      }
    },
  })
}

Use this runtime to:

  • Format dates and datetimes with tenant format strings and the user's timezone.
  • Format numbers, currency-like values, and decimals using tenant separators and precision.
  • Read and upsert the app's single persisted AppConfig document.
  • Read and upsert the current user's UserAppConfig document (per-user per-app settings).
  • Read and persist saved grid views through DataViews.

Data fetching with generated collections

const { list } = useBaseProjectCollection()

const { data: projects } = useQuery({
  queryKey: ['projects'],
  queryFn: () =>
    list({
      columns: ['name', 'status', 'record_owner(firstname,lastname)'],
      filters: { rules: [{ field: 'status', operator: '!=', value: 'archived' }] },
      orderBy: 'created_on DESC',
      limit: 50,
    }),
})

ACL, roles, and record sharing

Use direct useDocyrusClient() calls for ACL features. These routes may be hidden from generated OpenAPI output, so they are typically not available through generated collection hooks.

const client = useDocyrusClient()

const { data: roles } = useQuery({
  queryKey: ['acl', 'roles'],
  queryFn: () => client!.get('/v1/users/acl/roles'),
})

const replaceUserRoles = useMutation({
  mutationFn: ({ userId, roleIds }: { userId: string; roleIds: string[] }) =>
    client!.put(`/v1/users/acl/users/${userId}/roles`, { roleIds }),
})

const createRoleQuery = useMutation({
  mutationFn: (payload: Record<string, unknown>) =>
    client!.post('/v1/users/acl/role-queries', payload),
})

Prefer role uid values returned by the API when sending roleIds for user-role updates or role-query payloads.

Saved data grid views

Use DataGridViewSelect as the default saved-view UI for Docyrus grids, and persist those views with createDataViewClient(client, appId).

  • DataGridViewSelect is the default component for showing and editing saved grid views.
  • Pass the TanStack table instance via table so the selector/editor can read column definitions.
  • Pass fields when you want the built-in filter builder enabled in the editor.
  • Back views, onViewCreate, onViewSave, onViewDelete, onViewHide, and onViewUnhide with DataViews CRUD.
  • Use DataGridViewEditor separately only when you need a standalone editor outside the selector.

Critical App/Data Rules

  1. Always send columns in .list() and .get() calls. Without it, only id is returned.
  2. Collections are React hooks — call useBaseProjectCollection(), useUsersCollection(), and similar hooks inside React components.
  3. Data source endpoints are dynamic — they only exist if the data source is defined in the tenant OpenAPI spec.
  4. Use id for count calculations. Use actual field slugs for sum, avg, min, and max.
  5. Child query keys must appear in columns.
  6. Formula keys must appear in columns.
  7. Use useUsersCollection().getMyInfo() for current user profile instead of making a direct profile call.
  8. Initialize TenantPreferences once per app runtime and create shared dateUtils / numberUtils instances from @docyrus/app-utils.
  9. Formatting functions from @docyrus/app-utils are regionalized — do not hardcode locale, date format, decimal separator, thousand separator, or decimal precision when tenant preferences should drive them.
  10. Use createAppConfigClient(client, appId) for the app's single persisted config document; upsert is the default write path.
  11. Use createUserAppConfigClient(client, appId) for the current user's persisted config document scoped to an app (e.g. theme, layout preferences, sidebar state); upsert is the default write path.
  12. Use createDataViewClient(client, appId) for saved grid-view CRUD.
  13. Use DataViews with DataGridViewSelect to show, create, edit, reorder, hide, unhide, soft-delete, and hard-delete saved data grid views.
  14. DataGridViewSelect needs a TanStack table instance and should receive fields when you want the built-in filter builder/editor experience.
  15. Data view creation requires name and tenant_data_source_id.
  16. Use dataViews.update(viewId, {archived: true}) for soft-delete and dataViews.remove(viewId) only for irreversible hard-delete.
  17. Regenerate collections after schema changes by rebuilding the tenant OpenAPI spec, downloading the latest openapi.json, and re-running the collection generator.
  18. ACL endpoints are usually raw-client integrations — use useDocyrusClient() or RestApiClient for roles, user-role assignments, role queries, record sharing, and ownership transfer.
  19. Prefer role uid values for ACL role writes, user-role roleIds, and role-query roleIds.
  20. Treat PUT /v1/users/acl/users/:userId/roles as full replacement and POST /v1/users/acl/users/:userId/roles as additive.
  21. Send role-query query as raw JSON and omit tenantAppId when dataSourceId is present; backend derives it.
  22. After deleting a role, invalidate dependent app queries for role lists, user-role lists, role-query lists, and any UI that renders primary-role labels.

Critical UI/UX Rules

  1. Always check preferred components first before creating anything custom.
  2. Use AwesomeCard for dashboards unless the user explicitly wants a different card style.
  3. Use animate-ui Sidebar for app layouts unless another layout is requested.
  4. Prefer Recharts for charts. shadcn chart primitives are the default wrapper.
  5. Use icons in this order: hugeicons, then fontawesome light, then lucide.
  6. Use AwesomeDialog for item create forms.

- Small/simple forms: container="sheet" with side="right" - Long/complex forms: container="modal" or container="drawer"

  1. Choose detail containers based on item complexity.

- Large items: dedicated page - Small items: AwesomeDialog right sheet

  1. All forms must use TanStack Form + the Docyrus form system. Do not build feature forms with plain HTML forms or React Hook Form directly.
  2. Use EditableRecordDetail for inline editing in item detail views.
  3. Always enable trackChanges for editable detail and grid experiences.
  4. Use DataGridViewSelect for saved grid views and back it with DataViews from @docyrus/app-utils.
  5. Prefer DataGridViewEditor only when you need a standalone grid-view editor outside the selector component.

Default UI Choices

Use CaseDefault ComponentLibrary
Item create formAwesomeDialogdocyrus
Quick record createCreateRecordDialogdocyrus
Item detail (small)AwesomeDialog sheet rightdocyrus
Item detail (large)Dedicated page
Inline editingEditableRecordDetaildocyrus
Dashboard cardAwesomeCarddocyrus
Stat dashboardsAwesomeStatsdocyrus
App navigationSidebaranimate-ui
Data tableDataTablediceui
Editable gridData Griddocyrus
Grid saved viewsDataGridViewSelect + DataViewsdocyrus + @docyrus/app-utils
FormsDocyrus form fields + TanStack Formdocyrus
Chartsshadcn chart + Rechartsshadcn
File uploadFile Uploaddiceui
Gantt/project schedulingGanttdocyrus
Resource schedulingResourceSchedulerPaneldocyrus
Team chatTeamChatChanneldocyrus
AI interfaceDocyrusAgentdocyrus
Pricing / quotingPricingEnginePaneldocyrus
Analytics / pivotPivotGriddocyrus

Quick UI Patterns

Item create form

<AwesomeDialog open={open} onOpenChange={setOpen} container="sheet" side="right" size="default">
  <AwesomeDialogHeader title="Create Task" icon="far-plus" />
  <AwesomeDialogBody>
    <form.Field name="title">{(field) => <TextFormField field={field} label="Title" />}</form.Field>
    <form.Field name="status">{(field) => <SelectFormField field={field} label="Status" />}</form.Field>
  </AwesomeDialogBody>
  <AwesomeDialogFooter>
    <Button variant="outline" onClick={() => setOpen(false)}>Cancel</Button>
    <Button onClick={handleSubmit}>Create</Button>
  </AwesomeDialogFooter>
</AwesomeDialog>

Item detail with inline editing

<AwesomeDialog open={open} onOpenChange={setOpen} container="sheet" side="right" size="lg" fullscreenable>
  <AwesomeDialogHeader
    title="Task Detail"
    description="Review and edit task fields inline"
    headerButtons={<Button variant="outline" size="sm" onClick={switchToFullForm}>Edit All</Button>}
  />
  <AwesomeDialogBody>
    <EditableRecordDetail fields={fields} record={record} onSave={handleSave} trackChanges>
      <EditableRecordDetailField slug="title" />
      <EditableRecordDetailField slug="status" />
      <EditableRecordDetailField slug="assignee" />
      <EditableRecordDetailField slug="due_date" />
    </EditableRecordDetail>
  </AwesomeDialogBody>
</AwesomeDialog>

TanStack Query Pattern

function useProjects(params?: ICollectionListParams) {
  const { list } = useBaseProjectCollection()
  return useQuery({
    queryKey: ['projects', 'list', params],
    queryFn: () => list({ columns: PROJECT_COLUMNS, ...params }),
  })
}

function useCreateProject() {
  const { create } = useBaseProjectCollection()
  const qc = useQueryClient()
  return useMutation({
    mutationFn: (data: Record<string, unknown>) => create(data),
    onSuccess: () => {
      void qc.invalidateQueries({ queryKey: ['projects'] })
    },
  })
}

Collection CRUD Methods

const { list, get, create, update, delete: deleteOne, deleteMany } = useBaseProjectCollection()

list(params?: ICollectionListParams)
get(id, { columns })
create(data)
update(id, data)
deleteOne(id)
deleteMany({ recordIds })

API endpoint pattern: /v1/apps/{appSlug}/data-sources/{slug}/items

Query Capabilities Summary

The .list() method supports:

  • columns
  • filters
  • filterKeyword
  • orderBy
  • limit and offset
  • fullCount
  • calculations
  • formulas
  • childQueries
  • pivot
  • expand

Component Installation Pattern

pnpm dlx shadcn@latest add button
pnpm dlx shadcn@latest add @diceui/data-table
pnpm dlx shadcn@latest add @animate-ui/sidebar
pnpm dlx @docyrus/cli add @docyrus/ui-awesome-card
pnpm dlx shadcn@latest add @reui/file-upload-default

References

For deep dives, read:

  • references/README.md — merged reference map for app development and UI design
  • references/api-client-and-auth.md
  • references/collections-and-patterns.md
  • ../docyrus-api-dev/references/acl-endpoints-frontend.md
  • ../docyrus-api-dev/references/data-source-query-guide.md
  • ../docyrus-api-dev/references/formula-design-guide-llm.md
  • ../docyrus-api-dev/references/query-guide.md
  • references/preferred-components-catalog.md
  • references/component-selection-guide.md
  • references/icon-usage-guide.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.43%
按下载量换算65

Claude

30.55%
按下载量换算58

Cursor

19.66%
按下载量换算37

Gemini CLI

10.13%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills