تلاش فعال ہے

اسکلز تلاش کریں

اپنے ایجنٹ کے لیے موزوں صلاحیت تلاش کریں۔

نتائج
53,183
اس کوئری سے مماثل اسکلز
صفحہ
80
2660 میں سے
کلیدی لفظ
ai
نام، ٹیگ یا وضاحت سے تلاش کریں
education
18.2K

cargo-fuzz

cargo-fuzz is the primary fuzzing tool for Rust projects built with Cargo. It enables developers to set up fuzz testing, write fuzz harnesses, and run fuzzing campaigns using the libFuzzer backend. Covers installation, harness writing, structure-aware fuzzing with the arbitrary crate, sanitizer integration including AddressSanitizer, coverage analysis, seed corpus management, and troubleshooting common issues. Useful when a developer needs to fuzz Rust code, find memory bugs, test parsers, or improve test coverage in a Cargo-based project.

elizaOS
elizaOS
documentation
open
code-quality
18.2K

spec-to-code-compliance

Verifies code implements exactly what documentation specifies for blockchain audits. Use when comparing code against whitepapers, finding gaps between specs and implementation, or performing compliance checks for protocol implementations.

elizaOS
elizaOS
testing-security
open
code-quality
18.2K

spec-to-code-compliance

Verifies code implements exactly what documentation specifies for blockchain audits. Use when comparing code against whitepapers, finding gaps between specs and implementation, or performing compliance checks for protocol implementations.

elizaOS
elizaOS
testing-security
open
testing
18.2K

testing-handbook-skills

Application security testing toolkit from the Trail of Bits Testing Handbook. Helps the agent set up fuzzing campaigns, write fuzz harnesses, run coverage-guided fuzzers (libFuzzer, AFL++, cargo-fuzz, Atheris, Ruzzy), and triage crashes. Covers memory-safety sanitizers (AddressSanitizer, UBSan, MSan), static analysis with Semgrep and CodeQL, cryptographic validation using Wycheproof test vectors, and constant-time verification. Use when testing C, C++, Rust, Python, or Ruby code for vulnerabilities, improving code coverage, building seed corpora, creating fuzzing dictionaries, overcoming fuzzing obstacles, or integrating security checks into CI/CD with OSS-Fuzz.

elizaOS
elizaOS
testing-security
open
testing
18.2K

wycheproof

Guides agents in using Wycheproof test vectors to validate cryptographic implementations against known attacks, edge cases, and vulnerability patterns. Covers integrating test vectors for AES-GCM, ECDSA, ECDH, EdDSA, RSA, and ChaCha20-Poly1305 into testing workflows. Helps when writing crypto tests, checking for signature malleability, invalid curve attacks, padding oracle issues, DER encoding bugs, or setting up CI for cryptographic libraries. Applies to verifying encryption, decryption, signing, and key exchange correctness using structured JSON test vector suites.

elizaOS
elizaOS
testing-security
open
cli-tools
18.2K

imsg

iMessage/SMS CLI for listing chats, fetching history, watching conversations, and sending messages on macOS via the Messages app. Use when the user wants to send a text message, read iMessages, check recent texts, reply to a conversation, send an SMS, or interact with the Messages app from the terminal. Supports texting contacts by phone number or email, attaching files, and streaming incoming messages in real time.

elizaOS
elizaOS
tools
open
debugging
18.2K

goplaces

Query Google Places API (New) via the goplaces CLI for text search, place details, resolve, and reviews. Use for human-friendly place lookup or JSON output for scripts.

elizaOS
elizaOS
tools
open
debugging
18.2K

semgrep-rule-creator

Create custom Semgrep rules for detecting security vulnerabilities and code patterns. Use when writing new Semgrep YAML rules, defining taint tracking sources/sinks, building pattern-based detections, or creating organization-specific security checks.

elizaOS
elizaOS
tools
open
debugging
18.2K

session-logs

Search and analyze session logs (older/parent conversations) stored as JSONL files using jq and rg. Use when the user asks about prior chats, previous conversations, conversation history, what was said before, session costs, token usage, or tool usage breakdown across past sessions.

elizaOS
elizaOS
tools
open
debugging
18.2K

atheris

Atheris is a coverage-guided Python fuzzing framework built on libFuzzer for finding bugs, crashes, and security vulnerabilities in pure Python code and Python C extensions. It provides AddressSanitizer integration for detecting memory corruption, buffer overflows, and use-after-free errors. Assists with writing fuzz harnesses, configuring sanitizers, managing corpora, running fuzzing campaigns, and setting up Docker-based fuzzing environments. Covers instrumentation of Python imports, parallel fuzzing with workers, corpus minimization, and troubleshooting common issues like LD_PRELOAD configuration and compiler flag setup.

elizaOS
elizaOS
tools
open
debugging
18.2K

coverage-analysis

The agent uses coverage analysis to measure which code paths, branches, and functions are exercised during fuzzing campaigns. It generates LLVM and GCC coverage reports, identifies uncovered code blocks, detects magic value checks that block fuzzer progress, and tracks coverage trends over time. The agent applies this technique when assessing harness effectiveness, diagnosing coverage plateaus, comparing differential coverage between campaigns, or integrating coverage instrumentation into CMake and Rust builds using llvm-cov, gcovr, and cargo-fuzz coverage toolchains.

elizaOS
elizaOS
tools
open
domain-utilities
18.2K

local-places

Searches for local businesses and points of interest via a Google Places API proxy running on localhost. Resolves vague locations, applies filters for type, rating, and price, and returns structured place details. Use when the user asks to find restaurants, nearby places, coffee shops, business search, local recommendations, or anything involving place discovery by location.

elizaOS
elizaOS
tools
open
productivity-tools
18.2K

gog

Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs. Use when the user asks to send an email, check inbox, search Gmail, create or list calendar events, search Google Drive files, look up contacts, read or update spreadsheets, or export Google Docs. Handles OAuth-authenticated access to Google services via the gog command-line tool.

elizaOS
elizaOS
tools
open
productivity-tools
18.2K

nightmarket

Discover and call paid third-party API services through the Nightmarket marketplace. Use this skill whenever the user needs a third-party API, wants to find available API services, or when you encounter a 402 Payment Required response from a nightmarket.ai URL. Also use when the user mentions Nightmarket, browsing APIs for their agent, or paying for API calls with USDC. Even if the user doesn't mention Nightmarket by name, use this skill if they need external data, analytics, automation, or any paid API service their agent could call.

elizaOS
elizaOS
tools
open
productivity-tools
18.2K

obsidian

Work with Obsidian vaults (plain Markdown notes) and automate via obsidian-cli. Use when the user asks about notes, vault management, PKM, knowledge base organization, wikilinks, or personal knowledge management in Obsidian.

elizaOS
elizaOS
tools
open
productivity-tools
18.2K

ossfuzz

The agent uses OSS-Fuzz, Google's free distributed continuous fuzzing platform, to build, run, and manage fuzzing infrastructure for open-source projects. It configures project enrollment files (project.yaml, Dockerfile, build.sh), builds fuzzers locally with helper.py, runs harnesses with AddressSanitizer and other sanitizers, generates coverage reports, and troubleshoots build failures. The agent applies this technique when setting up continuous fuzzing for C/C++, Rust, Python (Atheris), or Go projects, reproducing crashes from OSS-Fuzz bug reports, analyzing Fuzz Introspector coverage data, evaluating criticality scores for project acceptance, or hosting a private OSS-Fuzz instance for closed-source targets that need Docker-based fuzzing infrastructure with libFuzzer or AFL++ engines.

elizaOS
elizaOS
tools
open
system-admin
18.2K

apple-reminders

Manage Apple Reminders via the `remindctl` CLI on macOS (list, add, edit, complete, delete). Supports lists, date filters, and JSON/plain output. Use when the user asks about reminders, todos, tasks, to-do lists, "remind me", scheduling tasks, checking what is due today, completing or deleting reminders, or managing reminder lists on macOS.

elizaOS
elizaOS
tools
open
system-admin
18.2K

himalaya

CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language). Use when the user wants to check email, read mail, send email, compose a message, search inbox, reply to a message, forward mail, manage folders, download attachments, or organize messages from the command line.

elizaOS
elizaOS
tools
open
system-admin
18.2K

mcporter

Use the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation. Use when the user needs to interact with MCP servers, call remote tools, manage server authentication or OAuth flows, inspect available MCP tools and their schemas, generate CLI wrappers or TypeScript types from MCP servers, or manage the mcporter daemon and configuration.

elizaOS
elizaOS
tools
open
system-admin
18.2K

security-insecure-defaults

Identify and fix insecure default configurations in applications, frameworks, and infrastructure. Use when auditing default settings, reviewing configuration files, checking for overly permissive defaults, or hardening deployments against configuration-based attacks.

elizaOS
elizaOS
tools
open
پچھلا
صفحہ 80 / 2660
اگلا