Welcome to the official catalog of Skillware capabilities. New here? Start with the project README.
Browse by category below, or run skillware list after pip install "skillware[cli]" to see locally available skills.
Skills for document processing, email automation, and productivity.
| Skill | ID | Issuer | Description |
|---|---|---|---|
| PDF Form Filler | office/pdf_form_filler |
@rosspeili (@ARPAHLS) | Fills AcroForm-based PDFs by mapping user instructions to detected form fields using LLM-based semantic understanding. |
Tools for financial analysis, blockchain interaction, and regulatory compliance.
| Skill | ID | Issuer | Description |
|---|---|---|---|
| Wallet Screening | finance/wallet_screening |
@rosspeili (@ARPAHLS) | Comprehensive risk assessment for Ethereum wallets. Checks sanctions lists (OFAC, FBI) and identifies interactions with malicious contracts (Mixers, Scams). |
Middleware skills that operate on text or state to increase performance, security, or efficiency.
| Skill | ID | Issuer | Description |
|---|---|---|---|
| Prompt Token Rewriter | optimization/prompt_rewriter |
@rosspeili (@ARPAHLS) | Aggressively compresses massive prompts or context histories while retaining semantic meaning to save tokens. |
Skills tailored for generating, parsing, and orchestrating large datasets for machine learning or analytics workflows.
| Skill | ID | Issuer | Description |
|---|---|---|---|
| Synthetic Data Generator | data_engineering/synthetic_generator |
@rosspeili (@ARPAHLS) | Generates high-entropy structured synthetic data for model fine-tuning to avoid mode collapse. |
Enforces privacy, guardrails, and secure handling of sensitive data before it reaches external endpoints.
| Skill | ID | Issuer | Description |
|---|---|---|---|
| PII Masker | compliance/pii_masker |
@rosspeili (@ARPAHLS) | High-precision, local PII (Personally Identifiable Information) detection and redaction using the micro-f1-mask model. |
| MiCA Module | compliance/mica_module |
@rosspeili (@ARPAHLS) | Self-contained local Policy Enforcement and RAG engine strictly adhering to MiCA crypto-asset regulation. |
| Terms of Service Evaluator | compliance/tos_evaluator |
@rosspeili (@ARPAHLS) | Local-first evaluation of robots.txt and website legal pages to decide whether an intended automated action appears permissible. |
Skills that assist developers in understanding codebases, planning changes, and resolving issues across any repository.
| Skill | ID | Issuer | Description |
|---|---|---|---|
| Issue Resolver | dev_tools/issue_resolver |
@rosspeili (@ARPAHLS) | Analyzes any GitHub issue against its target repository and produces a structured resolution plan with ranked implementation options, affected files, and caveats. |
Registry skills live under skills/<category>/<skill_name>/ in the repository and in the PyPI package. After pip install skillware, load by ID from your project (./skills/...), via SKILLWARE_SKILL_PATH, or from the bundled registry copy under site-packages/skills/. See Usage guides.
from skillware.core.loader import SkillLoader
# Load by registry ID (category/skill_name)
skill = SkillLoader.load_skill("finance/wallet_screening")See Usage guides for provider adapters, Agent loops for the shared execute pattern, and Testing for running skill tests before opening a PR.