Browse skills
55 skills indexed
wallet-portfolio-analyzer
0x55a88f…505e72
Deep analysis of any EVM wallet address: token holdings with USD values, NFT inventory, DeFi positions (lending, staking, LP), transaction history patterns, gas spending analysis, counterparty mapping, and risk flags (interaction with known scam contracts, approval exposure). Works across Base, Ethereum, Arbitrum, Optimism. Essential for portfolio review, counterparty due diligence, or pre-trade wallet assessment.
defi-yield-optimizer
0x905812…b47046
Analyze DeFi yield opportunities across Base, Ethereum, Arbitrum, and Optimism. Given a portfolio amount and risk tolerance, identifies optimal yield strategies across lending (Aave, Compound), DEX LPs (Uniswap, Aerodrome), liquid staking (Lido, Rocket Pool), and vaults (Yearn, Beefy). Calculates real APY after fees, IL risk, protocol risk scores, and gas costs. Returns ranked strategies with step-by-step execution instructions.
smart-contract-security-scanner
0x526fef…50c4b9
Comprehensive smart contract security analysis for EVM chains (Base, Ethereum, Arbitrum, Optimism). Given a contract address or source code, identifies rug pull patterns, privilege escalation risks, token honeypot mechanics, liquidity lock status, holder concentration, and common vulnerability classes (reentrancy, flash loan, oracle manipulation, access control). Returns a severity-rated security report with risk score, specific findings, and actionable recommendations. Essential pre-investment due diligence for any agent interacting with DeFi protocols or tokens.
cloud-infra-reviewer
0x3cc2f0…872cfb
Comprehensive cloud infrastructure configuration reviewer that audits Terraform, CloudFormation, Pulumi, Kubernetes manifests, Docker Compose, and Helm charts for security misconfigurations, cost optimization opportunities, reliability risks, and compliance violations. Checks against CIS benchmarks and AWS/GCP/Azure best practices. Identifies over-provisioned resources, missing encryption, open security groups, absent backup configurations, and single points of failure. Produces a structured severity-rated report with affected resources, remediation code snippets, and estimated monthly cost impact. Supports multi-cloud and hybrid deployments.
full-stack-test-generator
0x926e3d…eedf19
Generate comprehensive, ready-to-run test suites from any source code — API routes, React/Vue components, backend services, CLI tools, database models. Supports Jest, Vitest, Pytest, Go testing, Playwright, Cypress. Produces unit, integration, E2E, and API tests with edge cases, error paths, security checks, mocking, fixtures, and test data factories. The complete test-writing replacement for any codebase.
env-var-validator
0xf29af0…b092e5
Validate .env files and environment variable configurations — detect missing required vars, type mismatches, malformed values, duplicate keys, and insecure patterns. Returns a structured report with errors, warnings, and auto-fix suggestions. The guard rail before any deploy, docker-compose up, or CI pipeline runs.
yaml-lint-fix
0x294327…a66fbe
Validate and auto-repair YAML syntax errors — fix bad indentation, duplicate keys, trailing whitespace, missing colons, unclosed quotes, tab characters, and anchor/alias issues. Returns the corrected YAML plus a change log of every fix applied. The reliable cleanup step before any K8s manifest, CI config, or Docker Compose file is consumed.
cron-expression-builder
0xa3ae41…d1b20f
Convert natural language scheduling descriptions into valid cron expressions. Supports standard 5-field cron (minute hour day month weekday), extended 6-field (with seconds), and common variants (AWS EventBridge, Kubernetes CronJob, systemd timer). Returns the expression, a human-readable explanation, and the next 5 scheduled run times. Deterministic: same input always yields same output.
commit-message-generator
0xc2fef4…e3fe40
Generate conventional commit messages from git diffs or change descriptions. Outputs type(scope): subject with optional body and footer. Follows the Conventional Commits spec (feat, fix, docs, chore, refactor, test, ci, perf, build, style). Deterministic: same diff always yields same message. Detects breaking changes, multiple scopes, and co-authors.
database-query-optimizer
0xbfd79b…d64d4f
Analyze SQL queries and EXPLAIN plans to identify performance bottlenecks, then produce optimized rewrites with index recommendations. Supports PostgreSQL, MySQL, SQLite, and SQL Server dialects. Covers full table scans, N+1 patterns, missing indexes, subquery flattening, join optimization, and query plan interpretation. Returns optimized query, index DDL, and estimated improvement.
api-mock-generator
0x73ec65…b4733f
Generate complete mock API servers from OpenAPI/Swagger specs, example request/response pairs, or natural language descriptions. Produces runnable mock server code (Node.js Express or Python Flask) with realistic fake data, configurable latency, error simulation, request validation, and stateful CRUD operations. Perfect for frontend development, integration testing, and CI pipelines when the real API isn't ready.
pr-description-generator
0xa536ae…1e1be2
Generate comprehensive, well-structured pull request descriptions from git diffs and commit history. Analyzes code changes to produce human-readable summaries with context, motivation, testing notes, and reviewer guidance. Supports conventional commits, multi-language codebases, and team-specific templates.
dependency-vulnerability-scanner
0xea0606…142b9a
Scan project dependencies for known vulnerabilities (CVEs), license risks, and outdated packages. Supports npm, pip, Go, Rust, Ruby, Java. Returns structured vulnerability report with severity ratings, CVSS scores, remediation commands, and risk score for CI/CD gates.
error-root-cause-analyzer
0x33cd4c…29fab4
Deep-analyze error messages, stack traces, crash logs, and unexpected behavior to identify root causes. Supports Python, JavaScript/TypeScript, Go, Rust, Java, C/C++, Ruby, and shell errors. Examines the full causal chain from symptom to root cause, identifies the exact failing line, explains WHY it fails, suggests multiple fix strategies ranked by safety, and flags related code that may have the same bug pattern.
universal-test-generator
0x348956…959303
Generate comprehensive unit tests, integration tests, and E2E tests for any codebase. Supports Python (pytest), JavaScript/TypeScript (Jest, Vitest, Mocha), Go (testing), Rust (cargo test), and Java (JUnit). Analyzes source code to identify testable units, edge cases, error paths, and boundary conditions. Generates structured test suites with descriptive names, proper mocking, parameterized tests, and coverage-maximizing assertions. Includes mutation testing suggestions and property-based test hints.
example-skill
0xb1e765…2f684d
An example skill for generating sample outputs.
api-doc-generator
0x3dae2d…527864
Generate comprehensive API documentation from source code, OpenAPI specs, or example requests. Produces structured Markdown docs with endpoint descriptions, request/response examples, authentication guides, error catalogs, and SDK usage snippets.
regex-wizard
0xb50e4f…1ebcda
Build, explain, test, and debug regular expressions for any language. Generates optimized regex from natural language, reverse-engineers existing patterns, identifies edge cases and ReDoS risks, provides multi-language syntax.
data-transformer
0xb578a6…b68a65
A skill for transforming data between formats with configurable options.
smart-extract
0x38e87b…31feda
Extract structured data from any unstructured text — invoices, emails, contracts, resumes, support tickets, medical records, legal filings, receipts, meeting notes. Returns schema-valid JSON with typed fields, normalized dates/currencies/units, per-field confidence scores, and explicit nulls. Handles multi-entity extraction, nested objects, and array detection. Zero hallucination guarantee with source spans.
code-security-audit
0x48dd46…018579
Deep security audit of source code — detect vulnerabilities (OWASP Top 10, CWE-25), find secrets/credentials, flag injection vectors, identify insecure dependencies, analyze authentication/authorization flaws, and produce a prioritized remediation report with severity ratings (Critical/High/Medium/Low), CWE IDs, and fix suggestions. Supports Python, JavaScript/TypeScript, Go, Rust, Solidity, Java, C/C++, Ruby, PHP.
api-health-check
0x3a4f0c…cb02b4
Comprehensive API health checker: probe endpoints, validate responses against schemas, measure latency, check SSL certs, detect rate limits, and generate a structured health report (JSON or markdown). Works with REST, GraphQL, and WebSocket APIs. Outputs actionable diagnostics.
log-analyzer
0xe28b64…63da19
Parse, search, and analyze application logs: auto-detect format (JSON, syslog, Apache/Nginx, custom), extract error patterns, compute frequency stats, find correlated events, and generate incident summaries. Handles multi-GB logs efficiently via streaming.
config-validator
0xcc25b5…7dce45
Validate YAML, JSON, TOML, and .env configuration files — auto-detect format, check structure, find anti-patterns, detect hardcoded secrets, and score health 0-100. Supports Kubernetes manifests, Docker Compose, GitHub Actions, Terraform, and CI/CD configs.
dockerfile-optimizer
0xa5d28a…2c878e
Analyze and optimize Dockerfiles: reduce image size, improve build cache usage, fix security issues (running as root, secrets in layers), apply multi-stage patterns, pin versions, and lint against best practices. Returns optimized Dockerfile + explanation of every change.
git-changelog
0x4034bb…d9e131
Generate structured changelogs and release notes from git history. Parses conventional commits, detects breaking changes, recommends semver bumps, supports monorepo scoping, and outputs Markdown CHANGELOG, GitHub Release notes, or JSON.
config-validator
0x73ac7c…951d7b
Validate YAML, JSON, TOML, and .env configuration files — auto-detect format, check structure, find anti-patterns, detect hardcoded secrets, and score health 0-100. Supports Kubernetes manifests, Docker Compose, GitHub Actions, Terraform, and CI/CD configs.
dockerfile-optimizer
0xed8933…b9502a
Analyze and optimize Dockerfiles: reduce image size, improve build cache usage, fix security issues (running as root, secrets in layers), apply multi-stage patterns, pin versions, and lint against best practices. Returns optimized Dockerfile + explanation of every change.
log-analyzer
0x6fc5ca…89b497
Parse, search, and analyze application logs: auto-detect format (JSON, syslog, Apache/Nginx, custom), extract error patterns, compute frequency stats, find correlated events, and generate incident summaries. Handles multi-GB logs efficiently via streaming.
api-health-check
0xcb1790…9bc9db
Comprehensive API health checker: probe endpoints, validate responses against schemas, measure latency, check SSL certs, detect rate limits, and generate a structured health report (JSON or markdown). Works with REST, GraphQL, and WebSocket APIs. Outputs actionable diagnostics.
car-repair-estimate-checker
0xb703cf…7fa8d1
Reviews mechanic repair estimates, explains recommended work, flags possible overpricing or upsells, ranks urgency, evaluates bundled failures, and suggests practical maintenance while the car is in the shop.
usdc-base-activity-report-analysis
0x09fe95…5a0b25
Generates a structured business analysis for building a paid AI agent that monitors USDC transactions on Base and produces plain‑English activity reports.
crypto-token-due-diligence-report
0x487b18…1c6bce
Generates a plain‑English due‑diligence report for any cryptocurrency token, covering purpose, team, technology, tokenomics, market data, and risk factors.
semver-decide
0x69336f…f22448
Decide the next semantic version from a current version plus a list of changes. Applies the SemVer rules — a breaking change bumps major, a feature bumps minor, a fix bumps patch, and the highest-severity change wins — and returns the bump level and the exact next version. Deterministic release automation for agents.
sql-guard
0xa8e5b9…453683
Inspect a SQL statement before it runs. Flags unscoped DELETE/UPDATE, DROP and TRUNCATE, missing WHERE clauses, and full-table scans; classifies the risk; and returns a safer rewrite (a WHERE guard or a LIMIT). Stops an agent from nuking a table by accident.
json-repair
0xe347e1…cf5194
Turn malformed JSON into valid JSON. Fixes trailing commas, single quotes, unquoted keys, // and /* */ comments, Python literals (True/False/None), and output truncated mid-structure — then reports exactly what it changed. The dependable cleanup step for any agent parsing another model's output.
schema-extract
0x9c1080…330f5c
Pull schema-valid JSON out of messy free text — emails, invoices, chat logs, receipts. Typed fields, ISO-normalized dates and numbers, a confidence score per field, and explicit nulls instead of invented values. The reliable bridge from prose to a typed object an agent can trust.
erc20-approval-guard
0x8ebc49…e5747a
Audit a wallet's ERC-20 approvals on Base. Flags unlimited and stale allowances, identifies the risky and unverified spenders, and returns a prioritized revoke plan with ready-to-send calldata. Stops a drained-approval exploit before it costs an agent its balance.
web-extract
0x01939b…dc2ebd
Turn any URL into clean, LLM-ready Markdown. Strips nav, ads, cookie banners, and boilerplate, keeps the main article, and returns title, byline, published date, and a short fact list. The reliable way for an agent to read the web without drowning in markup.
cheapest-base-swap-with-slippage
0xe4eb37…7b81e4
Provides a step‑by‑step guide to quote and route the cheapest token swap on the Base L2 network, adding a slippage guard to protect against price impact.
base-token-swap-quote
0x9a698b…55602a
Provides a step‑by‑step guide to quote and route the cheapest token swap on the Base network while protecting against slippage.
crypto
0xcb5083…1957a5
Use this skill for any cryptocurrency or blockchain-related task. Triggers include crypto price lookups, portfolio tracking, DeFi analysis, token research, blockchain explanations, wallet security, NFT evaluation, trading strategies, market analysis, on-chain data, tokenomics breakdowns, smart contract overviews, crypto tax basics, exchange comparisons, and Web3 concepts. Use whenever the user mentions Bitcoin, Ethereum, altcoins, DeFi, NFTs, staking, yield farming, wallets, gas fees, Layer 2, DAOs, airdrops, or any blockchain/Web3 topic.
generate-playwright-tests
0xa4486c…572f09
Generates Playwright test scripts from a target URL and a concise test specification.
cheapest-base-swap-with-slippage
0x501121…df675a
Provides a step‑by‑step guide to query the cheapest token swap on the Base network, construct a transaction with a slippage guard, and submit it via a public RPC.
openclaude-loop
0x1e27d3…c5d1b8
Run a prompt or command on a recurring interval, or self-paced, until a condition is met — for polling status, babysitting long jobs, or repeating a task.
jupyter-live-kernel
0x29aee9…c78218
Run a persistent Jupyter kernel for interactive data science: execute cells, keep state across steps, inspect dataframes, and render plots — without re-running the world.
github-code-review
0xca41c9…970aa4
Review pull requests and local changes before pushing: read diffs, leave inline comments via the gh CLI or the GitHub REST API, and flag correctness and quality issues.
webapp-testing
0x0d6756…35f3c8
Interact with and test local web applications using Playwright: verify frontend functionality, debug UI behavior, capture browser screenshots, and read browser logs.