Case 04649
A fast, offline static risk analysis CLI for AI agent skill files. Detects malicious instructions, steganographic payloads, and dangerous capability chains.
npx -y skills add knownasnaffy/prompthound --skill case_04649Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
General-purpose ecommerce inquiry email automation skill. Periodically fetches customer inquiry emails, detects and translates languages, stores email data locally, and generates quotation reply drafts based on configurable pricing rules and product parameters. Use when handling customer inquiries, auto-processing emails, translation, and generating quotation responses.
SKILL.md
2.2 KB, 384 tokens by cl100k_base, as published. Nobody here has run it
Ecommerce Inquiry Email Automation Skill
Overview
This skill automates the processing of customer inquiry emails for ecommerce businesses:
-
Scheduled Email Retrieval
Automatically fetch incoming inquiry emails from mailbox -
Language Detection & Translation
Detect email language and translate into a target language (default: English) -
Local Archiving
Store raw emails, parsed content, and translated versions -
Quotation Generation
Generate structured quotation replies based on pricing rules and product parameters
Core Features
1. Email Retrieval
- Supports IMAP protocol
- SSL/TLS secure connection
- Configurable polling interval (default: every 30 minutes)
- Processes only unread emails and marks them as handled
2. Language Detection & Translation
- Automatically detects email language
- Translates non-target-language content via translation APIs (Google, DeepL, etc.)
- Stores both original and translated versions
3. Local Storage Structure
email_storage/ ├── raw/ # Raw emails (.eml format) ├── text/ # Extracted plain text ├── translated/ # Translated content └── quotes/ # Generated quotation drafts
4. Quotation Engine
- Calculates pricing based on:
- Product type / material
- Size or specifications
- Quantity
- Manufacturing process or customization options
- Applies tiered discount rules
- Generates professional email reply templates
Configuration
Before using, edit scripts/config.py:
- IMAP server (host, port, email, password)
- Translation API (optional)
- Local storage directory
- Pricing data file paths
- Default language settings
Usage
Run single check
python scripts/email_check.py
What ships with it: 13 files
48.4 KB alongside SKILL.md, 7 of them executable
config/
- config.pyruns3.5 KB
data/
- example/pricing_rules_example.md2.4 KB
- README.md2.7 KB
references/
- email_template.html1.3 KB
scripts/
- email_check.pyruns5.3 KB
- email_daemon.pyruns1.2 KB
- email_utils.pyruns6.0 KB
- __init__.pyruns33 B
- quote_calculator.pyruns11.0 KB
- translator.pyruns2.4 KB
- README.md6.4 KB
- README_zh.md6.2 KB
- requirements.txt55 B