💻

行動開發

3314 skills in 開發 > 行動開發

code-static-analysis-security

静的解析によるセキュリティ脆弱性検出を整理し、SAST運用と検出ルールの設計を支援するスキル。SQLインジェクション、XSS、コマンドインジェクションなどの検出と改善方針を扱う。Anchors:• Web Application Security (Andrew Hoffman) / 適用: 脅威分析と検出観点 / 目的: 脆弱性検出の精度向上• OWASP ASVS / 適用: 検出基準の整理 / 目的: セキュリティ要件の明文化• Secure by Design (OWASP) / 適用: 改善方針 / 目的: 安全な設計判断Trigger:Use when running SAST, defining detection rules, auditing injection vulnerabilities, or documenting static analysis findings.static analysis, SAST, SQL injection, XSS, command injection, security review

daishiman/AIWorkflowOrchestrator
2
0
更新於 4d ago

performing-regression-analysis

Marketplace

This skill empowers Claude to perform regression analysis and modeling using the regression-analysis-tool plugin. It analyzes datasets, generates appropriate regression models (linear, polynomial, etc.), validates the models, and provides performance metrics. Use this skill when the user explicitly requests regression analysis, prediction based on data, or mentions terms like "linear regression," "polynomial regression," "regression model," or "predictive modeling." This skill is also helpful when the user needs to understand the relationship between variables in a dataset.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

research-synthesis

Synthesize research findings for OAK planning using the oak.plan-research workflow. Use when consolidating findings from codebase exploration, comparing approaches, or creating research/*.md documents.

sirkirby/open-agent-kit
2
0
更新於 4d ago

detecting-data-anomalies

Marketplace

This skill empowers Claude to identify anomalies and outliers within datasets. It leverages the anomaly-detection-system plugin to analyze data, apply appropriate machine learning algorithms, and highlight unusual data points. Use this skill when the user requests anomaly detection, outlier analysis, or identification of unusual patterns in data. Trigger this skill when the user mentions "anomaly detection," "outlier analysis," "unusual data," or requests insights into data irregularities.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

data-processor

Process and transform arrays of data with common operations like filtering, mapping, and aggregation

ArtemisAI/code-execution-with-MCP
2
0
更新於 4d ago

lcp-openai-serve

Develop apps/openai-serve (Go). Keep OpenAI gateway behavior correct and avoid logging prompts/outputs.

YusukeShimizu/lightning-compute-protocol
2
0
更新於 4d ago

validating-csrf-protection

Marketplace

This skill helps to identify Cross-Site Request Forgery (CSRF) vulnerabilities in web applications. It validates the implementation of CSRF protection mechanisms, such as synchronizer tokens, double-submit cookies, SameSite attributes, and origin validation. Use this skill when you need to analyze your application's security posture against CSRF attacks or when asked to "validate csrf", "check for csrf vulnerabilities", or "test csrf protection".

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

mobile-toolchain

Apply modern mobile development toolchain patterns: Expo (default), React Native, Tauri for iOS/Android apps. Use when building mobile applications, choosing cross-platform frameworks, or discussing mobile architecture.

phrazzld/claude-config
2
1
更新於 4d ago

skill-adapter

Marketplace

Analyzes existing plugins to extract their capabilities, then adapts and applies those skills to the current task. Acts as a universal skill chameleon that learns from other plugins.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

creating-data-visualizations

Marketplace

This skill enables Claude to generate data visualizations, plots, charts, and graphs from provided data. It analyzes the data, selects the most appropriate visualization type, and creates a visually appealing and informative graphic. Use this skill when the user requests a visualization, plot, chart, or graph; when data needs to be presented visually; or when exploring data patterns. The skill is triggered by requests for "visualization", "plot", "chart", or "graph".

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

generating-test-doubles

Marketplace

This skill uses the test-doubles-generator plugin to automatically create mocks, stubs, spies, and fakes for unit testing. It analyzes dependencies in the code and generates appropriate test doubles based on the chosen testing framework, such as Jest, Sinon, or others. Use this skill when you need to generate test doubles, mocks, stubs, spies, or fakes to isolate units of code during testing. Trigger this skill by requesting test double generation or using the `/gen-doubles` or `/gd` command.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

scanning-for-data-privacy-issues

Marketplace

This skill enables Claude to automatically scan code and configuration files for potential data privacy vulnerabilities using the data-privacy-scanner plugin. It identifies sensitive data exposure, compliance violations, and other privacy-related risks. Use this skill when the user requests to "scan for data privacy issues", "check privacy compliance", "find PII leaks", "identify GDPR violations", or needs a "privacy audit" of their codebase. The skill is most effective when used on projects involving personal data, financial information, or health records.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

detecting-performance-bottlenecks

Marketplace

This skill enables Claude to detect and resolve performance bottlenecks in applications. It analyzes CPU, memory, I/O, and database performance to identify areas of concern. Use this skill when you need to diagnose slow application performance, optimize resource usage, or proactively prevent performance issues. The skill is triggered by requests to "detect bottlenecks", "analyze performance", "find performance issues", or similar phrases related to performance optimization. It helps uncover root causes and suggest remediation strategies.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

code-review-checklist

Apply comprehensive code review checklist covering purpose, design, quality, correctness, security, performance, testing, and documentation. Use when reviewing pull requests, conducting code reviews, or self-reviewing changes before committing.

phrazzld/claude-config
2
1
更新於 4d ago

domain-driven-design

ドメイン駆動設計(DDD)のビルディングブロックを活用したドメインモデリングを専門とするスキル。Entity、Value Object、Aggregate、Repository Patternを適用し、ビジネスロジックを中心に据えた堅牢なドメイン層を設計する。Anchors:• Domain-Driven Design (Eric Evans) / 適用: 戦術的パターン / 目的: ドメインモデル構築• Implementing DDD (Vaughn Vernon) / 適用: 集約設計 / 目的: トランザクション境界定義• Clean Architecture (Robert C. Martin) / 適用: 依存関係逆転 / 目的: ドメイン層の独立性確保Trigger:Use when designing domain models, defining entities and value objects, establishing aggregate boundaries, designing repository interfaces, or applying DDD tactical patterns.domain driven design, DDD, entity design, value object, aggregate, repository pattern, domain model, bounded context

daishiman/AIWorkflowOrchestrator
2
0
更新於 4d ago

ousterhout-principles

Apply Ousterhout's software design principles: detect shallow modules, information leakage, and complexity red flags. Use when reviewing code, designing modules, refactoring, or discussing architecture.

phrazzld/claude-config
2
1
更新於 4d ago

critical-analysis

Marketplace

Applies rigorous critical analysis to evaluate claims, arguments, and research. Use when evaluating evidence quality, peer reviewing content, assessing argument validity, or identifying weaknesses in reasoning. Triggers on phrases like "critically analyze", "evaluate this", "review this paper", "check the logic", "assess the evidence", "find flaws", "peer review".

poemswe/co-researcher
2
0
更新於 4d ago

testing-skills-with-subagents

Marketplace

Use when creating or editing skills, before deployment, to verify they work under pressure and resist rationalization - applies RED-GREEN-REFACTOR cycle to process documentation by running baseline without skill, writing to address failures, iterating to close loopholes

cipherstash/cipherpowers
2
0
更新於 4d ago

performing-regression-analysis

Marketplace

This skill empowers Claude to perform regression analysis and modeling using the regression-analysis-tool plugin. It analyzes datasets, generates appropriate regression models (linear, polynomial, etc.), validates the models, and provides performance metrics. Use this skill when the user explicitly requests regression analysis, prediction based on data, or mentions terms like "linear regression," "polynomial regression," "regression model," or "predictive modeling." This skill is also helpful when the user needs to understand the relationship between variables in a dataset.

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago

creating-data-visualizations

Marketplace

This skill enables Claude to generate data visualizations, plots, charts, and graphs from provided data. It analyzes the data, selects the most appropriate visualization type, and creates a visually appealing and informative graphic. Use this skill when the user requests a visualization, plot, chart, or graph; when data needs to be presented visually; or when exploring data patterns. The skill is triggered by requests for "visualization", "plot", "chart", or "graph".

jeremylongshore/claude-code-plugins-nixtla
2
0
更新於 4d ago