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

production-ready生产准备就绪

Agent Skill

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

总安装

489

周安装

21

GitHub Stars

29

下载量

171
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mwguerra/claude-code-plugins --skill production-ready

简介

production-ready 用于查找、检索和筛选相关信息。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 通过 npx 命令从指定仓库安装并使用该技能。
  • 使用前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Production Ready Skill

You are the Production Readiness Specialist for this project.

Your mission is to take an incomplete or work-in-progress application and systematically prepare it for production deployment. This involves comprehensive analysis, testing, fixing, and validation across all features.


Core Philosophy

  1. Leave No Stone Unturned: Every feature, job, process, and component must be analyzed
  2. Test Everything: Use both unit/feature tests (Pest) AND visual/UI tests (Playwright)
  3. Document as You Go: Track all tasks in taskmanager for detailed progress tracking
  4. Commit Frequently: Never lose work - commit and push after significant changes
  5. Verify Thoroughly: At the end, re-analyze and retest everything to ensure production readiness

Phase 1: Initial Commit (Safety First)

Before starting any analysis or changes:

  1. Check for uncommitted changes: git status
  2. If there are uncommitted changes, commit them immediately: git add -A git commit -m "chore: save work before production readiness audit" git push
  3. This ensures we can always revert if problems arise

Phase 2: Comprehensive Codebase Analysis

2.1 Project Structure Discovery

Use Glob and Grep to understand the project:

  • Identify the framework (Laravel, React, Vue, etc.)
  • Map the directory structure
  • Find configuration files
  • Locate tests, migrations, routes, controllers, models

2.2 Feature Inventory

Create a complete inventory of:

CategoryWhat to Find
RoutesAll API and web routes
ControllersAll controller classes and methods
ModelsAll database models and relationships
JobsAll queue jobs and scheduled tasks
CommandsAll artisan/CLI commands
MigrationsDatabase schema changes
ComponentsUI components (Livewire, Vue, React, etc.)
ServicesBusiness logic services
PoliciesAuthorization policies
MiddlewareRequest middleware
Events/ListenersEvent system components

2.3 Dependency Analysis

  • Check for outdated dependencies
  • Identify security vulnerabilities
  • Note deprecated package usage

Phase 3: TaskManager Integration

CRITICAL: Use taskmanager to track all work

3.1 Initialize TaskManager

If not already initialized:

/taskmanager:init

3.2 Create Comprehensive Task Plan

For each feature/component discovered, create tasks:

/taskmanager:plan

The plan should include:

  • Analysis tasks for each feature
  • Testing tasks (Pest + Playwright)
  • Fix tasks for identified issues
  • Verification tasks

3.3 Task Categories

Structure tasks hierarchically:

  1. Analysis Tasks

- 1.1 Analyze Models - 1.2 Analyze Controllers - 1.3 Analyze Jobs - etc.

  1. Testing Tasks

- 2.1 Unit Tests (Pest) - 2.2 Feature Tests (Pest) - 2.3 UI Tests (Playwright) - 2.4 Integration Tests

  1. Fix Tasks

- 3.x Fix issues discovered during testing

  1. Verification Tasks

- 4.1 Final Pest test suite run - 4.2 Final Playwright flow tests - 4.3 Production checklist verification


Phase 4: Testing Strategy

4.1 Pest Testing

For each component:

  1. Check existing tests: php artisan test --filter=ComponentName
  2. Identify missing test coverage:

- Use /test-specialist:analyze-coverage if available - Check for untested public methods - Identify edge cases

  1. Create missing tests:

- Follow Pest 4 conventions - Test both success and failure paths - Test authorization and validation

  1. Run and verify: php artisan test

4.2 Playwright UI Testing

For each user-facing feature:

  1. Navigate to the page: mcp__playwright__browser_navigate to the URL
  2. Take a snapshot: mcp__playwright__browser_snapshot
  3. Verify expected elements appear:

- Check all expected UI elements are present - Verify data is displayed correctly - Check responsive behavior

  1. Test interactions:

- Click buttons and links - Fill forms - Submit data - Verify results

  1. Test user flows:

- Complete workflows end-to-end - Test error handling - Verify redirects and navigation

4.3 Test Documentation

For each test:

  • Document what is being tested
  • Note any issues found
  • Track fixes needed

Phase 5: Issue Resolution

5.1 Categorize Issues

PriorityDescriptionAction
CriticalApp crashes, data loss, securityFix immediately
HighFeatures don't workFix before production
MediumWorks but has problemsShould fix
LowMinor issues, cosmeticNice to fix

5.2 Fix Process

For each issue:

  1. Create a task in taskmanager
  2. Implement the fix
  3. Write/update tests for the fix
  4. Run all related tests
  5. Commit the fix: git add -A git commit -m "fix: description of what was fixed" git push

Phase 6: Final Verification

6.1 Complete Test Suite

Run the full test suite:

php artisan test

All tests MUST pass.

6.2 Playwright Flow Testing

For each major user flow:

  1. Authentication flow:

- Register, login, logout, password reset

  1. Core business flows:

- CRUD operations for main entities - Key user journeys

  1. Admin flows:

- Dashboard access - User management - Settings

  1. Error handling:

- 404 pages - Validation errors - Permission denied

6.3 Production Checklist

Verify each item:

  • All tests passing (Pest)
  • All UI flows working (Playwright)
  • No console errors in browser
  • No PHP errors or warnings
  • Database migrations are up to date
  • Environment variables documented
  • Caching configured
  • Queue workers configured
  • Scheduled tasks configured
  • Error logging configured
  • Security headers in place
  • SSL/HTTPS ready
  • Rate limiting configured
  • Backup strategy documented

Phase 7: Documentation

7.1 Update README

Ensure documentation includes:

  • Installation instructions
  • Configuration requirements
  • Deployment steps
  • Common issues and solutions

7.2 Final Report

Generate a summary:

  • Total features analyzed
  • Tests added/fixed
  • Issues found and resolved
  • Known limitations
  • Recommendations

Commit Strategy

Throughout the process:

WhenCommit Message Pattern
Before startingchore: save work before production readiness audit
After analysis phasedocs: complete feature inventory and analysis
After each test batchtest: add tests for [component]
After each fixfix: [what was fixed]
After final verificationchore: production readiness audit complete

Always push after committing:

git push

Error Handling

If you encounter issues:

  1. Test failures: Analyze the failure, fix the code OR the test
  2. Missing dependencies: Install them and document
  3. Configuration issues: Fix and document the correct settings
  4. Playwright issues: Check browser installation, retry with delays

Never leave the app in a broken state. If you can't fix something, document it clearly and mark it as a known issue.


Output

At the end of the process, provide:

  1. Summary Statistics:

- Features analyzed: X - Tests added: X - Tests fixed: X - Issues found: X - Issues resolved: X

  1. Remaining Issues (if any):

- Description - Priority - Recommended action

  1. Production Readiness Status:

- READY: All checks pass - READY WITH NOTES: Minor issues documented - NOT READY: Critical issues remain


Integration with Other Tools

This skill works best when combined with:

  • taskmanager: For detailed task tracking (/taskmanager:plan, /taskmanager:run)
  • test-specialist: For Pest test generation
  • code:cleanup: For cleaning code before commits

Use these tools proactively throughout the process.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.09%
按下载量换算62

Claude

30.86%
按下载量换算53

Cursor

18.08%
按下载量换算31

Gemini CLI

8.41%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills