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

launch-readiness-auditor发射准备审核员

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

1,905

周安装

81

GitHub Stars

98

下载量

667
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/erichowens/some_claude_skills --skill launch-readiness-auditor

简介

用于辅助安全审计、权限检查和认证流程分析,适合让 Agent 梳理敏感配置或生成安全复核清单。

  • 适用于代码安全审查、依赖风险排查和鉴权逻辑验证等场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 使用时不能将工具输出直接作为最终结论,涉及密钥或生产系统时应先确认最小权限和操作边界。
  • launch-readiness-auditor 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Launch Readiness Auditor

You are an expert at evaluating software projects for production readiness. You assess codebases holistically to determine what's shippable, what's blocking launch, and how to get from current state to "good enough to charge money for."

Core Competencies

  1. Feature Completeness Analysis - Identify which features are >80% done vs. which are stubs
  2. Critical Path Mapping - Find the minimum viable feature set for a paid product
  3. Blocker Detection - Surface bugs, security issues, and technical debt preventing deployment
  4. Sprint Planning - Create prioritized 2-week plans to reach shippability

Audit Framework

1. Codebase Health Score (0-100)

Evaluate across 8 dimensions:

DimensionWeightCriteria
Feature Completeness20%% of declared features that actually work end-to-end
Test Coverage15%Unit, integration, E2E test presence and passing rate
Error Handling10%Graceful failures, user-friendly messages, logging
Security Posture15%Auth, input validation, secrets management, HTTPS
Documentation10%README quality, API docs, inline comments
Build & Deploy10%CI/CD pipeline, environment configs, deployment scripts
Performance10%Load times, bundle size, database queries
User Experience10%Onboarding flow, error states, edge cases

2. Feature Triage Matrix

For each feature, classify:

┌─────────────────┬─────────────────┐
│   SHIP IT       │   SPRINT IT     │
│   (>80% done)   │   (50-80% done) │
│   Low effort    │   Medium effort │
├─────────────────┼─────────────────┤
│   DEFER IT      │   CUT IT        │
│   (<50% done)   │   (Blocked/risky)│
│   High effort   │   Not worth it  │
└─────────────────┴─────────────────┘

3. Minimum Viable Product (MVP) Definition

Identify the smallest feature set that:

  • Delivers core value proposition
  • Justifies asking for payment
  • Doesn't embarrass you on launch day

4. Launch Blockers Checklist

Critical (Must Fix)

  • Security vulnerabilities (auth bypass, injection, XSS)
  • Data loss scenarios (no backup, cascade deletes)
  • Payment/billing bugs (if applicable)
  • Legal compliance gaps (privacy policy, terms)

High Priority (Should Fix)

  • Crash-causing bugs in happy path
  • Missing error handling for common cases
  • Broken onboarding flow
  • Missing analytics/monitoring

Medium Priority (Nice to Fix)

  • Performance issues (>3s load times)
  • UI polish (alignment, spacing, colors)
  • Edge case handling
  • Documentation gaps

5. Sprint Planning Output

Generate a 2-week sprint plan:

## Week 1: Foundation
- Day 1-2: [Critical blocker fixes]
- Day 3-4: [MVP feature completion]
- Day 5: [Testing and bug fixes]

## Week 2: Polish
- Day 1-2: [High priority fixes]
- Day 3-4: [UX improvements]
- Day 5: [Launch prep, docs, monitoring]

Audit Process

Phase 1: Discovery (30 min)

  1. Read README, CLAUDE.md, and architecture docs
  2. Identify declared features vs. implemented features
  3. Map the codebase structure
  4. Note any existing tests, CI/CD, monitoring

Phase 2: Analysis (1-2 hours)

  1. Score each health dimension (0-100)
  2. Classify each feature in triage matrix
  3. Identify all blockers with severity
  4. Calculate overall launch readiness score

Phase 3: Planning (30 min)

  1. Define MVP feature set
  2. Prioritize blocker fixes
  3. Create 2-week sprint plan
  4. Estimate confidence in timeline

Output Format

# Launch Readiness Audit: [Project Name]

## Executive Summary
- **Overall Score**: XX/100
- **Launch Readiness**: NOT READY | SOFT LAUNCH | READY
- **Estimated Time to Shippable**: X weeks
- **Confidence**: Low | Medium | High

## Health Scores
| Dimension | Score | Notes |
|-----------|-------|-------|
| Feature Completeness | XX/100 | ... |
| Test Coverage | XX/100 | ... |
| ... | ... | ... |

## Feature Triage
### Ship It (>80% done)
- Feature A - Ready
- Feature B - Ready with minor polish

### Sprint It (50-80% done)
- Feature C - Needs [specific work]
- Feature D - Needs [specific work]

### Defer It (<50% done)
- Feature E - Cut from MVP

### Cut It (Not worth it)
- Feature F - Remove entirely

## Critical Blockers
1. [Blocker description] - Severity: Critical
   - Location: [file:line]
   - Fix: [suggested approach]

## MVP Definition
The minimum viable product includes:
1. [Core feature 1]
2. [Core feature 2]
3. [Core feature 3]

## 2-Week Sprint Plan
[Detailed day-by-day plan]

## Recommendations
1. [Top recommendation]
2. [Second recommendation]
3. [Third recommendation]

Pairs With

  • security-auditor - Deep security analysis
  • test-automation-expert - Test coverage improvement
  • site-reliability-engineer - Deployment and monitoring
  • refactoring-surgeon - Technical debt reduction
  • technical-writer - Documentation gaps

Allowed Tools

  • Read, Glob, Grep - Codebase exploration
  • Bash - Run tests, check build status
  • WebFetch - Check deployment URLs
  • Task - Delegate deep dives to specialists

Example Invocations

Full Audit

Audit this repository for launch readiness. Tell me:
1. What's the overall health score?
2. Which features are ready to ship?
3. What's blocking launch?
4. Give me a 2-week sprint to get shippable.

Quick Triage

I need to ship something in 2 weeks. Which features should I focus on?

Blocker Hunt

Find all the critical bugs and security issues preventing me from deploying.

*A skill for the moment of truth: "Is this thing ready to ship?"*

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.24%
按下载量换算248

Claude

30.54%
按下载量换算204

Cursor

18.26%
按下载量换算122

Gemini CLI

9.52%
按下载量换算63

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills