Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

usecaseusecase 搜索

Agent Skill

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

总安装

367

周安装

15

GitHub Stars

公开资料未说明

下载量

118
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/efesto-cloud/skills --skill usecase

简介

usecase 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词或任务场景快速定位候选结果时使用。

  • 适用于信息调研、内容筛选和线索整理等研究检索类任务。
  • 通过关键词输入和来源仓库路径进行匹配与结果返回。
  • 安装命令为 npx skills add https://github.com/efesto-cloud/skills --skill usecase。
  • 使用前请确认权限范围、维护状态及是否涉及联网或文件操作。

SKILL.md

Use Case Skill

Installation: If not already installed, add the package with pnpm add @efesto-cloud/usecase.

Use cases are the application layer's entry points in a hexagonal architecture. They orchestrate domain entities, repositories (persistence), and services (email, auth, storage, etc.) to execute a single well-defined business operation.

Each use case ships four artifacts:

  1. InterfaceuseCase/{domain}/I{Name}.ts — the type contract
  2. ImplementationuseCase/{domain}/impl/{Name}.ts — the class
  3. Symboldi/Symbols.ts — a new symbol entry
  4. Bindingdi/container.ts — a DI binding line

Read references/templates.md for ready-to-copy code templates.

Before You Start

Gather context if the user hasn't already provided it:

  • What does it do? Understand the operation in plain language (create / update / delete / fetch / search / export…)
  • Authentication: Does it require a logged-in actor? Which auth type? (operator only, business entity only, dual/both, public/no auth)
  • Mutation vs read: Does it write data? If yes → needs @withTransaction and @audit. If no → neither.
  • Existing repos/services: What persistence or services does it need? Are they already defined? If a new repo method is needed, use the /persistence skill first.
  • New entity needed? If the domain entity doesn't exist yet, use the /entity skill first.
  • Return type: What does the caller get back on success, and which errors can it return?

Step 1 — Interface

Create useCase/{domain}/I{Name}.ts. See references/templates.md for all four auth-variant examples (operator, business entity, dual, no auth).

Rules:

  • The input is always With{Auth}<YourPayload>. If no auth is required, the payload is a plain object.
  • The return type is always Result<SuccessType, UnionOfErrors>.
  • Import DTOs (not raw entities) for the success type.
  • Keep payload types inline for simplicity; extract named types only when they're large or reused elsewhere.

Then add a type-only re-export to useCase/{domain}/index.ts:

export type { default as IMyUseCase } from "./IMyUseCase.js";

If this is a brand-new domain, also export the index.ts from the package's server.ts:

export * from "./useCase/{domain}/index.js";

Step 2 — Implementation

Create useCase/{domain}/impl/{Name}.ts. See references/templates.md for ready-to-copy implementations of CREATE, UPDATE, DELETE, GET, and SEARCH.

The shape depends on whether the use case mutates data:

Mutating (CREATE / UPDATE / DELETE / ADD / REMOVE / PUBLISH…)

Add @withTransaction and @audit decorators. Wrap the body with auth.flatRun(async () => {…}, input).

Read-only (GET / SEARCH / EXPORT…)

No @audit, no @withTransaction (unless the operation has side effects or needs a consistent snapshot).

Decorator order

When using both decorators, always put @withTransaction before (outer) @audit (inner):

@injectable()
@withTransaction<IFoo>()
@audit<IFoo>({ ... })
export default class Foo implements IFoo { ... }

Auth service API

All auth services share the same interface:

  • auth.flatRun(fn, input) — calls fn() inside an auth check; fn returns Result<S, F> → returns Result<S, NotLoggedError | F>
  • auth.run(fn, input) — same but fn returns a plain value (not a Result)
  • auth.get(input) — returns Maybe<Actor> — use when you need the actor object itself (e.g. to stamp an owner field)

Injecting application services

Not all use cases only need repos. Some also need application-level services (email, file storage, CSV export, job queues…). Inject them from Symbols.Service.* the same way as repos:

constructor(
  @inject(Symbols.Repo.FooRepo) readonly repo: IFooRepo,
  @inject(Symbols.Service.EmailService) readonly email: IEmailService,
  @inject(Symbols.DomainService.OperatorAuthService) readonly auth: IOperatorAuthService,
) {}

Step 3 — Symbol

Add the new use case name to di/Symbols.ts in two places:

1. The union type for the domain:

type MyDomainUC =
  | "CreateMyEntity"
  | "GetMyEntity"
  | "MyNewUseCaseName"; // ← add here

2. The runtime enum object for the domain:

const MyDomainUCEnum = {
  CreateMyEntity: "CreateMyEntity",
  GetMyEntity: "GetMyEntity",
  MyNewUseCaseName: "MyNewUseCaseName", // ← add here
} as const;

The Symbols.UseCase.myDomain object is derived automatically by the convert() helper — no further changes needed in the Symbols const.

Step 4 — Binding

Add one line to di/container.ts. Find the block for the domain and append:

container.bind<IMyUseCase>(Symbols.UseCase.myDomain.MyNewUseCaseName).to(MyNewUseCaseName).inRequestScope();

Add the import at the top of container.ts alongside the other imports for that domain:

import MyNewUseCaseName from "~/useCase/myDomain/impl/MyNewUseCaseName.js";

Logic Placement Guide

See references/logic-guide.md for a full decision table and examples.

Rule of thumb: if the operation can be expressed purely in terms of the entity's own fields, push it to the entity. As soon as it needs to load or save something, it belongs in the use case.

Checklist

Before finishing, verify:

  • Interface file created and re-exported (type-only) from useCase/{domain}/index.ts
  • Implementation file created with @injectable()
  • @audit present for all mutating operations (CREATE / UPDATE / DELETE / ADD / REMOVE…)
  • @withTransaction present on all mutating operations
  • Auth service injected and flatRun / run used to wrap the body
  • All repo and service deps declared in constructor with @inject(Symbols.…)
  • Symbol name added to both the union type and the enum object in Symbols.ts
  • Binding added to container.ts with the matching import
  • server.ts exports the domain index.ts (only if this is a brand-new domain)
  • If a new repo method was needed: used the /persistence skill (persistence)
  • If a new entity was needed: used the /entity skill (entity)

Related Skills

  • /entity (entity) — Create or update domain entities and DTOs
  • /persistence (persistence) — Add repository interfaces, implementations, mappers, and MongoDB document types

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.89%
按下载量换算42

Claude

29.05%
按下载量换算34

Cursor

19.32%
按下载量换算23

Gemini CLI

9.23%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills