Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

achra-guidelines阿克拉指南

Agent Skill

achra-guidelines 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

303

周安装

13

GitHub Stars

公开资料未说明

下载量

106
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yasielcabrera/achra-guidelines-skill --skill achra-guidelines

简介

achra-guidelines 提供阿克拉平台的架构、命名、业务域和技术模式规范,适用于代码编写、重构和协作事项处理。

  • 适用于在 Achra 代码库中编写组件、页面、服务或钩子时保持一致性,也用于 Storybook 故事创建和加载状态设计。
  • 通过 GitHub 安装,宿主包括 Codex、Claude、Cursor 和 Gemini CLI,需结合原始 README 确认具体用法。
  • 安装前应确认权限范围和维护状态,注意是否触发联网、命令执行或文件读写操作。
  • 当前指南为草案版本,未覆盖的任务应优先与现有 Achra 代码保持一致。

SKILL.md

Achra Guidelines

Overview

Achra platform guidelines for architecture, conventions, business domains, and technical patterns. This skill covers where code lives, how to name and structure it, when to use feature flags, and how domains and routes map.

WIP: These guidelines are a draft. When a task is not covered here or in linked references, prefer consistency with existing Achra code and patterns.

When to Apply

Reference these guidelines when:

  • Writing new code in the Achra codebase (components, pages, services, hooks, providers, etc)
  • Writing or reviewing Storybook stories
  • Creating skeleton loaders, loading placeholders, Suspense fallbacks, or Next.js loading.tsx
  • Refactoring or reviewing code for Achra consistency
  • Adding a new module, feature, or route
  • Answering questions about Achra architecture, business domains, or conventions
  • Deciding where to place a component or whether to add a feature flag
  • Answering questions about Achra's tech stack or choosing libraries/tools

Quick Reference

TopicRuleDetails
Module placementShared vs domain, promotion rulesUsed in 2+ modules or app root → check Promotion rules; single domain → modules/{domain}/. See architecture.md.
Namingkebab-caseFiles and directories: component-name.tsx, use-hook-name.ts. See conventions.md.
ComponentsDirectory + indexOne dir per component; one component per file (subcomponents in separate files). Helpers in lib/utils, not in component files. Named function, named export. See conventions.md.
Feature flagsShared, env-specificmodules/shared/lib/feature-flags/. Use for gating domains/sections (workstreams, finances, roadmaps). See feature-flags-and-env.md.
Data / GraphQLDomain graphql, generatedQueries in modules/<domain>/graphql/*.graphql; generated in modules/__generated__/graphql/. See data-and-graphql.md.
TypesProps in file; reusable at module rootconventions.md
ConstantsOne constants.ts per module in lib/; UPPER_SNAKE_CASEconventions.md
Tech stackNext 16, React 19, TS, Tailwind 4, shadcn, GraphQL + TanStack QueryFramework, UI, data, forms, and tooling. See tech-stack.md.
Storybook storiesSections/pages + reusable components; min variantsCreate for section/page and shared components; skip one-time small components; cover Default, Loading, Empty, Error. See storybook-stories.md.
Skeleton loadingMirror layout with SkeletonUse Skeleton from @/shared/components/ui/skeleton; place *-skeleton.tsx next to source component. See skeleton-loading.md.
Server actionsactions/, one per file, suffix actionIn modules/<module>/actions/; file and function names end with action. See architecture.md.

Storybook stories

Stories serve two purposes: documentation for reusable/shared components and visual regression testing via Chromatic on every PR.

When to create a story: For section-level and page-level components, and for any reusable component (especially in modules/shared/). Skip one-time small components — write the story on the parent section component instead.

Variants: Only create variants that produce visually distinct UI states. Default, Loading, Empty, and Error cover most components. Avoid prop-permutation variants that look identical in Chromatic.

Key patterns:

  • Colocate [component-name].stories.tsx next to the component file
  • Import from @storybook/nextjs-vite
  • Use layout: 'fullscreen' for sections, 'centered' for isolated components
  • Use shared decorators from modules/shared/lib/decorators.tsx: withNuqsAdapter, withReactQueryProvider, withPortalFontStyles
  • Mock API calls with MSW (parameters.msw.handlers); use delay('infinite') for the Loading variant
  • Place mock data in modules/{module}/mocks/, not inline in story files
  • Use tags: ['autodocs'] only on shared UI components

Full rules, patterns, and examples: storybook-stories.md.

Skeleton loading

Skeleton loading is an Achra pattern for loading states. Use it for route loading (loading.tsx), Suspense fallbacks, or any placeholder that should match the final layout to avoid shift.

Workflow: Locate the target UI → create a sibling {component-name}-skeleton.tsx → mirror structure and replace content with Skeleton elements sized to match → remove interactivity and data logic → validate layout parity and contrast.

Quick checklist:

  • Mirror layout containers and responsive classes (sm:, md:, etc.).
  • Replace text with Skeleton using line-height-derived heights; for multi-line with gap-1, subtract 2px per line to prevent layout shift.
  • Remove buttons, links, state, effects, and data fetching.
  • Use bg-border on skeletons inside bg-accent, bg-muted, or bg-secondary.
  • Reuse existing skeleton subcomponents when available.

Required import: import {Skeleton} from '@/shared/components/ui/skeleton'

Full rules, sizing, contrast, and accessibility: skeleton-loading.md. Patterns and examples: skeleton-loading-examples.md.

References

Full documentation:

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.64%
按下载量换算38

Claude

27.99%
按下载量换算30

Cursor

18.37%
按下载量换算19

Gemini CLI

9.46%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills