Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计提醒

effect-ts-architecture效果 ts 架构

Agent Skill

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

总安装

9,419

周安装

409

GitHub Stars

12

下载量

4,404
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:effect-ts-architecture(效果 ts 架构)
来源仓库:https://github.com/happenings-community/requests-and-offers
仓库路径:skills/effect-ts-architecture
安装命令:
npx skills add https://github.com/happenings-community/requests-and-offers --skill 'Effect-TS Architecture'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/happenings-community/requests-and-offers --skill 'Effect-TS Architecture'

简介

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。

  • 使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。
  • 安装方式:github,安装命令:npx skills add https://github.com/happenings-community/requests-and-offers --skill 'Effect-TS Architecture'。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • effect-ts-architecture 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Effect-TS 7-Layer Architecture

Architecture patterns for this Holochain hApp's frontend: Service → Store → Schema → Errors → Composables → Components → Testing.

Key Reference Files

  • Service template: ui/src/lib/services/zomes/serviceTypes.service.ts
  • Store template: ui/src/lib/stores/serviceTypes.store.svelte.ts
  • Store helpers: ui/src/lib/utils/store-helpers/ (withLoadingState, createGenericCacheSyncHelper, etc.)
  • Zome helpers: ui/src/lib/utils/zome-helpers.ts (wrapZomeCallWithErrorFactory)
  • Error contexts: ui/src/lib/errors/error-contexts.ts
  • Cache service: ui/src/lib/utils/cache.svelte (CacheServiceTag, CacheServiceLive)

Service Layer Pattern

Services use Context.Tag for DI and wrapZomeCallWithErrorFactory to wrap Promise-based zome calls into Effects:

import { HolochainClientServiceTag } from '$lib/services/HolochainClientService.svelte';
import { Effect as E, Layer, Context } from 'effect';
import { wrapZomeCallWithErrorFactory } from '$lib/utils/zome-helpers';
import { MyDomainError } from '$lib/errors/my-domain.errors';
import { MY_DOMAIN_CONTEXTS } from '$lib/errors/error-contexts';

export interface MyDomainService {
  readonly createEntity: (input: EntityInDHT) => E.Effect<Record, MyDomainError>;
  // ... other methods
}

export class MyDomainServiceTag extends Context.Tag('MyDomainService')<
  MyDomainServiceTag, MyDomainService
>() {}

export const MyDomainServiceLive: Layer.Layer<
  MyDomainServiceTag, never, HolochainClientServiceTag
> = Layer.effect(
  MyDomainServiceTag,
  E.gen(function* () {
    const holochainClient = yield* HolochainClientServiceTag;

    const wrapZomeCall = <T>(zomeName: string, fnName: string, payload: unknown, context: string) =>
      wrapZomeCallWithErrorFactory<T, MyDomainError>(
        holochainClient, zomeName, fnName, payload, context, MyDomainError.fromError
      );

    const createEntity = (input: EntityInDHT) =>
      wrapZomeCall('my_zome', 'create_entity', { entity: input }, MY_DOMAIN_CONTEXTS.CREATE);

    return MyDomainServiceTag.of({ createEntity });
  })
);

Store Layer Pattern

Stores use Svelte 5 Runes ($state(), $derived()), import helpers from $lib/utils/store-helpers, and file extension is .store.svelte.ts:

import { withLoadingState, createGenericCacheSyncHelper, createStatusAwareEventEmitters,
  createUIEntityFromRecord, createStatusTransitionHelper, processMultipleRecordCollections,
  type LoadingStateSetter } from '$lib/utils/store-helpers';
import { CacheServiceTag, CacheServiceLive } from '$lib/utils/cache.svelte';

export const createMyDomainStore = () => E.gen(function* () {
  const service = yield* MyDomainServiceTag;
  const cacheService = yield* CacheServiceTag;

  // Svelte 5 Runes for reactive state
  const entities: UIEntity[] = $state([]);
  let loading: boolean = $state(false);
  let error: string | null = $state(null);

  const setters: LoadingStateSetter = {
    setLoading: (v) => { loading = v; },
    setError: (v) => { error = v; }
  };

  // Use standardized helpers
  const { syncCacheToState } = createGenericCacheSyncHelper({ all: entities });
  const eventEmitters = createStatusAwareEventEmitters<UIEntity>('myDomain');
  // ... withLoadingState(() => pipe(...)) pattern for operations
});

// Store instance creation
const store = pipe(
  createMyDomainStore(),
  E.provide(CacheServiceLive),
  E.provide(MyDomainServiceLive),
  E.provide(HolochainClientServiceLive),
  E.runSync
);
export default store;

Validation

Run npx tsx.claude/skills/effect-ts-7layer-architecture/validation/architecture-check.ts ServiceType to validate a domain's architectural compliance.

9 Store Helper Functions

All imported from $lib/utils/store-helpers:

  1. createUIEntityFromRecord — Entity creation from Holochain records
  2. createGenericCacheSyncHelper — Cache-to-state synchronization
  3. createStatusAwareEventEmitters — Type-safe event emission
  4. withLoadingState — Loading/error state management
  5. createStatusTransitionHelper — Status workflow (pending/approved/rejected)
  6. processMultipleRecordCollections — Multi-collection response handling
  7. createStandardEventEmitters — Basic CRUD event emission
  8. LoadingStateSetter (type) — Setter interface for loading state
  9. EntityStatus (type) — Status type for status transitions

Effect.gen vs.pipe Decision Matrix

Use caseStyle
Injecting/Retrieving dependenciesEffect.gen
Conditional logicEffect.gen
Sequential operationsEffect.gen
Error handling (mapError, catchAll).pipe
Adding tracing/logging.pipe
Layer building.pipe
Simple transforms.pipe

Architecture Rules

  • Services return E.Effect<T, DomainError>, never raw Promises
  • Stores use $state() and $derived() (Svelte 5), never writable/readable
  • Store files must have .store.svelte.ts extension
  • All domain errors extend tagged error pattern with fromError static method
  • Error contexts defined in $lib/errors/error-contexts.ts
  • DI via E.provide() / E.provideService() chains

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.83%
按下载量换算1,270

windsurf

26.3%
按下载量换算1,158

OpenCode

18.52%
按下载量换算816

Codex

13.23%
按下载量换算583

Antigravity

7.73%
按下载量换算340

Gemini CLI

3.5%
按下载量换算154

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills