Skip to main content
GitHub 仓库

skills

skills 收录了来自 amajorai 的 39 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
39
Stars
3
更新
2026-06-02
Forks
0
职业覆盖
6 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

hardening
网络与计算机系统管理员

Harden a self-hosted Linux server. Detects current state, runs a full interview to understand what the user wants, warns about edge cases (no SSH keys, password-only auth, provider firewalls), then implements only the selected steps in a safe order.

2026-06-02
edge-cases
软件质量保证分析师与测试员

Systematic edge case discovery, test coverage, and hardening for any feature or codebase area. Spawns parallel subagents to enumerate edge cases across eight categories, writes tests for each, runs them, and fixes unhandled cases. Use after implementation to ensure robustness before shipping.

2026-05-29
free-trial
软件开发工程师

Add a time-boxed free trial to any app with a payment integration. Handles trial start, expiry tracking, gating, expiry emails, and the upgrade prompt flow. Use when adding a trial period to an existing subscription or paywall.

2026-05-29
youtube-to-skill
软件开发工程师

Convert any YouTube video into a reusable Claude Code skill. Paste a YouTube URL and this skill fetches the transcript, extracts the actionable content, and writes a ready-to-use .claude/skills/<name>.md file. Best for tutorial videos, how-to guides, workflow demos, or instructional content.

2026-05-29
aso
软件开发工程师

Make a site agent-ready using Cloudflare AI Search and the isitagentready.com checklist. Audits the current site, then implements: Cloudflare AI Search (hybrid vector + keyword), markdown content negotiation (acceptmarkdown.com), robots.txt AI rules, sitemap, MCP Server Card, and Agent Skills discovery. Use when asked to add search, make a site agent-ready, or optimize for AI agents.

2026-05-29
better-t-stack
软件开发工程师

Scaffolds a Better T Stack project via a structured interview. Uses AskUserQuestion to let the user pick frontend, backend, runtime, database, ORM, API layer, auth, payments, addons, example templates, and where to create the project. Assembles and runs the exact create-better-t-stack CLI command with no manual prompts.

2026-05-29
distill-skill
软件开发工程师

Scans conversation history (current session and/or past transcripts) to identify repeated multi-step workflows, then extracts them into new reusable Claude Code skills written to .claude/skills/<name>.md. Turns what you keep doing manually into a one-word command.

2026-05-29
e2e
软件质量保证分析师与测试员

End-to-end test authoring and execution for web, mobile, React Native, or Flutter apps. Discovers user flows, sets up the E2E framework if needed, writes tests covering the golden path and critical edge cases, runs them, and fixes failures. Primary tool is agent-browser (web). Falls back to Playwright (desktop/complex web), Maestro (iOS/Android/React Native/Flutter), or Claude for Chrome (web, last resort).

2026-05-29
icons
软件开发工程师

Generate app icons, favicons, and splash screens for Tauri, PWA, Capacitor (iOS/Android), Expo, Electron, and web projects from a single source image. Detects project type automatically, validates the source image, runs the right CLI command, and wires up the output.

2026-05-29
lighthouse
软件开发工程师

Run Lighthouse audits on a website, analyze the results across all four categories (Performance, Accessibility, Best Practices, SEO), prioritize fixes by impact, implement them, and verify the scores improved. Use when asked to improve Lighthouse scores, optimize web performance, fix Core Web Vitals, or audit a site.

2026-05-29
a11y
软件开发工程师

Audit and fix accessibility issues in any web app to WCAG 2.2 AA standard. Covers keyboard navigation, screen reader support, color contrast, focus management, and ARIA. Use when preparing an app for launch or fixing reported accessibility issues.

2026-05-29
analytics
软件开发工程师

Add product analytics to any web or mobile app. Sets up PostHog or Plausible with a proper event taxonomy, page views, funnel events, and a dashboard. Use when you need to understand how users actually use the app.

2026-05-29
auth
软件开发工程师

Add authentication to any web or mobile app using Better Auth. Sets up OAuth (Google/GitHub/Discord), magic links, passkeys, session management, and route protection. Handles the full boilerplate: signup, login, logout, protected routes, and user model. Use when starting a new app or adding auth to an existing one.

2026-05-29
bundle-analysis
软件开发工程师

Analyze JavaScript bundle size, identify bloat, and implement fixes: code splitting, lazy loading, tree shaking, and dependency swaps. Use when page load is slow, Lighthouse performance score is low, or before launching a web app.

2026-05-29
context
其他计算机职业

Set up the best context tools for AI coding agents: Context7 (live library docs via MCP), opensrc (real package source code), and a project CLAUDE.md. Use when starting a new project or when the agent keeps hallucinating outdated API usage.

2026-05-29
db-migrate
网络与计算机系统管理员

Run a database migration safely in production. Covers dry-run, rollback plan, zero-downtime patterns, and verification. Use before applying any schema change to a live database with real user data.

2026-05-29
email-transactional
软件开发工程师

Wire up transactional email for any app using Resend, Postmark, useSend, or Plunk. Sets up templates for welcome, password reset, notifications, and digests. Handles domain verification, deliverability, and unsubscribe. Use when the app needs to send emails to users.

2026-05-29
i18n
软件开发工程师

Add internationalization to any web or mobile app. Extracts strings, sets up locale routing, wires up a translation library, and connects to a translation workflow. Use when the app needs to support more than one language.

2026-05-29
observability
软件开发工程师

Set up error tracking, structured logging, and uptime monitoring for any app. Wires up Sentry (errors), structured logs with context, and an uptime monitor (BetterStack or UptimeRobot). Use when an app goes to production without visibility into what breaks.

2026-05-29
og-images
网页开发工程师

Add dynamic Open Graph images to any web app using an edge function. No third-party service dependency. Generates per-page social preview images for Twitter/X, LinkedIn, Slack, and iMessage link previews. Use when sharing the app's links looks blank or generic.

2026-05-29
payments
软件开发工程师

Integrate payments into any web or mobile app. Sets up Stripe, LemonSqueezy, or Polar.sh for web; Superwall or RevenueCat for mobile. Covers products, webhooks, subscription portal, billing page, and a test-to-live checklist. Use when adding a paywall, subscription plan, or one-time purchase to an app.

2026-05-29
push-notifications
软件开发工程师

Add push notifications to any web or mobile app. Covers web push (service worker), Expo push for React Native, and a notification preferences UI. Use when the app needs to re-engage users outside of their active session.

2026-05-29
owasp-web-top10
信息安全分析师

Audit a web application against OWASP Top 10:2025. Runs parallel subagents for each category, produces a prioritized findings report with severity ratings, and optionally implements fixes. Use before launch or after major changes.

2026-05-29
seo
网页开发工程师

Audit and optimize a web project for SEO. Detects the stack, runs a structured interview, then implements only the selected improvements: meta tags, structured data, sitemaps, robots.txt, page speed, Core Web Vitals, and more.

2026-05-29
agentic-ai-threats
信息安全分析师

Threat model an agentic AI system against OWASP Agentic AI Threats and Mitigations. Identifies architectural threats across planning, memory, tool use, and multi-agent coordination. Produces a STRIDE-style threat model with mitigations, residual risk ratings, and an implementation roadmap. Use when designing or hardening an agentic AI system.

2026-05-27
agentic-skills-top10
其他计算机职业

Review AI agent skills (plugins, tools, MCP servers) against the OWASP Agentic Skills Top 10 (AST10). Covers malicious skills, supply chain compromise, over-privileged skills, insecure metadata, unsafe deserialization, weak isolation, update drift, poor scanning, missing governance, and cross-platform reuse. Use when building, publishing, or auditing agent skill/plugin ecosystems.

2026-05-27
ai-agent-security
信息安全分析师

Implement or audit AI agent security controls based on the OWASP AI Agent Security Cheat Sheet. Covers 9 security pillars: tool least-privilege, input validation, memory/context security, human-in-the-loop controls, output guardrails, monitoring, multi-agent trust, data protection, and adversarial testing. Use when building or hardening any AI agent system.

2026-05-27
llm-top10
信息安全分析师

Audit an LLM-powered application against the OWASP LLM Top 10:2025. Covers prompt injection, sensitive information disclosure, supply chain, data and model poisoning, improper output handling, excessive agency, system prompt leakage, vector and embedding weaknesses, misinformation, and unbounded consumption. Produces a prioritized findings report with optional fixes.

2026-05-27
prompt-injection
信息安全分析师

Audit and fix LLM prompt injection vulnerabilities based on the OWASP LLM Prompt Injection Prevention Cheat Sheet. Covers direct injection, indirect/remote injection, encoding attacks, typoglycemia, Best-of-N jailbreaking, RAG poisoning, agent-specific attacks, and implements layered defenses including input validation, structured prompts, output monitoring, and HITL controls.

2026-05-27
agent-quality
软件开发工程师

Set up quality tools designed specifically for AI-generated code: react-doctor (health scoring), react-scan (re-render detection), react-grab (element context capture), expect (browser testing from git diffs), and agentation (UI annotation for agents). Interviews the user to install only what's relevant.

2026-05-26
launch-checklist
软件开发工程师

Pre-launch audit for any web app. Checks SSL, DNS, env vars, secrets, rate limits, backups, error tracking, analytics, performance, and staging/prod parity. Produces a prioritized fix list. Use the day before going live.

2026-05-26
app-store-compliance
软件开发工程师

Audits an app against the latest Apple App Store and Google Play Store review guidelines. Fetches current guidelines from official sources, interviews the user about app features, content, monetization, and target audience, then produces a detailed compliance report with pass/fail status for each rule category and a prioritized fix list. Use before submitting a new app, adding a major feature, or after a rejection to understand what needs to change.

2026-05-26
legal-compliance
软件开发工程师

Generates production-ready legal documents for app deployment: Privacy Policy, Terms of Service, Cookie Policy, Data Processing Agreement (DPA), and jurisdiction-specific compliance checklists. Covers 20+ regulations: GDPR, UK GDPR, CCPA/CPRA, PIPEDA, LGPD, Singapore PDPA, Thailand PDPA, APPI (Japan), PIPL (China), POPIA (South Africa), DPDP (India), Australia Privacy Act, PIPA (South Korea), Malaysia PDPA, Philippines DPA, Indonesia PDP, Vietnam PDPD, UAE PDPL, Saudi Arabia PDPL, Switzerland nDSG, Turkey KVKK, Mexico LFPDPPP, COPPA, and more. Conducts a detailed interview covering business details, data flows, hosting infrastructure, and target markets before generating any documents. Use when launching an app, entering a new market, or auditing existing legal coverage.

2026-05-26
mirror
其他计算机职业

Scans all past conversation transcripts for the current project and agent type, identifies recurring patterns and improvement opportunities across sessions, then updates the project's agent config file (CLAUDE.md or AGENTS.md). Gives the agent a view of its own history.

2026-05-26
ci
软件开发工程师

Set up a GitHub Actions CI/CD pipeline for any project. Configures lint, typecheck, test, build, preview deploys on PRs, and production deploy on main. Use when setting up a new project or when CI is missing or broken.

2026-05-26
cookie-consent
网页开发工程师

Add a GDPR/CCPA-compliant cookie consent banner to any web app. Implements consent categories, blocks non-essential scripts until consent is given, and provides an opt-out mechanism. Use when the app uses analytics, advertising, or any non-essential cookies.

2026-05-26
load-test
软件开发工程师

Run load tests against any API or web app using k6. Identifies throughput limits, latency degradation, and failure modes under realistic traffic. Use before launch, before a traffic spike, or after a major backend change.

2026-05-26
waitlist
网页开发工程师

Build a waitlist landing page with email capture, referral mechanics, position tracking, and a drip email welcome sequence. Use before launching a product to build an audience and create launch momentum.

2026-05-26
reflect
其他计算机职业

Reflects on the current conversation to extract corrections, repeated issues, and validated approaches, then updates CLAUDE.md (Claude agents) or AGENTS.md (Codex agents) with new rules. Run at any point to capture what the agent should learn from this session.

2026-05-26