Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

prd-analysisPRD 分析

Agent Skill

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

总安装

423

周安装

18

GitHub Stars

公开资料未说明

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add 5dlabs/cto --skill "prd-analysis"

简介

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

  • 适用于产品需求文档分析、信息检索与筛选等研究类任务场景。
  • 通过关键词匹配和来源仓库路径提供候选结果,支持进一步核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 可通过 npx skills add 5dlabs/cto --skill "prd-analysis" 命令安装使用。

SKILL.md

PRD Analysis and Task Decomposition

Patterns for parsing PRDs and generating comprehensive task documentation.

Critical Success Criteria

Output quality is measured by how well agents can implement tasks WITHOUT needing to re-read the PRD. Each task must be self-contained with all necessary context embedded.

Structured Analysis (Chain of Thought)

Before generating tasks, think step-by-step:

  1. Analyze PRD Structure - Identify features, tech requirements, implicit dependencies
  2. Map Dependencies - What depends on what? Shared infrastructure needs?
  3. Define Task Boundaries - Atomic, single responsibility, independently testable
  4. Generate Implementation Details - Pseudo-code, file structures, library versions
  5. Define Test Strategies - Acceptance criteria, unit/integration/E2E guidance
  6. Self-Verify - All requirements covered? No circular deps? Valid ordering?

Service Discovery

Before generating any tasks, analyze the PRD to identify all services and their tech stacks.

Create a Service-to-Agent Mapping Table:

Service NameAgentTech StackDescription
Notification RouterrexRust/AxumHigh-performance API
Integration ServicenovaBun/Elysia/EffectChannel delivery
Admin APIgrizzGo/gRPCTenant management
Web ConsoleblazeNext.js/React/shadcnAdmin dashboard
Mobile ApptapExpo/React NativeMobile client
Desktop ClientsparkElectronDesktop notifications

Agent Assignment Rules

Implementation Agents (Write Code)

AgentLanguage/StackUse For
boltKubernetes/HelmInfrastructure (Task 1 ONLY)
rexRust/Axum/TokioRust backend services
grizzGo/gRPC/ChiGo backend services
novaBun/Elysia/EffectTypeScript backend
blazeNext.js/React/shadcnWeb frontends
tapExpo/React NativeMobile apps
sparkElectronDesktop apps

Support Agents (Review Only - AFTER Implementation)

AgentRoleUse ONLY For
cleoQuality ReviewCode review AFTER PR
cipherSecurity AuditSecurity audit AFTER PR
tessTestingWriting tests AFTER PR
atlasIntegrationMerging PRs AFTER reviews

CRITICAL: Support agents are NEVER assigned to implementation tasks.

Task 1: Always Infrastructure

Task 1 must ALWAYS be assigned to Bolt to provision:

  • Databases (PostgreSQL, MongoDB)
  • Caches (Redis/Valkey)
  • Message queues (Kafka, NATS)
  • Object storage (SeaweedFS S3)

Code Signatures in Details

Include language-specific function/struct signatures in task details:

Rust Example

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Notification {
    pub id: Uuid,
    pub tenant_id: Uuid,
    pub channel: Channel,
}

pub async fn create_notification(
    State(state): State<AppState>,
    Json(req): Json<CreateNotificationRequest>,
) -> Result<Json<NotificationResponse>, ApiError>

TypeScript/Effect Example

import { Schema } from "@effect/schema"
import { Effect } from "effect"

export const Integration = Schema.Struct({
  id: Schema.UUID,
  name: Schema.String,
  channel: Schema.Literal("slack", "discord", "email"),
})

Go Example

type TenantServiceServer struct {
    pb.UnimplementedTenantServiceServer
    db *pgxpool.Pool
}

func (s *TenantServiceServer) CreateTenant(
    ctx context.Context,
    req *pb.CreateTenantRequest,
) (*pb.Tenant, error)

Task JSON Format

{
  "tasks": [
    {
      "id": "1",
      "title": "Provision Infrastructure",
      "description": "Deploy PostgreSQL, Redis, Kafka clusters",
      "priority": "critical",
      "status": "pending",
      "dependencies": [],
      "agentHint": "bolt",
      "details": "Full implementation details with code signatures",
      "testStrategy": "Verification commands and expected outputs"
    }
  ]
}

Quality Checklist

Before finalizing:

  • Service table created with all services from PRD
  • Task 1 is agentHint: "bolt" for infrastructure
  • Every task has agentHint set
  • Implementation agents only for code tasks
  • Support agents ONLY for review/audit tasks
  • Code signatures in details for all implementation tasks
  • No auth/jwt/oauth tasks assigned to cipher
  • Dependencies form valid DAG (no cycles)
  • Implementation tasks depend on task-1
  • Each task is atomic (completable in one PR)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

29.35%
按下载量换算43

Antigravity

24.17%
按下载量换算36

windsurf

17.75%
按下载量换算26

trae

14.03%
按下载量换算21

OpenCode

8.77%
按下载量换算13

Codex

4.28%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills